Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security, Veeam & DevOps

  • Home
  • About
  • Advertise With US
  • Reviews
  • Tech News
  • Contact
  • Toggle search form

Add Registry Keys via DISM in Windows

Posted on 10/06/202231/07/2024 Matthew By Matthew No Comments on Add Registry Keys via DISM in Windows
  1. Home
  2. Windows
  3. Add Registry Keys via DISM in Windows
Featured-Image_new

Adding Registry Keys via DISM in Windows involves modifying the default Windows install image, the install.wim file, which includes servicing an offline image, mounting an image, and committing changes made to the image. The offline image is serviced using DISM (Deployment Image Servicing and Management), a native Windows program. DISM is a command-line program for servicing and preparing Windows images, including those needed for Windows Preinstallation Environment (PE), Windows Recovery Environment (RE), and Windows Setup.

Please see: Install Wim: How to Add Packages to Windows image the DISM Tool and Remove Windows 10 Apps with DISM: How to remove pre-provisioned apps from Windows Image.

Using the DISM command options in Windows, you can not only manage registry keys but also make impactful changes. Add Registry Keys via DISM in Windows to modify drivers, install language packs for multilingual Windows, and ensure your installation stays updated with Windows Updates.

Here are other related guides: Install Wim: How to Add Packages to Windows image the DISM Tool, Remove Windows 10 Apps with DISM: How to remove pre-provisioned apps from Windows Image, for common DISM errors see: Error 183: The specified image is currently being serviced by another DISM operation, and DISM Error 87: The package is unknown​.

In this guide, I will show you how to service or modify the Windows Registry on an offline image. I will be using a Windows 11 ISO image file in this example, but the technique is the same whether you use a Windows 10 ISO image.

Step 1: Adding Registry Keys via DISM in Windows for Offline Image Mounting

Extract the ISO image to a folder and name it whatever you want.

Managing registry keys

In this example, after extracting, I move it to the root folder on disk C: and name the folder ISO.

DISM command

Alternatively, you can Add Registry Keys via DISM in Windows by mounting a Windows ISO image as a virtual DVD. Begin by double-clicking, opening the ISO in Explorer. Select all, then copy and paste content into the ISO folder.

Windows registry

If you have Windows install media on a USB flash drive, no need for the steps above.

Craft a dedicated space for the offline image by setting up a directory. I creatively made a ‘Mount’ folder in C:\Mount. This is crucial when exploring Adding Registry Keys via DISM in Windows.

Registry modification

Open the Windows Start Menu and search for PowerShell, then run as administrator.

Managing registry keys

Enter the following command to check what editions are included in the image:

Dism /Get-WimInfo /WimFile:C:\ISO\Sources\install.wim
DISM command

Add Registry Keys via DISM in Windows: Note your chosen PRO edition’s index number (e.g., 6) for registry editing.

Mount the image of your preferred Windows edition using its index number, index 6 in this example:

Dism /Mount-Wim /WimFile:C:\ISO\Sources\install.wim /index:6 /MountDir:C:\Mount
Windows registry

The mounting image process will take some time to complete. You can check the Mount folder in C: Mount to see the offline image files.

image0.10-1

Please keep in mind that the disk where the Mount folder is situated requires some free space. It is recommended to utilize a machine with a disk that has more than 15 GB of free space.

Step 2: Add Registry Keys via DISM in Windows: Offline Registry Editing

To edit an offline registry hive, first import it to a temporary hive in your host registry. In this example, I will import the HKLM\Hardware hive from the offline registry to a temporary hive called OFFLINE in the host registry:

reg load HKLM\OFFLINE C:\Mount\Windows\System32\Config\Hardware
image0.11


The command above creates a new hive HKLM\OFFLINE in the host registry and imports the HKLM\HARDWARE hive from the offline image into it. You can import SOFTWARE, DEFAULT, DRIVERS, SAM, or SYSTEM hives.

To see the changes, open the Windows Start Menu and search for Registry Editor, then run as administrator on the host computer.

You will notice it now contains a temporary hive HKLM\HARDWARE\OFFLINE:

image0.12

Step 3: Commit (save) changes

When you’re ready to apply the changes made through Add Registry Keys via DISM in Windows, use the following command to unload the temporary hive:

