![如果“功能名称未知”,如何在 Windows 10 上重新安装 Internet Explorer](https://linux22.com/image/1556475/%E5%A6%82%E6%9E%9C%E2%80%9C%E5%8A%9F%E8%83%BD%E5%90%8D%E7%A7%B0%E6%9C%AA%E7%9F%A5%E2%80%9D%EF%BC%8C%E5%A6%82%E4%BD%95%E5%9C%A8%20Windows%2010%20%E4%B8%8A%E9%87%8D%E6%96%B0%E5%AE%89%E8%A3%85%20Internet%20Explorer.png)
我之前在 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?