On this page you find all important commands for the CLI tool shutdown. If the
command you are looking for is missing please ask our AI.
shutdown
The "shutdown" command line tool is commonly used in operating systems like Windows, macOS, and Linux. It allows users to initiate the process of shutting down or rebooting their system.
- The basic syntax of the shutdown command usually includes the keyword "shutdown" followed by various options and arguments.
- Users typically need administrative or root privileges to execute this command successfully, as it has the potential to affect the entire system.
- The "shutdown" command offers a range of parameters to customize the shutdown process. For example, users can specify a delay before shutdown, provide a message to be displayed, or cancel a pending final shutdown.
- In addition to shutting down the system, this command can also be used to restart the system immediately or schedule a restart for a specific time.
- Some operating systems provide additional options like logging off the current user, putting the system into hibernation or sleep mode, or executing a specific script before shutdown.
- The shutdown command can be useful when managing multiple computers remotely, as it allows administrators to remotely shut down or reboot systems over a network.
- It is important to exercise caution while using this command, as a system shutdown or reboot can result in the loss of unsaved work or the disruption of ongoing processes.
List of commands for shutdown:
-
shutdown:tldr:002f0 shutdown: Reboot immediately.$ shutdown -r nowtry on your machineexplain this command
-
shutdown:tldr:2a057 shutdown: Reboot on May 10th 2042 at 11:30 am (Input format: YYMMDDHHMM).$ shutdown -r ${4205101130}try on your machineexplain this command
-
shutdown:tldr:31e08 shutdown: Sleep immediately.$ shutdown -s nowtry on your machineexplain this command
-
shutdown:tldr:3b50e shutdown: Shutdown a remote machine.$ shutdown /m ${\\hostname}try on your machineexplain this command
-
shutdown:tldr:3cab8 shutdown: Abort a shutdown sequence whose timeout is yet to expire.$ shutdown /atry on your machineexplain this command
-
shutdown:tldr:41728 shutdown: Reboot in 5 minutes.$ shutdown -r "+${5}"try on your machineexplain this command
-
shutdown:tldr:4f8d1 shutdown: Log off the current machine.$ shutdown /ltry on your machineexplain this command
-
shutdown:tldr:639f1 shutdown: Shutdown the current machine force-closing all apps.$ shutdown /s /ftry on your machineexplain this command
-
shutdown:tldr:95b83 shutdown: Cancel a pending shutdown/reboot operation.$ shutdown -ctry on your machineexplain this command
-
shutdown:tldr:9960d shutdown: Power off (halt) immediately.$ shutdown -h nowtry on your machineexplain this command
-
shutdown:tldr:a91e7 shutdown: Specify a timeout in seconds to wait before shutting down.$ shutdown /s /t ${8}try on your machineexplain this command
-
shutdown:tldr:b2539 shutdown: Reboot in 5 minutes.$ shutdown -r +${5} &try on your machineexplain this command
-
shutdown:tldr:d19fb shutdown: Power off (halt) at 1:00 pm (Uses 24h clock).$ shutdown -h ${1300}try on your machineexplain this command
-
shutdown:tldr:d8420 shutdown: Restart the current machine immediately.$ shutdown /r /t 0try on your machineexplain this command
-
shutdown:tldr:f86cb shutdown: Hibernate the current machine.$ shutdown /htry on your machineexplain this command
-
shutdown:tldr:f9e26 shutdown: Shutdown the current machine.$ shutdown /stry on your machineexplain this command
-
shutdown:tldr:fee49 shutdown: Shutdown at 1:00 pm (Uses 24h clock).$ shutdown -h 13:00try on your machineexplain this command