Advertisement
easternnl

Add or Remove the Windows Gui from a server

Jun 2nd, 2015
682
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # removing the Windows GUI and go back to Server Core:
  2. Get-WindowsFeature  *gui* | Uninstall-WindowsFeature
  3.  
  4. # Move a Windows Core installation to a complete Server with GUI:
  5. Get-WindowsFeature *gui* | Install-WindowsFeature
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement