Я пытаюсь уменьшить размер winSxS, удалив некоторые функции через Windows PowerShell. Я использовал следующую команду, но она возвращает сообщение об ошибке:
PS C:\Windows\system32> Get-WindowsFeature | Where-Object -FilterScript {$_.Installed -Eq $FALSE} | Uninstall-WindowsFea
ture -Remove
The term 'Uninstall-WindowsFeature' 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:1 char:101
+ Get-WindowsFeature | Where-Object -FilterScript {$_.Installed -Eq $FALSE} | Uninstall-WindowsFeature <<<< -Remove
+ CategoryInfo : ObjectNotFound: (Uninstall-WindowsFeature:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Я попытался решить эту проблему, импортировав модуль с помощью этой команды, но это не сработало:
Import-Module ServerManager
Затем я снова попытался выполнить первую команду, но она не удалась с той же ошибкой.
Есть идеи?