我之前在 Windows 10 上卸载了 Internet Explorer。当我尝试使用以下 PowerShell 命令重新安装时
Get-WindowsOptionalFeature -Online | Select FeatureName | Select-String Internet*
Enable-WindowsOptionalFeature -FeatureName Internet-Explorer-Optional-amd64 –Online
我收到以下错误
Enable-WindowsOptionalFeature : Feature name Internet-Explorer-Optional-amd64 is unknown.
At line:1 char:1
+ Enable-WindowsOptionalFeature -FeatureName Internet-Explorer-Optional ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Enable-WindowsOptionalFeature], COMException
+ FullyQualifiedErrorId : Microsoft.Dism.Commands.EnableWindowsOptionalFeatureCommand
在“打开或关闭 Windows 功能”中也没有重新启用它的选项。
我该如何解决此错误以便 Windows 10 可以重新安装 Internet Explorer?