reg unload HKLM\OFFLINE
image0.13

The Add Registry Keys via DISM in Windows process involves unloading the temporary hive from the host registry.

image0.14

Unmount the offline image and commit (save) changes using the following command:

Dism /Unmount-Image /MountDir:C:\mount /Commit
image0.15

The /Commit switch saves all modifications to the install.wim file. You’re done if you were using a Windows image on an USB drive. You may now install Windows, which includes your modification by default. If you were using an image transferred from an ISO image to an ISO folder, you can now make a new ISO with your preferred utility.

I trust you found this guide on how to add registry keys via DISM in Windows valuable. If you have any questions, please feel free to share in the comment section.

5/5 - (1 vote)

Thank you for reading this post. Kindly share it with others.

  • Share on X (Opens in new window) X
  • Share on Reddit (Opens in new window) Reddit
  • Share on LinkedIn (Opens in new window) LinkedIn
  • Share on Facebook (Opens in new window) Facebook
  • Share on Pinterest (Opens in new window) Pinterest
  • Share on Tumblr (Opens in new window) Tumblr
  • Share on Telegram (Opens in new window) Telegram
  • Share on WhatsApp (Opens in new window) WhatsApp
  • Share on Mastodon (Opens in new window) Mastodon
  • Share on Bluesky (Opens in new window) Bluesky
  • Share on Threads (Opens in new window) Threads
  • Share on Nextdoor (Opens in new window) Nextdoor
Windows Tags:DISM, ISO, ISO Files, ISO Image, Microsoft Windows, Registry Keys, RegistryEditor, Windows 10, Windows 11, Windows Registry, Windows Server 2016

Post navigation

Previous Post: Convert a PEM Key to a PPK Key on a Linux and Windows
Next Post: Microsoft OneDrive Setup: Files On-Demand & Key Features

Related Posts

  • Remote Desktop 2 1
    How to install RDS via Quick Start Deployment: Install, Publish, Update, and Uninstall Remote Desktop Web Client Web Server
  • banner2
    How to Use Google Chrome’s Enhanced Privacy Settings JIRA|Confluence|Apps
  • windows 1
    How to query, stop and delete a service in Windows Windows
  • VMware workstation networking issues
    Network cable Unplugged: Fix VMware “Warning – Multiple default gateways are intended to provide redundancy to a single network Virtualization
  • sd 1
    How to link your Android or iPhone to your Windows PC Windows
  • disable automatic updates in Windows
    How to disable automatic Windows updates via Windows Settings Windows

More Related Articles

Remote Desktop 2 1 How to install RDS via Quick Start Deployment: Install, Publish, Update, and Uninstall Remote Desktop Web Client Web Server
banner2 How to Use Google Chrome’s Enhanced Privacy Settings JIRA|Confluence|Apps
windows 1 How to query, stop and delete a service in Windows Windows
VMware workstation networking issues Network cable Unplugged: Fix VMware “Warning – Multiple default gateways are intended to provide redundancy to a single network Virtualization
sd 1 How to link your Android or iPhone to your Windows PC Windows
disable automatic updates in Windows How to disable automatic Windows updates via Windows Settings Windows

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

Veeam Vanguard

  • App Locker
    Harden your Veeam Backup Server with Microsoft AppLocker Windows
  • OOBEZDP
    OOBEZDP: Something went wrong during the Windows deployment Windows
  • banner
    How to Secure your API key in Postman Password Manager
  • Windows BootProcess
    Measured Boot, Secure Boot, Trusted Boot, and Early Launch Anti-Malware: How to secure the Windows 10 boot process Security | Vulnerability Scans and Assessment
  • BitLocker MBAM Frequently Asked Questions
    Disable the Sleep Mode: UEFI and TPM and BitLocker FAQs Windows
  • ext
    How to install a standalone DriveLock Encryption software on Windows Security | Vulnerability Scans and Assessment
  • Run Android Apps on Windows with BlueStacks
    How to Run Android Apps on Windows with BlueStacks Windows
  • SU
    How to switch users in Linux Linux

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,768 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon

Tags

Active Directory Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Deployment Services Windows Server 2016

Copyright © 2026 TechDirectArchive

Loading Comments...

You must be logged in to post a comment.