How would I go about using Simplix update pack (which I've used before), but removing the telemetry/windows 10-related updates from the pack? Do I need to integrate but then make a SetupComplete.cmd to remove them and hide them? I know a VBS script exists to hide updates; I've got a copy somewhere. Suggestions? Thanks
Correct me if Im wrong, but the simplex pack shouldnt/doesnt contain the windows 10 telemetry crap. Anyways, if you want to remove packages, you'll need to use DISM. To remove packages Code: Dism /Mount-wim /wimFile:%src%\install.wim /index:* /MountDir:%mnt% dism /Image:%mnt% /Remove-Package /PackageName:%PackageName% Dism /Unmount-wim /MountDir:%mnt% /Commit %src% = Path,location and name of WIM file. EG: C:\Win7\install.wim * = Index number of WIM file you want to change. %mnt% = Mount point. EG: C:\mount %PackageName% = Name of package. If you want to remove multiple packages at the same time, just add another /PackageName: switch.