Monday, 19 April 2021

Yes, you can shut down and restart a computer or log off a Windows 10 user with Command Prompt, and in this guide, we'll show you how.

Although, on Windows 10, you can conveniently sign out, shut down, restart, or hibernate your computer from the Start menu or Lock screen, the system also includes the shutdown.exe tool that allows you to perform the same power operations through Command Prompt.

It is also a more powerful tool since, in addition to the common tasks, the command-line tool supports more advanced options, including the ability to record the reason for the event, display custom messages to the end-user, and even use the tool shut down and restart remote devices.

You can use this tool at any time. However, it will usually come in handy if you spend most of your time in the Command Prompt terminal, you need to create a script that involves restarting the computer, or you are making system changes, and you want to record a reason for the restart or shutdown event.

In this Windows 10 guide, we will walk you through the different ways you can use the shutdown.exe command-line tool to shut down and restart local and remote computers.

How to turn off computer with shutdown command

To shut down the computer manually with Command Prompt, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to gracefully shut down the device after one minute and press Enter:

    shutdown /s

  4. Type the following command to shut down the device after a specific time and press Enter:

    shutdown /s /t TIME

    In the command, replace TIME for the second to wait before the device begins the shutdown process.

    For example, this command turns off the computer after five seconds:

    shutdown /s /t 5

    Quick tip: You can also use "0" for the time for shutdown immediately. If the time is greater than zero, then the /f option will be applied automatically.

  5. Type the following command to shut down the computer without waiting or warning and press Enter:

    shutdown /p

  6. Type the following command to shut down, forcing all apps to close without warning, and press Enter:

    shutdown /s /f

Once you complete the steps, the computer will execute the shutdown process depending on your specified options.

Shut down specifying reason

To turn off the device recording a specific reason, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to include a reason for the shutdown and press Enter:

    shutdown /s /d p:MAJOR-NUMBER:MINOR-NUMBER

    In the command, change the MAJOR-NUMBER:MINOR-NUMBER for the numbers that represent the reason. You can find out all the available major and minor reason numbers by running the shutdown /? command.

    For example, this command shuts down the device, recording the "Operating System: Service pack (Planned)" reason:

    shutdown /s /t 1 /d p:2:16

    You can also switch the /s for the /r option if you want to specify a reason for the restart in the command. Here's how:

    shutdown /r /t 1 /d p:2:16

  4. Type the following command to power off the computer specifying a reason as unplanned and press Enter:

    shutdown /s /t 1 /d u:2:16

    The above command will shut down the device, recording the "Operating System: Service pack (Unplanned)" reason.

After you complete the steps, the Windows 10 device will shut down and log the specified reason.

You can always view the shutdown logs in Event Viewer > Windows Logs > System and look for the "Information" event with the User32 source and with the "Event ID" of 1074.

Shut down with custom dialog message

To shut down a computer showing a dialog message alerting the user of the action, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to shutdown device showing custom dialog message and press Enter:

    shutdown /s /t TIME /c "MESSAGE"

    In the command, replace TIME with the number of seconds before shutting down the computer, and replace MESSAGE with the custom text you want to display to the user.

    For example, this command displays the "Updating XYZ company app" before shutting down the computer after one minute:

    shutdown /s /t 60 /c "Updating XYZ company app."

    You can also switch the /s for the /r option if you want to show a message for the restart in the command. Here's how:

    shutdown /r /t 60 /c "Updating XYZ company app."

Once you complete the steps, Windows 10 will display the "Updating XYZ company app" message to the user and power off the computer after 60 seconds.

How to turn off remote computer with shutdown command

The shutdown command-line tool also allows you to turn off or restart a device remotely. However, the tool is limited, and you will be performing some extra steps to get it working.

Configure remote device

To set up the remote computer to allow remote command executions, use these steps:

Warning: This is a friendly reminder that editing the Registry is risky and can cause irreversible damage to your installation if you don't do it correctly. It's recommended to make a full backup of your PC before proceeding.

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to disable the User Account Control for remote executions and press Enter:

    reg add HKLM\Software\Microsoft\windows\CurrentVersion\Policies\system /v LocalAccountTokenFilterPolicy /t REG_DWORD /d 1 /f

After you complete the steps, the device will be open to receive commands remotely from authenticated users.

If you want to revert the changes to improve the device security, you can use the same instructions outlined above, but on step No. 3, make sure to run this command: reg add HKLM\Software\Microsoft\windows\CurrentVersion\Policies\system /v LocalAccountTokenFilterPolicy /t REG_DWORD /d 0 /f.

Shut down remote device

