Tôi đang cố gắng giảm kích thước của winSxS bằng cách xóa một số tính năng thông qua Windows PowerShell. Tôi đã sử dụng lệnh sau nhưng nó đang trả về một thông báo lỗi:
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
Tôi đã cố gắng giải quyết nó bằng cách nhập mô-đun bằng lệnh này nhưng nó không hoạt động:
Import-Module ServerManager
Sau đó tôi đã cố gắng chạy lệnh đầu tiên ở trên một lần nữa nhưng nó đã thất bại với cùng một lỗi.
Có ý kiến gì không?