Downloaded Windows server standard edition instead of desktop edition

jack 26 Reputation points
2022-06-03T20:55:56.933+00:00

Hi, I downloaded 'windows server 2022 standard' edition instead of downloading 'windows server 2022 standard - desktop edition' now I have no GUI, how do I now download the desktop edition using Powershell? I have no previous experiment using Powershell. Please help!

Windows for business | Windows Server | User experience | Other
0 comments No comments
{count} votes

Accepted answer
  1. Anonymous
    2022-06-03T21:05:34.46+00:00

    Its the same ISO, you'll need to clean install it but choose Desktop Experience during setup.

    --please don't forget to upvote and Accept as answer if the reply is helpful--

    208371-image.png


1 additional answer

Sort by: Most helpful
  1. David Downing 706 Reputation points
    2022-06-03T21:09:45.88+00:00

    I believe the UI portion for a server install is a feature that is unselected by default.

    If you can connect to the server through a PowerShell remote session, try running one of the following:

    Get-WindowsFeature -Online
    Get-WindowsOptionalFeature -Online

    This should show you which features are enabled or disabled. From there you can use the following:

    Enable-WindowsFeature –FeatureName "<feature name>"
    Enable-WindowsOptionalFeature –FeatureName "<feature name>"

    I don't have access to a server right now, but if these don't work, use the following to get commands/help to see possible commands.

    Get-Help WindowsFeature*


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.