Is anyone slipstreaming anymore ? Perhaps not the cululative updates is rather taking the fuzz away …
Still saves the stepps here to remember them…
Get the updates from here
https://www.catalog.update.microsoft.com/Home.aspx
#1 List index numbers of wim/esd file.
dism /Get-WimInfo /WimFile:Sources\install.wim or \install.esd
#2 Use index # for the edition such as home, pro etc… and save it to desktop.
Once done, move it to Sources
dism /Export-Image /SourceImageFile:”Sources\install.wim” /SourceIndex:# /DestinationImageFile:”install.wim” /Compress:Max
#3 Add Windows updates to wim file
dism /mount-wim /wimfile:”Sources\install.wim” /mountdir:mount /index:1
dism /image:mount /add-package /packagepath:package
Dism /unmount-wim /mountdir:mount /commit

