Q: Does Windows Server 2012 Server Core include .NET and PowerShell support? How do I uninstall them?

You can uninstall .NET Framework components and Windows PowerShell, by using a PowerShell command.

John Savill

July 10, 2012

1 Min Read
ITPro Today logo in a gray background | ITPro Today

A: By default Windows Server 2012 Server Core installation includes .NET components and PowerShell. These components, including PowerShell, can be uninstalled and removed from the disk footprint if a very minimal server installation is required. You can use PowerShell to uninstall them, and itself, by using the following command:

uninstall-windowsfeature PowerShellRoot, NET-Framework-45-Features -remove -whatif

Notice I have the -whatif switch which will stop any changes from actually being made, because many roles and features are unavailable once .NET is removed.

About the Author

Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like