Software:Shutdown (computing)
To shut down or power off a computer is to remove power from a computer's main components in a controlled way. After a computer is shut down, main components such as CPUs, RAM modules and hard disk drives are powered down, although some internal components, such as an internal clock, may retain power.
Implementations
The shutdown feature and command is available in Microsoft Windows,[1] ReactOS,[2] HP MPE/iX,[3] and in a number of Unix and Unix-like operating systems such as Apple macOS.
Microsoft Windows and ReactOS
In Microsoft Windows and ReactOS, a PC or server is shut down by selecting the Shutdown item from the Start menu on the desktop. Options include shutting down the system and powering off, automatically restarting the system after shutting down, or putting the system into stand-by mode.
Just like other operating systems, Windows has the option to prohibit selected users from shutting down a computer. On a home PC, every user may have the shutdown option, but in computers on large networks (such as Active Directory), an administrator can revoke the access rights of selected users to shut down a Windows computer. Nowadays there are many software utilities which can automate the task of shutting down a Windows computer, enabling automatic computer control. The Windows Shutdown website lists various software utilities to automate the task of shutting down.
In Windows, a program can shut down the system by calling the ExitWindowsEx
or NtShutdownSystem
function.[4]
Command-line interface
The shutdown command on Windows 10 | |
Developer(s) | Microsoft, ReactOS Contributors |
---|---|
Operating system | Windows, ReactOS |
Type | Command |
License | Windows: Proprietary commercial software ReactOS: GNU General Public License |
Website | docs |
There is also a shutdown
command that can be executed within a command shell window. shutdown.exe
is the command-line shutdown application (located in %windir%\System32\shutdown.exe)[5] that can shut down the user's computer or another computer on the user's network. Different parameters allow different functions. More than one parameter can be used at a time for this command.[6]
Parameter | Function |
---|---|
-l | Logs off a user. This is the default even without using any parameters. |
-a | Stops shutdown.exe. It is used during a time-out period. |
-f | Kills all running applications. |
-s | Turns off the computer. |
-r | Shuts down and reboots a computer. |
-m[\\ Computer Name] | When shutting down a network computer, allows user to choose
which computer to turn off. |
-t xx | Timer before shut down occurs.
By default it is set to 30 seconds. |
-c "message" | Allows a message to be shown in the System Shutdown window.
It can not be more than 127 characters. |
Apple macOS
In Apple macOS the computer can be shut down by choosing "Shut Down…" from the Apple Menu, by pressing key/button (or key), or by pressing the power key to bring up the power management dialog box and selecting button "Shut down". An administrator may also use the Unix shutdown
command as well.[7] It can also be shut down by pressing key/button (or key) or clicking Shut Down on the Apple Menu while holding the key, but this will not prompt the user anything at all.[8] On newer and some older Apple computers, starting with Mac OS 9, the user is given a time limit in which the computer will automatically shut down if the user does not click the "Shut Down" button.
Unix and Linux
Original author(s) | Scott James Remnant |
---|---|
Developer(s) | Canonical |
Operating system | Unix-like |
Type | Command |
In Unix and Linux, the shutdown
command can be used to turn off or reboot a computer. Only the superuser can shut the system down.
One commonly issued form of this command is shutdown -h now
, which will shut down a system immediately. Another one is shutdown -r now
to reboot. Another form allows the user to specify an exact time or a delay before shutdown: shutdown -h 20:00
will turn the computer off at 8:00 PM, and shutdown -r +1
will automatically reboot the machine in one minute of issuing the command.[9]
See also
- Booting
- Hibernation
- Sleep mode
- Ctrl+Alt+Del
References
- ↑ Shutdown | Microsoft Docs
- ↑ "Reactos/Reactos". 26 October 2021. https://github.com/reactos/reactos/blob/master/base/applications/shutdown/shutdown.c.
- ↑ MPE/iX Commands Reference Manual – HP 3000 MPE/iX Computer Systems – Edition 11
- ↑ "NtShutdownSystem". 2001-02-25. http://undocumented.ntinternals.net/source/usermode/undocumented%20functions/hardware/ntshutdownsystem.html.
- ↑ "Shut down Windows 10 with just one click (or two)" (in en). CNET. https://www.cnet.com/how-to/how-to-quickly-shut-down-windows-10/.
- ↑ "Shutdown" (in en). 11 September 2009. https://technet.microsoft.com/en-us/library/bb491003.aspx.
- ↑ Darwin and macOS System Manager's Manual –
- ↑ "Mac keyboard shortcuts" (in en). https://support.apple.com/en-hk/HT201236.
- ↑ Linux Administration and Privileged Commands Manual –
Further reading
- Spolsky, Joel (21 November 2006). "Choices = Headaches". Joel on Software. http://www.joelonsoftware.com/items/2006/11/21.html.
- Stanek, William R. (2008). Windows Command-Line Administrator's Pocket Consultant, 2nd Edition. Microsoft Press. ISBN 978-0735622623.
- John Paul Mueller (2010). Windows Command Line Administration Instant Reference. Sybex. ISBN 978-0470650462.
- Barrett, Daniel J. (2012). Macintosh Terminal Pocket Guide: Take Command of Your Mac. O'Reilly. ISBN 978-1449328986.
External links
- shutdown | Microsoft Docs
- shutdown.cc – an article about various ways of automated and manual shutting down of Microsoft Windows
Original source: https://en.wikipedia.org/wiki/Shutdown (computing).
Read more |