Integrating updates but removing some

Discussion in 'Windows 10' started by CaffeinePizza, Dec 6, 2015.

  1. CaffeinePizza

    CaffeinePizza MDL Junior Member

    May 19, 2013
    56
    28
    0
    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
     
  2. cocachris89

    cocachris89 MDL Senior Member

    Mar 1, 2013
    491
    151
    10
    #2 cocachris89, Dec 7, 2015
    Last edited by a moderator: Apr 20, 2017
    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.