Upgrade windows server 2022 evaluation to standard using DISM command

Mohammed Abdelrahman 0 Reputation points
2026-05-18T06:20:13.1266667+00:00

Hello Support ,

i have one question , regards of upgrading or converting windows server 2022 evaluation to full Standard edition by dism command , will this delete installed application or files ?

please confirm

thanks

Windows for business | Windows Server | Devices and deployment | Set up, install, or upgrade
0 comments No comments

3 answers

Sort by: Newest
  1. Pappu Lal Kumar 0 Reputation points
    2026-09-14T14:53:17.0066667+00:00

    will this same process applies for windows server 2025 ? Please confirm.
    Which one should we buy? this is a standalone server where we just need activation:

    A. Microsoft Windows Server Standard Edition - license - 16 cores

    B. Microsoft Windows Server Standard Edition - license & software assurance - 16 cores

    Was this answer helpful?

    0 comments No comments

  2. HLBui 12,060 Reputation points Independent Advisor
    2026-05-18T07:07:25.03+00:00

    Hi Mohammed Abdelrahman

    The answer is No. Upgrading or converting Windows Server 2022 Evaluation to Standard using the DISM command won’t wipe out your installed apps or files. What it does is basically flip the license state of the OS, so your workloads, roles, and data stay intact. That said, I always recommend doing a backup before you run the conversion, just in case something unexpected happens in your environment. The DISM process is pretty straightforward: you provide the target edition and product key, and once it completes, you’ll need a reboot. After that, everything should look the same except now you’re on Standard instead of Evaluation.

    So bottom line: your apps and files won’t be deleted, but a backup is still smart practice.

    If this clears things up for you, please hit “accept answer” so we know it helped and please feel free to let me know if you need any assistance

    Was this answer helpful?

    0 comments No comments

  3. AI answer

    2026-05-18T06:20:23.1233333+00:00

    Converting Windows Server 2022 Evaluation to a full Standard edition using DISM is an in-place edition change and is not designed to delete installed applications or user data. The procedure changes the edition and licensing of the existing installation; it is not a clean install.

    The documented flow is:

    1. Confirm current edition:
         DISM /online /Get-CurrentEdition
      
    2. Check which editions you can convert to:
         DISM /online /Get-TargetEditions
      
    3. (Optional) Save the license terms:
         DISM /online /Set-Edition:<target edition> /GetEula:C:\license.rtf
      
    4. Perform the conversion with your product key:
         DISM /online /Set-Edition:<target edition> /ProductKey:<product key> /AcceptEula
      

    However, any operation that changes the OS edition carries some risk (for example, if there is a power loss or existing corruption), so a full system and data backup is strongly recommended before running the DISM Set-Edition command.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

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