16 lines
317 B
Batchfile
16 lines
317 B
Batchfile
@ECHO off
|
|
|
|
:: Start as administrator
|
|
fltmc >nul 2>&1 || (
|
|
echo Vous devez lancer le programme en tant qu'administrateur.
|
|
PowerShell Start -Verb RunAs '%0' 2> nul || (
|
|
echo Clic droit, Executer en tant qu'administrateur
|
|
pause & exit 1
|
|
)
|
|
exit 0
|
|
)
|
|
|
|
winget upgrade -h --all
|
|
|
|
pause
|
|
exit /b
|