Я мог бы использовать хорошее объяснение синтаксиса документации PowerShell:
> man Update-Help
SYNTAX
Update-Help [[-Module] <string[]>] [[-SourcePath] <string[]>] [[-UICulture] <cultureinfo[]>] [-Recurse] [-Credential <pscredential>] [-UseDefaultCredentials]
[-Force] [<CommonParameters>]
Update-Help [[-Module] <string[]>] [[-UICulture] <cultureinfo[]>] [-LiteralPath <string[]>] [-Recurse] [-Credential <pscredential>] [-UseDefaultCredentials]
[-Force] [<CommonParameters>]
Поэтому я попытался обновить человека:
> Update-Help Get-ChildItem
Ошибка:
Update-Help : No Windows PowerShell modules were found that match the following pattern: Get-ChildItem. Verify the pattern and then try the command again.At line:1
char:1
+ Update-Help Get-ChildItem
+ ~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (Get-ChildItem:String) [Update-Help], Exception
+ FullyQualifiedErrorId : ModuleNotFound,Microsoft.PowerShell.Commands.UpdateHelpCommand
В частности, я хочу знать, какие параметры являются обязательными, каков тип этих параметров и должны ли они прийти в определенном порядке?