PowerShell 自动载人函数

法一:新建 %userprofile%\Documents\WindowsPowerShell\profile.ps1 就能让PowerShell 自动载人其中定义的内容。

法二:将.ps1文件改成.psm1文件,将其放在%userprofile%\Documents\WindowsPowerShell\Modules下,注意要为每个psm1文件件建一个同名的文件夹,然后将psm1文件放在这个文件夹中

Get-Module –listavailable        测试看能不能检测到新建的模块
Get-Command -module MyFunctions        获取对应的模块中的函数,很有用

来源:http://stackoverflow.com/questions/6016436/in-powershell-how-do-i-define-a-function-in-a-file-and-call-it-from-the-powersh

           http://msdn.microsoft.com/en-us/library/bb613488%28VS.85,loband%29.aspx

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。