13 lines
318 B
Batchfile
13 lines
318 B
Batchfile
:: make the startup script run on startup
|
|
copy .\startup.cmd "%AppData%\Microsoft\Windows\Start Menu\Programs\Startup\"
|
|
|
|
:: disable sleep, DOESN'T WORK MUST BE DONE WITH GUI
|
|
powercfg.exe /hibernate off
|
|
|
|
:: disable recovery mode
|
|
Reagentc /disable
|
|
|
|
:: disable updates
|
|
sc config wuauserv start= disabled
|
|
sc stop wuauserv
|