To use the Command Prompt to shut down a computer remotely, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to connect to the IPC$ share (or null session connection) and press Enter:

    net use \\REMOTE-PC\ipc$

    In the command, replace REMOTE-PC for the name or IP address of the remote computer.

    For example, this command connects to the Office-PC computer:

    net use \\Office-PC\ipc$

  4. Confirm the account name located in the remote device and press Enter.
  5. Confirm the account password and press Enter.
  6. Type the following command to restart the remote computer and press enter:

    shutdown /r /m \\REMOTE-PC /t TIME /c "COMMENT" /f

    In the command, replace REMOTE-PC for the name or IP address of the remote computer, TIME for the number of seconds to wait before beginning the shutdown process, and replace COMMENT for the custom dialog you want to send the user.

    For example, this command will notify the user, and forces a restart the device called "Office-PC" closing all application without warnings after one minute:

    shutdown /r /m \\Office-PC /t 60 /c "This PC will restart in one minute for maintenance." /f

    If no one is using the computer, you can send a command that restarts the device immediately. Here's an example:

    shutdown /r /m \\Office-PC /t 0 /f

Once you complete the steps, the remote host will power off according to the command configuration.

If you want to disconnect from the IPC$ share, run the following command: "net use * /delete" (without quotations) and press Y to confirm. If you plan to use this command, you may need to remap previously connected network drives.

How to restart computer with shutdown command

To restart a Windows 10 device with Command Prompt, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to restart the device and press Enter:

    shutdown /r

  4. Type the following command to restart the device after a specific time and press Enter:

    shutdown /r /t TIME

    In the command, replace TIME for the second to wait before the device begins the restart process.

    For example, this command restarts the computer after five seconds:

    shutdown /r /t 5

    Quick tip: You can also use "0" for the time to restart the device immediately.

  5. Type the following command to restart without waiting or warning and press Enter:

    shutdown /r /p

  6. Type the following command to shut down, forcing all apps to close without warning, and press Enter:

    shutdown /r /f

After you complete the steps, the computer will restart according to the options you specified in the command.

How to sign out session with shutdown command

The shutdown tool also includes an option to sign out a user, but it is only available for the local computer, and you can only sign out the current session. You cannot log off other users or someone on a remote device.

To log off of a Windows 10 account with Command Prompt, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to sign out the current account session and press Enter:

    shutdown /L

Once you complete the steps, the current user session will be signed out.

How to hibernate computer with shutdown command

To put the computer into a hibernate state with a command, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to hibernate the device and press Enter:

    shutdown /h

After you complete the steps, the device will enter into the hibernation state. However, this only works on devices that support the feature. You can use these steps to enable and configure hibernation on Windows 10.

How to boot in firmware mode with shutdown command

The command-line tool even includes an option to start the computer into the Unified Extensible Firmware Interface (UEFI) or Basic Input Output System (BIOS) firmware without the need for extra steps.

To start the device in the UEFI or BIOS interface, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to restart the device into the firmware and press Enter:

    shutdown /r /fw

  4. Type the following command to shut down the computer and boot into the firmware during the next startup and press Enter:

    shutdown /s /fw

    Alternatively, you can also use the /p instead of the /s option to close all running applications and force the shutdown without warning.

Once you complete the steps, the computer will boot into the firmware interface.

How to access the Advanced boot options with shutdown command

The "Advanced boot options" experience is the environment that includes various tools to troubleshoot and fix problems on Windows 10. Although you can use the Settings app or the USB flash drive to access these tools, you can also get into this experience with one shutdown command.

To start the computer in the Advanced boot options, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to restart the device into the Advanced boot options experience and press Enter:

    shutdown /r /o

  4. Type the following command to shut down the computer and start the Advanced boot options experience during the next startup and press Enter:

    shutdown /s /o

    Alternatively, you can also use the /p instead of the /s option to close all running applications and force the shutdown without warning.

After you complete the steps, the computer will start in the Advanced boot tools, allowing you to access recovery tools to troubleshoot and fix the installation.

How to abort computer power off operation with shutdown command

This option is only available when using the time-out option on a remote computer. If the computer is scheduled to shut down after a specific period, you can abort the process.

To abort a shutdown, use these steps:

  1. Open Start.
  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.
  3. Type the following command to abort the shutdown and press Enter:

    shutdown /a /m \\REMOTE-PC

    In the command, replace REMOTE-PC with the name or IP address of the remote computer.

    For example, this command aborts the shutdown action on the remote computer called Office-PC:

    shutdown /a /m \\Office-PC

In these steps, it is assumed you successfully ran the shutdown command, meaning that you went through the steps to configure the local computer and remote devices to allow the remote command execution (see above instructions).

We are focusing this guide on Windows 10, but the command-line tool has been available for a long time, which means you can refer to these instructions if you are still using Windows 8.x. Shutdown.exe is also available for Windows 7, but the options are limited. For example, the /o' and/hybrid are available starting Windows 8.

More Windows 10 resources

For more helpful articles, coverage, and answers to common questions about Windows 10, visit the following resources:



