13 lines
448 B
PowerShell
13 lines
448 B
PowerShell
$UpdatesPath = "D:\TEMP\Update\*"
|
||
$MountPath = “D:\TEMP\Mount\”
|
||
$WimFile = “D:\TEMP\Windows10_1703\sources\install.wim”
|
||
DISM /Mount-Wim /WimFile:$WimFile /index:1 /Mountdir:$MountPath
|
||
$UpdateArray = Get-Item $UpdatesPath
|
||
ForEach ($Updates in $UpdateArray)
|
||
{
|
||
DISM /image:$MountPath /Add-Package /Packagepath:$Updates
|
||
Start-Sleep –s 10
|
||
}
|
||
Write-Host "Updates Applied to WIM"
|
||
DISM /Unmount-Wim /Mountdir:$MountPath /commit
|
||
DISM /Cleanup-Wim |