Skip to main content

How to add a "Slide to shut down" option on Windows 10

 If you're looking for a more interactive way to power off your PC, use this guide to add Slide to shut down to touch and non-touch screen devices on Windows 10.


Shutting down and powering on your computer are perhaps some of the easiest tasks you can do on Windows 10. Back on Windows 8, Microsoft also included a new interactive way to power off your device with the "Slide to shut down your PC" gesture. That feature exists on Windows 10, but it's typically only enabled on tablets and Windows 10 Mobile devices when you press and hold the power button.
If you want to get the same shutdown experience on your laptop or desktop, you can quickly create a shortcut with the proper command to enable "Slide to shut down your PC" on Windows 10, even on non-touch screen devices.
In this Windows 10 guide, we'll walk you through the steps to add the slide to shut down gesture to your computer.

How to add Slide to shut down to your PC
  1. Right-click on an empty space on the desktop, select New, and click Shortcut.
  2. Copy and paste the following path:
    %windir%\System32\SlideToShutDown.exe
  3. Click Next.
  4. Enter a descriptive name for the shortcut (e.g., SlideShutdown).
  5. Click Finish to complete the task.
  6. Right-click the newly created shortcut and click on Properties.
  7. On the Shortcut tab, click the Change Icon button.
  8. Click OK to confirm that the path you specified doesn't contain icons.
  9. Select an icon that best describe the shutdown button.
  10. Click OK.
  11. Click Apply.
  12. Click OK again to complete the task.
Once you completed the steps, you'll end up with a shortcut that when you double-click will launch Slide to shut down your PC. Then you can simply use touch or click and drag with the mouse to the bottom of the screen to power off your device.
Additionally, you can right-click the shortcut and select "Pin to taskbar" for faster access to the shutdown experience using touch or mouse.
Quick Tip: When using keyboard and mouse, you can run the shortcut, and when Slide to shut down your PC appears, press Enter to power down your device.

Comments

Popular posts from this blog

Enable or Disable “Set Time (Zone) Automatically” in Windows 10 Using Registry Editor

Enable or Disable “Set Time (Zone) Automatically” in Windows 10 Using Registry Editor Press the Windows logo key + R to open the Run box. Type  regedit  and hit Enter. When the Registry Editor opens, navigate to the following key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters In the right pane you can see a string value named  Type . If you want Windows 10 to set time automatically, set its value data to  NTP . To disable automatic time synchronization, change its value to  NoSync . In order to enable or disable “Set Time Zone Automatically” in Windows 10, navigate to the following key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\tzautoupdate Double-click the 32-bit DWORD “ Start ” in the right pane. Set its value data to 3 if you want to make Windows 10 set time zone automatically. If you want to disable “Set Time Zone Automatically” in Windows 10, just set the value to 4. Reboot your computer for the registry changes to take ...

Find your Window licence key from inside Windows

Entering the following lines into an  admin Command Prompt  or PowerShell worked to display the OEM key embedded in our system's UEFI/BIOS. However, these commands didn't return any keys on other two machines we used for testing despite Windows 10 being activated. wmic path softwarelicensingservice get OA3xOriginalProductKey or powershell "(Get-WmiObject -query ‘select * from SoftwareLicensingService’).OA3xOriginalProductKey" There's also a commonly cited Visual Basic script that retrieves registry-based Windows keys (not those stored in the UEFI/BIOS). You can download the  script here . Copy this text and paste it into Notepad, saving it as a .vbs file. Then double-click to launch the file.