powershell创建并加载配置文件
$pshome :powershell的主目录
$profile :显示 Windows PowerShell 配置文件的路径
test-path $profile :确定是否已经在系统上创建了 Windows PowerShell 配置文件
powershell.exe 主机配置文件(在 Windows Vista 中)的位置如下所示:
%windir%\system32\WindowsPowerShell\v1.0\profile.ps1 用于计算机的所有用户和所有外壳。
%windir%\system32\WindowsPowerShell\v1.0\Microsoft.PowerShell_profile.ps1 用于计算机的所有用户,但仅用于 Microsoft.PowerShell 外壳。
%UserProfile%\Documents\WindowsPowerShell\profile.ps1 仅用于当前用户和所有外壳。
%UserProfile%\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1 仅用于当前用户和 Microsoft.PowerShell 外壳。
启动时按顺序加载,最后一个优先级最高,会覆盖之前的配置文件
这些配置文件并不是在默认情况下创建的。必须在您手动创建后,它们才会出现。
例,创建适用于所有用户和所有 shell 的配置文件,键入:
new-item -path $env:windir\System32\WindowsPowerShell\v1.0\profile.ps1 -itemtype file -force
notepad $env:windir\System32\WindowsPowerShell\v1.0\profile.ps1
如输入:
c:
cd c:\
function pp
{
write-host "ppc"
}
编辑后保存,然后再重新运行powershell.exe,会加载profile.ps1中的内容,在启动后会自动跳转到C:路径下,还会自动加载函数 pp
==============================================