Ciao, professionista della tecnologia! Se sei un amministratore IT o lavori nell’ambito dei servizi gestiti (MSP), sai già che mantenere l’ambiente sicuro è una priorità assoluta. Un’area che spesso deve essere esaminata è la configurazione di PowerShell sui sistemi Windows. Quindi, iniziamo a parlare di PowerShell 2.0 e del motivo per cui è consigliabile disabilitarlo. O, ancora meglio, iniziamo a parlare di uno script che lavora al posto tuo per farlo.
Perché disabilitare PowerShell 2.0?
In primo luogo, cerchiamo di capire perché dovresti voler disabilitare PowerShell 2.0. Questa versione legacy di PowerShell non dispone di molte delle funzioni di sicurezza e dei miglioramenti disponibili nelle versioni più recenti. È praticamente un invito aperto ai malintenzionati a sfruttare i tuoi sistemi.
Lo script per disabilitare PowerShell 2.0
Ora che abbiamo stabilito il “perché”, parliamo del “come”. Lo script per disabilitare PowerShell 2.0 è una soluzione completa. Scritto in PowerShell 5.1, lo script è progettato per funzionare su Windows 10, Windows Server 2016 e versioni successive.
Ecco cosa offre questo script:
Controllo dei privilegi elevati
Lo script esegue un controllo iniziale per verificare se sia stato eseguito con privilegi amministrativi e, in caso contrario, ti notifica la necessità di essere lanciato da un amministratore.
Controllo del sistema operativo e della versione
Prima di tentare di disabilitare PowerShell 2.0, lo script controlla la versione di PowerShell in uso. È necessario eseguire PowerShell 5.1 o successivo. È una funzionalità utile, che consente di non creare problemi alla configurazione esistente.
La rimozione
Lo script utilizza diversi comandi (Disable-WindowsOptionalFeature e Uninstall-WindowsFeature) in base al sistema operativo in uso per disabilitare PowerShell 2.0. Se PowerShell 2.0 è già disabilitato, lo script te lo farà sapere.
Lo script
#Requires -Version 5.1 <# .SYNOPSIS Disables PowerShell 2.0. .DESCRIPTION Disables PowerShell 2.0 by removing the feature. This script does require that PowerShell 5.1 be installed before hand. See: https://docs.microsoft.com/en-us/powershell/scripting/windows-powershell/wmf/setup/install-configure .EXAMPLE No parameters needed. .OUTPUTS String[] .NOTES Minimum OS Architecture Supported: Windows 10, Windows Server 2016 Release Notes: Initial Release (c) 2023 NinjaOne By using this script, you indicate your acceptance of the following legal terms as well as our Terms of Use at https://www.ninjaone.com/terms-of-use. Ownership Rights: NinjaOne owns and will continue to own all right, title, and interest in and to the script (including the copyright). NinjaOne is giving you a limited license to use the script in accordance with these legal terms. Use Limitation: You may only use the script for your legitimate personal or internal business purposes, and you may not share the script with another party. Republication Prohibition: Under no circumstances are you permitted to re-publish the script in any script library or website belonging to or under the control of any other software provider. Warranty Disclaimer: The script is provided “as is” and “as available”, without warranty of any kind. NinjaOne makes no promise or guarantee that the script will be free from defects or that it will meet your specific needs or expectations. Assumption of Risk: Your use of the script is at your own risk. You acknowledge that there are certain inherent risks in using the script, and you understand and assume each of those risks. Waiver and Release: You will not hold NinjaOne responsible for any adverse or unintended consequences resulting from your use of the script, and you waive any legal or equitable rights or remedies you may have against NinjaOne relating to your use of the script. EULA: If you are a NinjaOne customer, your use of the script is subject to the End User License Agreement applicable to you (EULA). #> [CmdletBinding()] param () begin { function Test-IsElevated { $id = [System.Security.Principal.WindowsIdentity]::GetCurrent() $p = New-Object System.Security.Principal.WindowsPrincipal($id) $p.IsInRole([System.Security.Principal.WindowsBuiltInRole]::Administrator) } } process { if (-not (Test-IsElevated)) { Write-Error -Message "Access Denied. Please run with Administrator privileges." exit 1 } if ($PSVersionTable.PSVersion -ge [Version]::new(5, 1)) { if ($(Get-Command "Disable-WindowsOptionalFeature" -ErrorAction SilentlyContinue).Name -like "Disable-WindowsOptionalFeature") { if ($(Get-WindowsOptionalFeature -Online -FeatureName MicrosoftWindowsPowerShellV2 -ErrorAction SilentlyContinue).State -like "Enabled") { # Remove PowerShell 2.0 on Windows 10,11 try { Disable-WindowsOptionalFeature -Online -FeatureName MicrosoftWindowsPowerShellV2 -ErrorAction Stop Write-Host "Disabled PowerShell 2.0" } catch { Write-Error $_ Write-Host "Unable to disable PowerShell 2.0" exit 1 } } if ($(Get-WindowsOptionalFeature -Online -FeatureName MicrosoftWindowsPowerShellV2Root -ErrorAction SilentlyContinue).State -like "Enabled") { # Remove PowerShell 2.0 on Windows 10, 11, Server 2016 try { Disable-WindowsOptionalFeature -Online -FeatureName MicrosoftWindowsPowerShellV2Root -ErrorAction Stop Write-Host "Disabled PowerShell 2.0" } catch { Write-Error $_ Write-Host "Unable to disable PowerShell 2.0" exit 1 } } else { Write-Host "PowerShell is already disabled." } } if ($(Get-Command "Uninstall-WindowsFeature" -ErrorAction SilentlyContinue).Name -like "Uninstall-WindowsFeature") { if ($(Get-WindowsFeature -Name PowerShell-V2) -and $(Get-WindowsFeature -Name PowerShell-V2).InstallState -like "Installed") { # Remove PowerShell 2.0 on Windows Server try { Uninstall-WindowsFeature -Name PowerShell-V2 -ErrorAction Stop Write-Host "Disabled PowerShell 2.0" } catch { Write-Error $_ Write-Host "Unable to disable PowerShell 2.0" exit 1 } } else { Write-Host "PowerShell is already disabled." } } if ( $(Get-Command "Disable-WindowsOptionalFeature" -ErrorAction SilentlyContinue).Name -notlike "Disable-WindowsOptionalFeature" -and $(Get-Command "Uninstall-WindowsFeature" -ErrorAction SilentlyContinue).Name -notlike "Uninstall-WindowsFeature" ) { Write-Host "Running on an unsupported version of Windows." exit 1 } } else { Write-Host "Please upgrade to 5.1 before disabling PowerShell 2.0." exit 1 } } end {}
Come utilizzare lo script
Non dovrai fornire alcun parametro. Semplicemente, esegui lo script con privilegi amministrativi. Lo script per disabilitare PowerShell 2.0 ti guiderà attraverso il processo e registrerà anche gli errori per avvisarti se qualcosa va storto.
Vantaggi per i professionisti IT e gli MSP
Per i professionisti IT e gli MSP, i vantaggi sono duplici:
- Sicurezza migliorata: Disabilitare PowerShell 2.0 significa chiudere un punto di vulnerabilità e rendere così la rete più sicura.
- Efficienza: Invece di navigare manualmente in ogni server e sistema per disabilitare PowerShell 2.0, puoi automatizzare questa attività con questo script.
Considerazioni finali
Disabilitare PowerShell 2.0 è fondamentale per migliorare la sicurezza dell’ambiente Windows. Per i professionisti IT e gli MSP che cercano un modo efficiente per farlo, il nostro script per disabilitare PowerShell 2.0 è una manna dal cielo. Automatizza l’operazione ed è dotato di controlli che ti permettono ti essere certo che tu stiafacendo le cose nel modo giusto.