What's new

Welcome to GloTorrents Community

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

Ask question

Ask Questions and Get Answers from Our Community

Answer

Answer Questions and Become an Expert on Your Topic

Contact Staff

Our Experts are Ready to Answer your Questions

Change the Windows Image to a Higher Edition Using DISM

_.:=iTake=:._

Administrator
Staff member
ZeuS
Super Moderator
+Lifetime VIP+
Registered
Joined
Oct 20, 2018
Messages
1,370
Reaction score
1,431
Points
113
Credits
14,854
You can use the Windows® edition-servicing commands to change one edition of Windows to a higher edition of Windows. The edition packages for each potential target edition are staged in the Windows image. This is referred to as an edition-family image. You can use the command-line options to list potential target editions. Because the target editions are staged, you can service a single image, and the updates will be applied appropriately to each edition in the image.

You need a product key to change the Windows edition online. Offline changes do not require a product key. If you change the image to a higher edition using offline servicing, you can add the product key by using one of the following methods:

  • Enter the product key during the out-of-box experience (OOBE).
  • Use an unattended answer file to enter the product key during the specialize configuration pass.
  • Use Deployment Image Servicing and Management (DISM) and the Windows edition-servicing command-line option /Set-ProductKey after you set the edition offline.
For more information about product keys, see Work with Product Keys and Activation.

Find and Change Current Edition of Windows
You can find the edition of Windows your image is currently set to by mounting the image and running DISM commands on the mounted image.

To find the current edition

  1. Click Start, and type deployment. Right-click Deployment and Imaging Tools Environmentand then select Run as administrator.
  2. At the command prompt, type the following command to retrieve the name or index number for the image that you want to modify.

    Code:
    Dism /Get-ImageInfo /ImageFile:C:\test\images

  3. Type the following command to mount the offline Windows image.

    Code:
    Dism /Mount-Image /ImageFile:C:\test\images /Index:1 /MountDir:C:\test\offline

    An index or name value is required for most operations that specify an image file.
  4. Type the following command to find the edition of Windows your image is currently set to.

    Code:
    Dism /Image:C:\test\offline /Get-CurrentEdition

    Note which edition of Windows your image is currently set to. If the image has already been changed to a higher edition you should not change it again. Use the lowest edition as a starting point.
  5. Unmount the image or continue with the next procedure. To unmount your image, type the following command.

    Code:
    Dism /Unmount-Image /MountDir:C:\test\offline /Commit
To change to a higher edition of Windows

  1. Type the following command to mount the offline Windows image (if it is not already mounted).

    Code:
    Dism /Mount-Image /ImageFile:C:\test\images /Name:<Image_name> /MountDir:C:\test\offline

  2. Type the following command to find the editions of Windows that you can change your image to.

    Code:
    Dism /Image:C:\test\offline /Get-TargetEditions

    Note the edition-ID for the edition you want to change to.
    Note You cannot set a Windows image to a lower edition. The lowest edition will not appear when you run the /Get-TargetEditions option. You should not use this procedure on an image that has already been changed to a higher edition.
  3. Type the following command specifying the edition-ID to change the Windows image to a higher edition.

    Code:
    Dism /Image:C:\test\offline /Set-Edition:Professional

  4. Type the following command to unmount the image and commit your changes.

    Code:
    Dism /Unmount-Image /MountDir:C:\test\offline /Commit
Guide here:

https://docs.microsoft.com/en-us/wi...-windows-image-to-a-higher-edition-using-dism
 
Last edited:
shape1
shape2
shape3
shape4
shape7
shape8
Top