Page 2 of 2

Re: Command Prompt

PostPosted: Sun Mar 02, 2008 9:26 am
by Troodon
:lol:

Re: Command Prompt

PostPosted: Sun Mar 02, 2008 11:47 am
by Bee-Ant
:lol: :lol:

Re: Command Prompt

PostPosted: Tue Mar 04, 2008 10:48 pm
by kirby
:lol: = :?
lol = ?
:lol: :lol: :lol: :lol: :lol:

Re: Command Prompt

PostPosted: Tue Mar 04, 2008 10:53 pm
by kirby
:lol: = :?
lol = ?
:lol: :lol: :lol: :lol: :lol:
I did that on my computer before. Too lazy to shutdown the computer with the shutdown icon. So i make a .bat file.

Code: Select all
@echo off
echo PRESS anykey to SHUTDOWN.
pause
shutdown -t 10
shutdown -s -c "You shutting down with Shutdown.exe. Press ANYKEY to abort the Shutdown. By Kei."
pause
pause
shutdown -a
echo YOU ABORTED THE SHUTDOWN COMMAND.
pause
exit


But the thing is... i can't abort the shutdown. So it shutdown right away... ANd i even make virus on my computer.
Once i make a pop up virus. OMGN it never stop popping up!! :lol:
I just open tast manager and close the Explorer.exe, and slowly close all the stuff, and then the last batch file i type...
Code: Select all
cls
start explorer.exe


Then everything returrn normal. :lol: Uhhhh.............sorry.

Re: Command Prompt

PostPosted: Tue Mar 04, 2008 11:29 pm
by Game A Gogo
Code: Select all
@echo off
color C0
title Shutting down
echo You have requested to shut down this computer
echo close this application to abort.
pause
shutdown -s -f -t 00

works better

also a trick:
Code: Select all
pause>nul

it won't say like "press any key to continue..."