Я использую базовый образ Docker и WindowsServerCore для обслуживания различных модулей PowerShell для некоторых операций.Если я запускаю контейнер и пытаюсь использовать командлет Get-Help
, я получаю следующую ошибку:
PS C:\Users\ContainerAdministrator> help *service*
more.com : The term 'more.com' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:9 char:19
+ } else { $input | more.com }
+ ~~~~~~~~
+ CategoryInfo : ObjectNotFound: (more.com:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Любые подсказки?
Thx