Posso desligar o powershell 2.0?

0

Posso desativar o PowerShell 2.0? Últimas ACU up-to-date. O mais recente PowerShell embutido e estável culmina, substitui o 2.0, outro antigo em sua inteireza. Não é 2.0 vulnerável? Em caso afirmativo, existe alguma razão pela qual a MS ainda a incluiu, ativada por padrão em todas as versões mais recentes, atualizações, que incluem a atualização de abril, assim como possivelmente todas as versões do Insider, etc?

    
por Aoi. T_015 28.05.2018 / 08:49

1 resposta

1

Sim, você certamente pode desativar o PowerShell 2.0 e você deve.

Instruções de: link

Fix Text (F-76869r1_fix)

Disable "Windows PowerShell 2.0" on the system.

Run "Windows PowerShell" with elevated privileges (run as administrator).

Enter the following: Disable-WindowsOptionalFeature -Online -FeatureName MicrosoftWindowsPowerShellV2Root

This command should disable both "MicrosoftWindowsPowerShellV2Root" and "MicrosoftWindowsPowerShellV2" which correspond to "Windows PowerShell 2.0" and "Windows PowerShell 2.0 Engine" respectively in "Turn Windows features on or off".

Alternately:

Search for "Features".

Select "Turn Windows features on or off".

De-select "Windows PowerShell 2.0".

Blog de desaprovação do PowerShell 2.0 da Microsoft: link

We do not currently have a timeline to remove Windows PowerShell 2.0, but as we continue to evaluate its usage in the PowerShell ecosystem, we will be working to remove it in a future release.

O PowerShell 2.0 será completamente removido no futuro, mas ainda não há cronograma para isso.

    
por 28.05.2018 / 08:53