Windows 10 - 1803 - Auto Update Disable

Discussion in 'Windows 10' started by Deleted member 993262, Jul 14, 2018.

    How about staying on topic?

    Besides that you guys say no antivirus necessary? how would i accomplish that?
     
  1. AeonX

    AeonX MDL Addicted

    May 24, 2013
    793
    719
    30
    Before saying it does not work you need to understand HOW it works.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. I would rather have the latest windows version release without any manual updates and without anything extra's add to windows thats why i'm a fan of registry tweaks.
    There should be a way to completely disable the update there right?
     
  3. AeonX

    AeonX MDL Addicted

    May 24, 2013
    793
    719
    30
    Code:
    reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d "1" /f
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. jinvidia

    jinvidia MDL Member

    Aug 7, 2016
    238
    35
    10
    Will this permanently block windows update. If so kindly guide me in integrating this script in install.wim. Thank you pal.
     
  5. For me it did nothing.
     
  6. TairikuOkami

    TairikuOkami MDL Expert

    Mar 15, 2014
    1,172
    1,052
    60
    MS has strengthened the protection of usoclient.exe in 1809, I can take ownership, but I can not remove users via icalcs anymore. Luckily it can be done manually, so this method still works. :cool:
     

    Attached Files:

  7. AveYo

    AveYo MDL Expert

    Feb 10, 2009
    1,836
    5,685
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. sungerbob

    sungerbob MDL Junior Member

    Nov 8, 2014
    58
    11
    0
    Can you tell me how did you that?
     
  9. TairikuOkami

    TairikuOkami MDL Expert

    Mar 15, 2014
    1,172
    1,052
    60
  10. shewolf

    shewolf MDL Senior Member

    Apr 16, 2015
    471
    1,065
    10
    #53 shewolf, Sep 25, 2018
    Last edited: Sep 26, 2018
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. TairikuOkami

    TairikuOkami MDL Expert

    Mar 15, 2014
    1,172
    1,052
    60
    I have figured out, what I did wrong, though interestingly it worked before. I have to grant admin permissions before removing admin permissions, since by default, admin does not have them. :rolleyes:
    Code:
    takeown /f "%WINDIR%\System32\UsoClient.exe" /a
    icacls "%WINDIR%\System32\UsoClient.exe" /inheritance:r /grant:r Administrators:F /c
    icacls "%WINDIR%\System32\UsoClient.exe" /remove "Administrators"