Skip to content
OnMSFT.com
  • Home
  • About
  • Contact
  • Windows
  • Surface
  • Xbox
  • How-To
  • OnPodcast
  • Edge
  • Teams
  • Gaming
Menu
  • Home
  • About
  • Contact
  • Windows
  • Surface
  • Xbox
  • How-To
  • OnPodcast
  • Edge
  • Teams
  • Gaming
  1. Home
  2. News
  3. How to add a Shutdown and Reboot tile to your Windows 8 or Windows RT Start Screen

How to add a Shutdown and Reboot tile to your Windows 8 or Windows RT Start Screen

Ron Ron
August 23, 2019
2 min read

For most of us on Windows 8, we simply hit Win+C to bring up the Charms bar, hit Settings, then power, then we shut down our PC. But for those who are on a tablet device running Windows 8 or Windows RT, perhaps there’s an easier way to shutdown or restart. Well, there is. If you want to create a shutdown and reboot tile in your Start Screen for easy access to these useful system commants, read along.

Simply copy the following code into a new txt file and rename it to whatever you like, just add the .vbs to the file extension. For example: shutdown.vbs. Once this is done, simply double click the script and it will create the tiles for you. If you are unable to create a .vbs document, make sure you have “show file names extensions” enabled in Folder Options within Windows 8.

set WshShell = WScript.CreateObject(“WScript.Shell”)
strStartMenu = WshShell.SpecialFolders(“StartMenu”)
set oShellLink = WshShell.CreateShortcut(strStartMenu & “\Shutdown.lnk”)
oShellLink.TargetPath = “%systemroot%\System32\shutdown.exe”
oShellLink.Arguments = “-s -t 0”
oShellLink.WindowStyle = 1
oShellLink.IconLocation = “%systemroot%\System32\shell32.dll,27”
oShellLink.Description = “Shutdown Computer (Power Off)”
oShellLink.WorkingDirectory = “%systemroot%\System32\”
oShellLink.Save
Set oShellLink = Nothing
set oShellLink = WshShell.CreateShortcut(strStartMenu & “\Log Off.lnk”)
oShellLink.TargetPath = “%systemroot%\System32\shutdown.exe”
oShellLink.Arguments = “-l”
oShellLink.WindowStyle = 1
oShellLink.IconLocation = “%systemroot%\System32\shell32.dll,44”
oShellLink.Description = “Log Off (Switch User)”
oShellLink.WorkingDirectory = “%systemroot%\System32\”
oShellLink.Save
Set oShellLink = Nothing
set oShellLink = WshShell.CreateShortcut(strStartMenu & “\Restart.lnk”)
oShellLink.TargetPath = “%systemroot%\System32\shutdown.exe”
oShellLink.Arguments = “-r -t 0”
oShellLink.WindowStyle = 1
oShellLink.IconLocation = “%systemroot%\System32\shell32.dll,176”
oShellLink.Description = “Restart Computer (Reboot)”
oShellLink.WorkingDirectory = “%systemroot%\System32\”
oShellLink.Save
Set oShellLink = Nothing
Wscript.Echo “Shutdown, Restart and Log Off buttons have been created. You can now pin them to the Start Screen of your Windows 8 computer (if they are not already there).”

XDA Developers
Share this article:
Previous Article Microsoft rebranding continues with Azure next on the list Next Article MediaFire takes the fight to OneDrive, offers 1TB of cloud storage for $5 a month

Related Articles

Nvidia CEO Jensen Huang says demand for Blackwell and Rubin AI chips could reach $1 trillion as AI infrastructure spending grows rapidly.

Nvidia CEO Jensen Huang sees $1 trillion demand for Blackwell and Rubin AI chips

March 16, 2026
Nvidia introduces DLSS 5 to improve game realism with generative AI

Nvidia introduces DLSS 5 to improve game realism with generative AI

March 16, 2026
Dictionary Publisher Files Copyright Lawsuit Against OpenAI

Dictionary Publisher Files Copyright Lawsuit Against OpenAI

March 16, 2026

Leave a Comment Cancel reply

Your email address will not be published. Required fields are marked *

Recent Posts

  • Nvidia CEO Jensen Huang sees $1 trillion demand for Blackwell and Rubin AI chips
  • Nvidia introduces DLSS 5 to improve game realism with generative AI
  • Dictionary Publisher Files Copyright Lawsuit Against OpenAI
  • Shopify exec says AI shopping agents are the future of e-commerce
  • WhatsApp beta introduces guest chats for messaging without an account

Recent Comments

No comments to show.
OnMSFT.com

The Tech News Site

Categories

  • Windows
  • Surface
  • Xbox
  • How-To
  • OnPodcast
  • Gaming
  • Edge
  • Teams

Recent Posts

  • Nvidia CEO Jensen Huang sees $1 trillion demand for Blackwell and Rubin AI chips
  • Nvidia introduces DLSS 5 to improve game realism with generative AI
  • Dictionary Publisher Files Copyright Lawsuit Against OpenAI
  • Shopify exec says AI shopping agents are the future of e-commerce
  • WhatsApp beta introduces guest chats for messaging without an account

Quick Links

  • About OnMSFT.com
  • Contact OnMSFT
  • Join Our Team
  • Privacy Policy
© 2010–2026 OnMSFT.com LLC. All rights reserved.
About OnMSFT.comContact OnMSFTPrivacy Policy