Tuesday 15 July 2014

GUI Not Coming After Uninstalling .NET4.5 On Windows Server 2012



After uninstalling .NET4.5 from windows server 2012, you will not be getting any GUI. Only command line will be active.
While uninstalling .NET4.5 from 2012, it also uninstalls graphic shell and powershell. That's why you are not able to see anything.

Resolution :

1) Open cmd.

2) Run "DISM.exe /online /enable-feature /all /featurename:NetFx4", this will install .NET4 on your system.

3) Run "DISM.exe /online /enable-feature /all featurename:MicrosoftWindowsPowerShell", this will install powershell on your system.

4) Now open powershell by using command "start powershell" from cmd.

5) Run "Install-WindowsFeature Server-Gui-Shell, Server-Gui-Mgmt-Infra", this will install windows gui shell and enable it.

6) Restart your system, it will take some time to come up because it installs the packages in background.

No comments:

Post a Comment