19 lines
348 B
Batchfile
19 lines
348 B
Batchfile
@echo off
|
|
|
|
:: Start as administrator
|
|
fltmc >nul 2>&1 || (
|
|
powershell Start -Verb RunAs '%0' 2> nul || (
|
|
exit 1
|
|
)
|
|
exit 0
|
|
)
|
|
|
|
:: Windows programs
|
|
winget upgrade -h --all
|
|
|
|
:: Windows Update
|
|
powershell -Command "Set-ExecutionPolicy Bypass -Scope Process;" ^
|
|
"Get-WindowsUpdate -AcceptAll -Install"
|
|
|
|
pause
|
|
exit /b
|