Skip to content

Instantly share code, notes, and snippets.

View Kartones's full-sized avatar
💻
+ 📖 + 🕹️

Diego Kartones

💻
+ 📖 + 🕹️
View GitHub Profile
@Kartones
Kartones / Win 10 Disable Automatic Windows Updates.bat
Created August 26, 2023 19:29
Win 10 Disable Automatic Windows Updates.bat
:checkPrivileges
NET FILE 1>NUL 2>NUL
if '%errorlevel%' == '0' ( goto gotPrivileges ) else ( goto getPrivileges )
:getPrivileges
if '%1'=='ELEV' (echo ELEV & shift /1 & goto gotPrivileges)
setlocal DisableDelayedExpansion
set "batchPath=%~0"
setlocal EnableDelayedExpansion
@Kartones
Kartones / Win 10 Disable Forced Reboot After Update.bat
Created August 26, 2023 19:30
Win 10 Disable Forced Reboot After Update.bat
:checkPrivileges
NET FILE 1>NUL 2>NUL
if '%errorlevel%' == '0' ( goto gotPrivileges ) else ( goto getPrivileges )
:getPrivileges
if '%1'=='ELEV' (echo ELEV & shift /1 & goto gotPrivileges)
setlocal DisableDelayedExpansion
set "batchPath=%~0"
setlocal EnableDelayedExpansion