Saturday, 15 November 2014

TIMER - SHUTDOWN COMPUTER WHEN TIMEOUT

TIMER - SHUTDOWN COMPUTER WHEN TIMEOUT
copy all this code into notepad
@echo off
:Start
title timer
color EC
echo Type in an amount of time (Seconds)
set /p time=
color CE
:loop
cls
ping localhost -n 2 >nul
set /a time=%time%-1
echo %time%
if %time% EQU 0 goto Timesup
goto loop
:Timesup
title Time Is Up!

ping localhost -n 2 >nul

ping localhost -n 2 >nul
color 5F
echo You have 20 seconds before Windows Will shut down!
ping localhost -n 20 >nul

ping localhost -n 2 >nul

ping localhost -n 2 >nul
ping localhost -n 1 >nul
ping localhost -n 1 >nul
ping localhost -n 1 >nul
goto Shutdown

:Shutdown
color 4F
echo Windows is now shutting down!
ping localhost -n 1 >nul
start C:\Windows\System32\Shutdown.exe -s

No comments:

Post a Comment