Erro do Windows: “'Enable-WindowsOptionalFeature' não é reconhecido”

1

Estou tentando instalar o Windows Subsystem para Linux em minha máquina com Windows 7, seguindo as instruções mostradas em esta documentação .

O primeiro passo diz para executar o comando

> Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux

No entanto, minha máquina não reconhece o comando Enable-WindowsOptionalFeature .

PS C:\> Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
Enable-WindowsOptionalFeature : The term 'Enable-WindowsOptionalFeature' 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:1
+ Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows- ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (Enable-WindowsOptionalFeature:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
  • Por que minha máquina não reconhece o Enable-WindowsOptionalFeature
  • Como posso proceder para instalar o Windows Subsystem for Linux?
por mherzl 05.03.2018 / 22:41

1 resposta

4

How can I proceed to install the Windows Subsystem for Linux?

O recurso opcional do Windows, Windows Subsystem for Linux , não pode ser ativado no Windows 7. O que você quer não é possível.

Why does my machine not recognize the Enable-WindowsOptionalFeature

Enable-WindowsOptionalFeature é um comando somente do Windows 8+. O cmdlet PowerShell usa apenas o módulo DISM para adicionar / remover recursos do Windows; para isso, é necessária a versão do DISM que vem com o Windows 8+, o cmdlet Enable-WindowsOptionalFeature não pode ser usado em uma máquina com Windows 7.

This topic lists the Windows PowerShell modules included with Windows Server 2016 and Windows 10. The Windows PowerShell modules in the list support automating the features of those versions of the Windows operating system and provide links to the cmdlet references for each module. These modules enable you to use Windows PowerShell to administer, maintain, configure, and develop new features for Windows Server 2016 and Windows 10.

por 05.03.2018 / 22:57