0 comments:

Post a Comment

ShortNewsWeb

Blog Archive

Categories

'The Woks of Life' Reminded Me to Cook With All the Flavors I Love (1) 10 Scary Podcasts to Listen to in the Dark (1) 13 of the Best Spooky Episodes From (Mostly) Un-Spooky Shows (1) 13 Spooky Movies Set on Halloween Night (1) 1Password Now Generates QR Codes to Share Wifi Passwords (1) 2024 (15) 21 Thanksgiving Movies About Families As Screwed-Up As Yours (1) 30 Movies and TV Shows That Are Basically 'Competence Porn' (1) 30 of the Most Obscenely Patriotic Movies Ever (1) 31 Spooky Movies to Watch Throughout October (1) 40 Netflix Original Series You Should Watch (1) 55 Box Office Bombs Totally Worth Watching (1) Active Directory (1) Adobe's AI Video Generator Might Be as Good as OpenAI's (1) AIX (1) and I'd Do It Again (1) and Max Bundle Isn't a Terrible Deal (1) Apache (2) Apple Intelligence Is Running Late (1) Apple Intelligence's Instructions Reveal How Apple Is Directing Its New AI (1) August 18 (1) August 4 (1) August 5 (1) Avoid an Allergic Reaction by Testing Your Halloween Makeup Now (1) Backup & Restore (2) best practices (1) bleepingcomputer (63) Blink Security Cameras Are up to 68% Off Ahead of Prime Day (1) CentOS (1) Configure PowerPath on Solaris (1) Documents (2) Don't Fall for This 'New' Google AI Scam (1) Don't Rely on a 'Monte Carlo' Retirement Analysis (1) Eight Cleaning Products TikTok Absolutely Loves (1) Eight of the Best Methods for Studying so You Actually Retain the Information (1) Eight Unexpected Ways a Restaurant Can Mislead You (1) Elevate Your Boring Store-Bought Pretzels With This Simple Seasoning Technique (1) Everything Announced at Apple's iPhone 16 Event (1) file system (6) Find (1) Find a Nearby ‘Gleaning Market’ to Save Money on Groceries (1) Five Red Flags to Look for in Any Restaurant (1) Five Ways You Can Lose Your Social Security Benefits (1) Flappy Bird's Creator Has Nothing to Do With Its 'Remake' (1) Four Reasons to Walk Out of a Job Interview (1) Four Signs Thieves Are Casing Your House (1) gaming (1) Goldfish Crackers Have a New Name (for a Little While) (1) Hackers Now Have Access to 10 Billion Stolen Passwords (1) How I Finally Organized My Closet With a Digital Inventory System (1) How I Pack Up a Hotel Room So I Don’t Forget Anything (1) How to Cancel Your Amazon Prime Membership After Prime Day Is Over (1) How to Choose the Best Weightlifting Straps for Your Workout (1) How to Enable (and Turn Off) Apple Intelligence on an iPhone (1) How to Keep Squirrels Off Your Bird Feeders (1) How to Remotely Control Another iPhone or Mac Using FaceTime (1) How to Set Up Your Bedroom Like a Hotel Room (and Why You Should) (1) How to Take a Screenshot on a Mac (1) How to Take Full Control of Your Notifications on a Chromebook (1) Hulu (1) I Chose the Beats Fit Pro Over the AirPods Pro (1) If You Got a Package You Didn't Order (1) If You Hate Running (1) Important Questions (17) Install and Configure PowerPath (1) interview questions for linux (2) Is ‘Ultra-Processed’ Food Really That Bad for You? (1) Is Amazon Prime Really Worth It? (1) It Might Be a Scam (1) July 14 (1) July 21 (1) July 28 (1) July 7 (1) June 30 (1) LifeHacker (132) Linux (36) Make and Freeze Some Roux Now for Easy Turkey Gravy (1) Meta Releases Largest Open-Source AI Model Yet (1) Monitoring (3) music (688) My Favorite 14TB Hard Drive Is 25% Off Right Now (1) My Favorite Amazon Deal of the Day: Apple AirPods Max (2) My Favorite Amazon Deal of the Day: Apple Pencil Pro (1) My Favorite Amazon Deal of the Day: Google Nest Mesh WiFi Router (1) My Favorite Amazon Deal of the Day: Google Pixel 8 (1) My Favorite Amazon Deal of the Day: PlayStation 5 (1) My Favorite Amazon Deal of the Day: Samsung Odyssey G9 Gaming Monitor (1) My Favorite Amazon Deal of the Day: SHOKZ OpenMove Bone Conduction Headphones (1) My Favorite Amazon Deal of the Day: The 13-Inch M3 Apple MacBook Air (1) My Favorite Amazon Deal of the Day: These Bose QuietComfort Headphones (1) My Favorite Tools for Managing Cords and Cables (1) Nagios (2) Newtorking (1) NFS (1) OMG! Ubuntu! (688) Oracle Linux (1) oracleasm (3) osnews (26) Password less communication (1) Patching (2) Poaching Is the Secret to Perfect Corn on the Cob (1) powerpath (1) Prioritize Your To-Do List By Imagining Rocks in a Jar (1) Red Hat Exam (1) register (66) Rsync (1) Safari’s ‘Distraction Control’ Will Help You Banish (Some) Pop Ups (1) Samba (1) Scrcpy (1) September 1 (1) September 15 (1) September 2 (1) September 22 (1) September 23 (1) September 30 (1) September 8 (1) Seven Home 'Upgrades' That Aren’t Worth the Money (1) Seven Things Your Credit Card’s Trip Protection Won’t Actually Cover (1) ssh (1) Swift Shift Is the Window Management Tool Apple Should Have Built (1) System hardening (1) Tailor Your iPhone's Fitness Summary to Your Workouts (1) Target’s ‘Circle Week’ Sale Is Still Going After October Prime Day (1) Target’s Answer to Prime Day Starts July 7 (1) Tech (9544) Tech CENTRAL (23) Technical stories (126) technpina (7) The 30 Best Movies of the 2020s so Far (and Where to Watch Them) (1) The 30 Best Sports Movies You Can Stream Right Now (1) The Best Deals on Robot Vacuums for Amazon’s Early Prime Day Sale (2) The Best Deals on Ryobi Tools During Home Depot's Labor Day Sale (1) The Best Early Prime Day Sales on Power Tools (1) The Best Movies and TV Shows to Watch on Netflix This Month (1) The Best October Prime Day Deals If You Are Experiencing Overwhelming Existential Dread (1) The Best Places to Go When You Don't Want to Be Around Kids (1) The Best Strategies for Lowering Your Credit Card Interest Rate (1) The Best Ways to Store All Your Bags and Purses (1) The Latest watchOS Beta Is Breaking Apple Watches (1) The New Disney+ (1) The Two Best Times of Year to Look for a New Job (1) These Meatball Shots Are My Favorite Football Season Snack (1) These Milwaukee Tools Are up to 69% off Right Now (1) This 2024 Sony Bravia Mini-LED TV Is $400 Off Right Now (1) This Google Nest Pro Is 30% Off for Prime Day (1) This Peanut Butter Latte Isn’t As Weird As It Sounds (1) This Tech Brand Will Get the Biggest Discounts During Prime Day (1) Three Quick Ways to Shorten a Necklace (1) Three Services People Don't Know They Can Get From Their Bank for Free (1) Today’s Wordle Hints (and Answer) for Monday (4) Today’s Wordle Hints (and Answer) for Sunday (11) Try 'Pile Cleaning' When Your Mess Is Overwhelming (1) Try 'Pomodoro 2.0' to Focus on Deep Work (1) Try 'Rucking' (1) Ubuntu News (346) Ubuntu! (1) Unix (1) Use This App to Sync Apple Reminders With Your iPhone Calendar (1) Use This Extension to Find All Your X Followers on Bluesky (1) veritas (2) Videos (1) Was ChatGPT Really Starting Conversations With Users? (1) Watch Out for These Red Flags in a Realtor Contract (1) Wayfair Is Having a '72-Hour Closeout' Sale to Compete With Prime Day (1) We Now Know When Google Will Roll Out Android 15 (1) What Is the 'Die With Zero' Movement (and Is It Right for You)? (1) What Not to Do When Training for a Marathon (1) What to Do When Your Employer Shifts Your Pay From Salary to Hourly (1) What to Look for (and Avoid) When Selecting a Pumpkin (1) What to Wear to Run in the Cold (1) What's New on Prime Video and Freevee in September 2024 (1) Why You Can't Subscribe to Disney+ and Hulu Through Apple Anymore (1) Why Your Home Gym Needs Adjustable Kettlebells (1) Windows (5) You Can Easily Add Words to Your Mac's Dictionary (1) You Can Get 'World War Z' on Sale for $19 Right Now (1) You Can Get a Membership to BJ's for Practically Free Right Now (1) You Can Get Beats Studio Buds+ on Sale for $100 Right Now (1) You Can Get Microsoft Visio 2021 Pro on Sale for $20 Right Now (1) You Can Get This 12-Port USB-C Hub on Sale for $90 Right Now (1) You Can Get This Roomba E5 Robot Vacuum on Sale for $170 Right Now (1) You Can Hire Your Own Personal HR Department (1) You Can Search Through Your ChatGPT Conversation History Now (1) You Can Set Different Scrolling Directions for Your Mac’s Mouse and Trackpad (1)

Recent Comments

Popular Posts

Translate

My Blog List

Popular

System Admin Share

Total Pageviews