Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 PowerShell 新手,我知道在 Windows 上的 PowerShell 上,您需要以管理员身份运行才能更新帮助文件,但是如何在 Mac 上更新 PowerShell 上的帮助文件?
目前,Mac 或 Linux 似乎不支持 Update-Help Cmdlet。目前,我建议您访问每个帮助文件的 technet 网站。
您可以使用 -Online 参数从命令行到达那里:
Get-Help Write-Output -Online
或者
Get-Help about_Functions -Online
这些命令会将您直接带到您需要的 technet 页面。这些页面将始终是最新的。