Since Windows Vista, the classic Shutdown dialog is accessible only with the help of a hotkey. You have to minimize all windows, then click to focus on the Desktop and finally press Alt+F4 to make it appear. Instead, Microsoft offers you an expandable submenu for the “Shutdown” button in the Start Menu of Windows 7 and Windows Vista. Things have changed for the worse again with Windows 8: no more Start Menu, no more quick access to Shutdown functions. Today, I going to show you how it is possible to display the familar classic Shut Down Windows dialog with a single click.
All we need is just the Notepad application. Start it and paste the following text:
dim objShell
set objShell = CreateObject("shell.application")
objshell.ShutdownWindows
set objShell = nothing
Now select File – Save menu item and type any filename, but it is necessary to add “.vbs” as the file extension.
Tip: You can add the filename and extension inside quotes, so that Notepad does not add “.txt” to the filename that you have typed. Adding it inside quotes will save it as “shutdown.vbs” and not, “shutdown.vbs.txt”. See the following image:
Now double click on the file you saved and you will see the old good Shut Down Windows dialog. That’s it.
How does it work
There is nothing magical with this trick. Windows provides users with access to a wide variety of objects necessary for running applications and managing the operating system. One of them is the Shell COM object which we have created inside the script. It has a Shutdown method which displays the Shut Down Windows dialog box. Nothing more, nothing less.
Bonus tip: How to pin our Shut Down dialog script to the Taskbar
It is very easy to get it pinned with our latest software: Taskbar Pinner. Just follow the step-by step instructions below:
- Create a shortcut to your VBS file and place it anywhere you want.
- Change the icon of the shortcut you have created to the one from C:\Windows\System32\Shell32.dll file.
- Drag the shortcut file to Taskbar Pinner’s main window and drop it. That’s all.
Now you can even safely remove the shortcut you have created at step 1, it is not required anymore.