I'm new to PowerShell and I know on PowerShell on windows you need to run as administrator to update the help files, but how do you update help files on PowerShell on Mac?
- su powershell update-help but it seems to fail for now= at least on "Ubuntu on windows"Jaqueline Vanek– Jaqueline Vanek2016-09-10 15:51:55 +00:00Commented Sep 10, 2016 at 15:51
- github.com/PowerShell/PowerShell/issues/1889 github.com/PowerShell/PowerShell/issues/1703Jaqueline Vanek– Jaqueline Vanek2016-09-10 16:02:36 +00:00Commented Sep 10, 2016 at 16:02
- also github.com/PowerShell/PowerShell/issues/8907Peter Vandivier– Peter Vandivier2019-10-30 11:44:26 +00:00Commented Oct 30, 2019 at 11:44
Add a comment |
1 Answer
At this time, it does not look like the Update-Help Cmdlet is supported for Mac or Linux. For the time being I would suggest going to the technet website for each help file.
You can get there from the Command Line with the -Online parameter:
Get-Help Write-Output -Online or
Get-Help about_Functions -Online These commands will take you directly to technet page you need. These pages will always be up to date.