[help] How To Do This Shortcut On Y'sdock?

Well...

I want to do a shortcut on Y'zDock to:

1-Directly Turn Off my computer

2-Directly open the start menu like in the default bar

3-Directly Logoff my account on my computer

Does someone can help me about it? :rolleyes:

#75489

About the Turn Off improvemment, u can find a docklet here:

http://users.wpi.edu/~albeik/yzdocklets/?p...pageId=docklets

About the others, I don't have idea :)

#75672

For (3)...

Create a shorcut which runs the following:

shutdown.exe -l

#75681

for the first one, create a shortcut to shutdown.

Right click on the desktop

Click [New] [shortcut] to open the Create Shortcut Wizard

Type [shutdown -s -t 00] without the brackets.

Click [Next] and type a descriptive name of your choosing for the shortcut

Click [Finish]

where the switches are simple to understand.

-s means shutdown

-t means the time delay, so 00 means it shuts down immediately.

source: http://www.theeldergeek.com/shutdown_and_r...eboot_icons.htm

for the start menu, you'll probably need some kind of script or docklet function to get that.

#75702

To access the Start Menu paste the follwoing into notepad and save as "StartMenu.vbs" and link to it.

dim WshShell
Set WshShell = Wscript.createobject("wscript.shell")
WshShell.sendkeys "^{ESC}"
Set WshShell = nothing

Hope this helps

#75989

Thank you all guys... (Y)

but tadis, when i click this shortcut, it opens on my windows default bar...do you know how to do it open on top off Y'z? :rolleyes:

#76008

Sorry, that was the best I could do

#76191