创建基本配置文件
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