Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- net file 1>NUL 2>NUL
- if not '%errorlevel%' == '0' (
- powershell Start-Process -FilePath "%0" -ArgumentList "%cd%" -verb runas >NUL 2>&1
- exit /b
- )
- cd /d %~dp0
- chcp 65001 > nul 2>&1
- set /p minutes="Veuillez saisir le nombre de minutes avant l'extinction forcée et automatique: "
- set /a sec=%minutes%*60
- echo "L'ordinateur s'éteindra dans %minutes% minutes (%sec% secondes)."
- echo "Appuyez sur Ctrl + C maintenant pour annuler, n'importe quelle autre touche pour valider."
- pause
- shutdown /s /t %sec%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement