Adding/Removing Windows Features using PowerShell
This article describes how to list, add and remove Windows features using PowerShell.
oracle miscconfigurationintermediate
by OracleDba
12 views
This article describes how to list, add and remove Windows features using PowerShell.
12345
# All features.
get-windowsfeature
# All features containing the word "net"
get-windowsfeature *net*12345
# Pre-2012
add-windowsfeature as-net-framework
# 2012 Onward
install-windowsfeature as-net-framework12345
# Pre-2012
remove-windowsfeature as-net-framework -Restart
# 2012 Onward
uninstall-windowsfeature as-net-framework -RestartPlease to add comments
No comments yet. Be the first to comment!