How about staying on topic? Besides that you guys say no antivirus necessary? how would i accomplish that?
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?
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
Will this permanently block windows update. If so kindly guide me in integrating this script in install.wim. Thank you pal.
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.
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. 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"