码迷,mamicode.com
首页 > Windows程序 > 详细

Powershell 开机自动加载Snapin 和module

时间:2016-02-15 16:44:34      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:profile script; powershell

以前只知道在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

标签:profile script; powershell

原文地址:http://beanxyz.blog.51cto.com/5570417/1742094

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!