![]() |
Post Reply - DISM WIM install |
Post Reply |
Message |
Topic - DISM WIM install Posted: 24 Jun 2024 at 5:33pm By reaper |
(This script assumes D:\target exist and E: will be the mounted volume) Mount the ISO (right click and select “Mount”) COPY f:\sources\install.wim D:\target\. MKDIR D:\target\offline Optional: DISM /Get-WimInfo /WimFile:D:\target\install.wim (this will tell you the string for the /Name parameter) DISM /Mount-Wim /WimFile:D:\target\install.wim /Name:"Windows 7 ENTERPRISE" /MountDir:D:\target\offline Optional: DISM /Image:D:\target\offline /Get-CurrentEdition (this will confirm CoreSingleLanguage is currently set) Optional: DISM /Image:D:\target\offline /Get-TargetEditions (this will confirm the valid target list) DISM /Image:D:\target\offline /Set-Edition:ENTERPRISE DISM /Unmount-Wim /MountDir:D:\target\offline /Commit D:\target\install.wim is now a Pro SKU. You should be able to use it as you have used previous builds. |