以前只知道在Powershell的默认路径下面添加第三方的module就可以开机自动加载了
PS C:\WINDOWS\system32> $env:PSModulePath -split ";" C:\Users\yli\Documents\WindowsPowerShell\Modules C:\Program Files\WindowsPowerShell\Modules C:\WINDOWS\system32\WindowsPowerShell\v1.0\ModulesC:\Program Files (x86)\NetApp\NetApp PowerShell Toolkit\Modules\.
但是其他路径的Module怎么处理?Snapin怎么处理,今天终于知道可以配置profile script来配置了。
方法很简单。
PowerShell的用户档案的WindowsPowerShell文件夹里面添加一个新的 profile.ps1 文件,然后在这个文件里面执行import-module和add-pssnapin等命令就可以了。开机的时候会自动执行该文件。
例如 开机自动加载对应的一些模块和插件等等
import-module dataontap Add-PSSnapin VMware.VimAutomation.Core $cred = Get-Credential Import-Module MSOnline Set-ExecutionPolicy remotesigned Connect-MsolService -Credential $cred #连接到Office365 $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell/ -Credential $Cred -Authentication Basic -AllowRedirection Import-PSSession $session
本文出自 “麻婆豆腐” 博客,请务必保留此出处http://beanxyz.blog.51cto.com/5570417/1742094
Powershell 开机自动加载Snapin 和module
原文地址:http://beanxyz.blog.51cto.com/5570417/1742094