Difference between revisions of "WSUS Offline Updater"
Line 1: | Line 1: | ||
− | Client Folders for Downloaded Updates | + | <h1>Client Folders for Downloaded Updates</h1> |
{| class="wikitable sortable" | {| class="wikitable sortable" | ||
Line 16: | Line 16: | ||
|- | |- | ||
|} | |} | ||
+ | |||
+ | <h1>Commands</h1> | ||
+ | |||
+ | <h2>Export ESD to WIM</h2> | ||
+ | <pre> | ||
+ | dism /export-image /SourceImageFile:install.esd /SourceIndex:2 /DestinationImageFile:install.wim /Compress:none /CheckIntegrity | ||
+ | </pre> | ||
+ | |||
+ | <h2>Get WIM Index ID</h2> | ||
+ | <pre> | ||
+ | dism /Get-ImageInfo /imagefile:C:\test\images\install.wim | ||
+ | </pre> | ||
+ | |||
+ | <h2>Mount WIM File</h2> | ||
+ | <pre> | ||
+ | dism /mount-wim /wimfile:C:\Extract\sources\install.wim /mountdir:C:\dismmount /index:3 | ||
+ | </pre> | ||
+ | |||
+ | <h2>Apply Updates to Mounted WIM</h2> | ||
+ | <pre> | ||
+ | dism /image:C:\dismmount /Add-Package /PackagePath:C:\wsusoffline\client\w61-x64\glb | ||
+ | </pre> | ||
+ | |||
+ | <h2>Commit Changes to WIM</h2> | ||
+ | <pre> | ||
+ | dism /unmount-wim /mountdir:C:\dismmount /commit | ||
+ | </pre> |
Latest revision as of 16:28, 25 July 2018
Contents
Client Folders for Downloaded Updates
Folder | Operating System |
---|---|
w60-x64 | Windows Vista / Server 2008 64bit |
w61-x64 | Windows 7 / Server 2008R2 64bit |
w62-x64 | Windows 8 / Server 2012 64bit |
w63-x64 | Windows 8.1 / Server 2012R2 64bit |
w100-x64 | Windows 10 / Server 2016, 64-bit |
Commands
Export ESD to WIM
dism /export-image /SourceImageFile:install.esd /SourceIndex:2 /DestinationImageFile:install.wim /Compress:none /CheckIntegrity
Get WIM Index ID
dism /Get-ImageInfo /imagefile:C:\test\images\install.wim
Mount WIM File
dism /mount-wim /wimfile:C:\Extract\sources\install.wim /mountdir:C:\dismmount /index:3
Apply Updates to Mounted WIM
dism /image:C:\dismmount /Add-Package /PackagePath:C:\wsusoffline\client\w61-x64\glb
Commit Changes to WIM
dism /unmount-wim /mountdir:C:\dismmount /commit