Tramite il comando DISM è possibile gestire le feature di windows dalla command line.
Ad esempio per elencare le feature installate e salvare l'output su un file:

DOS / Batch file

DISM /online /get-features /format:table > c:\temp\dism-01.txt
per filtrarle solo quelle attive, aggiungo il comando find:

DOS / Batch file

DISM /online /get-features /format:table | find “Enabled” | more
per vedere i dettagli

DOS / Batch file

DISM /online /get-featureinfo /featurename:NetFx4
infine posso abilitarle con il comando

DOS / Batch file

DISM /online /enable-feature /featurename:NetFx4
alcune feature hanno delle dipendenze, per risolverle in automatico va usato il parametro /all

DOS / Batch file

DISM /online /enable-feature /featurename:NetFx4 /all
ovviamente posso anche disabilitarle

DOS / Batch file

DISM /online /disable-feature /featurename:NetFx4

Vedi anche Add or Remove Windows Features Via Command Prompt or PowerShell
Tags:
Amministrazione7 PowerShell200 Windows73 Windows Server20
Potrebbe interessarti anche: