当前位置:首页 > 知道中心 > Windows > 文章

powershell自动导入模块加载配置文件

发表于:2013-09-08| 次阅读| 作者:藕码网
TAG: Windows
摘要:powershell自动导入模块加载配置文件
get-module -listAvailable | import-module-----导入所有系统模块
在 Windows PowerShell 中可以有四个不同的配置文件。配置文件按加载顺序列出。较特定的配置文件优先于较不特定的配置文件(如果它们适用)。
    * %windir%\system32\WindowsPowerShell\v1.0\profile.ps1
      此配置文件适用于所有用户和所有 shell。
    * %windir%\system32\WindowsPowerShell\v1.0\ Microsoft.PowerShell_profile.ps1
      此配置文件适用于所有用户,但仅适用于 Microsoft.PowerShell shell。
    * %UserProfile%\My Documents\WindowsPowerShell\profile.ps1
      此配置文件仅适用于当前用户,但会影响所有 shell。
    * %UserProfile%\My Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1
      此配置文件仅适用于当前用户和 Microsoft.PowerShell shell。
$profile---------显示 Windows PowerShell 配置文件的路径
$profile | get-member -type noteproperty--------查看 $Profile 变量的当前值
notepad $profile-------在记事本中打开“当前用户,当前主机”配置文件
test-path $profile.AllUsersAllHosts--------确定本地计算机上是否创建了“所有用户,所有主机”配置文件

new-item -path $env:windir\System32\WindowsPowerShell\v1.0\profile.ps1 -itemtype file -force---创建如适用于所有用户和所有 shell 的配置文件
       说明            路径
        -----------             ----
        当前用户,当前主机    $Home\[My ]Documents\WindowsPowerShell\Profile.ps1
        当前用户,所有主机    $Home\[My ]Documents\Profile.ps1
        所有用户,当前主机    $PsHome\Microsoft.PowerShell_profile.ps1
        所有用户,所有主机    $PsHome\Profile.ps1
详细配置请参考http://technet.microsoft.com/zh-cn/library/bb978525.aspx或者查看C:\windows\system32\windowspowershell\v1.0\zh-CN下的帮助文件


注:本站部分信息可能源于互联网分享,如有侵权,请告知,我们将及时删除!

  • 用户评论
  • 相关文章