Re: Shutdown Shortcut
If you paste these lines into notepad and save with a .vbs extension, and
then click on it, it will give you an idea of how you can get a confirmation
prompt
JillsResponse = _
MsgBox("Hey Jill, do you really really wanna shut me down?", _
vbOKCancel, "Checking If Jill is really sure")
If JillsResponse = vbOK Then
MsgBox "Ok gonna shut down then"
Else
MsgBox "Ok I won't shut down then"
End If
--
Jon
"Jill" <jill@nowhere.no.com> wrote in message
news:1B2BBF63-BADE-4886-AEB1-73273C58D41E@microsoft.com...
> Thanks... Spirit... but what about a conformation window that I really
> want to shutdown and/or restart???
>
> Thanks for the reply...
>
> "Spirit" <noone@notthere.net> wrote in message
> news:eIdM%23z0wHHA.840@TK2MSFTNGP03.phx.gbl...
>> Enter shutdown -s -t 0
>> Restart: shutdown -r -t 0
>> Logoff: shutdown -l -t 0
>> Hibernate: rundll32.exe PowrProf.dll, SetSuspendState Hibernate
>>
>> "Jill" <jill@nowhere.no.com> wrote in message
>> news:3DC1BF3A-FC9E-48E4-B18C-34EEB37AFEE8@microsoft.com...
>>>I know how to make a shutdown shortcut... however, I do not know how to
>>>include a conformation that I want to shutdown... can anyone tell me how
>>>to make a shutdown shortcut with a conformation that I really want to
>>>shutdown...
>>>
>>> Thanks in advance...
>>>
>>> Jill...
>>
>