How do I add a PowerShell cmdlet or function to my machine so that it is always available?

杀马特。学长 韩版系。学妹 提交于 2021-02-07 04:58:12

问题


If I find (or create) a new PowerShell cmdlet (or function), how do I add it to my machine?

  • Do I copy it to a particular folder?
  • Do I put its content in a particular file?
  • Do I need to authorize it, or sign it, or give it permission in some way?

I don't want to use it in just one session; I want it to be available whenever I use PowerShell on this machine.


回答1:


As Alex mentions, any function defined in your profile or in a script that gets "dotted" into your profile will always be available. The same goes if you use Add-PSSnapin in your profile to add a snapin. The cmdlets in the snapin will always be available. For more information about profiles check out the help topic:

man about_profiles

However if you have a significant number of functions you may not want to load them until they are needed. In this case, you can organize functionality into scripts and then put those scripts into one or more directories that are in your path. You can then reference the script by name without specifying the full path or even the .PS1 extension. For more information about using scripts check out the help topic:

man about_scripts

PowerShell V2 introduces an even better approach to organizing functions and loading them on demand. The feature is called Modules and allows you to Import-Module by a simple name (rather than path) and to choose which functions and variable are made public versus which ones remain private. If you have V2, check out modules:

man about_modules



回答2:


You should access the cmdlets through your profile script. That way, every time you access PowerShell, it gets loaded. See The Power of Profiles.



来源:https://stackoverflow.com/questions/1344519/how-do-i-add-a-powershell-cmdlet-or-function-to-my-machine-so-that-it-is-always

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!