建立基本配置檔案

PowerShell 配置檔案用於自動載入使用者定義的變數和函式。

不會自動為使用者建立 PowerShell 配置檔案。

建立 PowerShell 配置檔案 C:>New-Item -ItemType File $profile

如果你在 ISE,你可以使用內建編輯器 C:>psEdit $profile

開始使用當前主機的個人配置檔案的簡單方法是將一些文字儲存到儲存在 $profile 變數中的路徑

"#Current host, current user" > $profile

可以使用 PowerShell ISE,記事本,Visual Studio 程式碼或任何其他編輯器對配置檔案進行進一步修改。

$profile 變數預設返回當前主機的當前使用者配置檔案,但你可以使用它來訪問機器策略(所有使用者)和/或所有主機(控制檯,ISE,第三方)的配置檔案的路徑。屬性。

PS> $PROFILE | Format-List -Force

AllUsersAllHosts       : C:\Windows\System32\WindowsPowerShell\v1.0\profile.ps1
AllUsersCurrentHost    : C:\Windows\System32\WindowsPowerShell\v1.0\Microsoft.PowerShell_profile.ps1
CurrentUserAllHosts    : C:\Users\user\Documents\WindowsPowerShell\profile.ps1
CurrentUserCurrentHost : C:\Users\user\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1
Length                 : 75

PS> $PROFILE.AllUsersAllHosts
C:\Windows\System32\WindowsPowerShell\v1.0\profile.ps1