Introduction
Windows Server 2016 is a powerful server operating system that is used by many businesses and organizations. It is important to know how to restart Windows Server 2016 in order to keep your system running smoothly. This guide will provide you with the reboot commands necessary to restart Windows Server 2016. It will also provide you with information on how to troubleshoot any issues that may arise during the restart process. With this knowledge, you will be able to keep your Windows Server 2016 system running optimally.
How to Restart Windows Server 2016 – Reboot Commands
1. Using the Start Menu:
a. Click the Start button in the lower left corner of the screen.
b. Select the Power button.
c. Select Restart.
2. Using the Command Prompt:
a. Open the Command Prompt by typing “cmd” in the search box.
b. Type “shutdown /r” and press Enter.
3. Using PowerShell:
a. Open PowerShell by typing “powershell” in the search box.
b. Type “Restart-Computer” and press Enter.
Introduction
When a Windows server runs for an extended period of time, applications and operating system features can become unstable.
An unstable operating system might have application crashes, hanging applications, or memory leaks. Sometimes even essential system functions become unresponsive.
A straightforward solution is to restart. This guide will walk you through how to restart Windows Server 2016 with multiple command options.
Prerequisites
- A system running Windows Server 2016
- Command-line access
- (optional) a remote server connection
- (optional) Graphical User Interface installed
- (optional) Windows PowerShell
Using the Windows Server Restart Command
Restart Windows Server with the GUI
The Windows Server 2016 interface is a GUI, or Graphical User Interface, which simplifies many tasks.
Click the Start menu > Power button > Restart.
How to Restart Windows Server Using Command Prompt
In some cases, you may not have the GUI component installed. Or, your operating system encountered a problem, and all you can access is a command prompt.
Step 1: Open the Command Prompt
1. Press Ctrl+Alt+Del.
2. The system should present a menu – click Task Manager.
3. In the Task Manager window, click More Details.
4. Click the File menu, then click Run new task.
5. In the field, type cmd.exe– then check the box to create the task with administrator privileges. Click OK.
6. A black window with white text should appear.
Step 2: Reboot the Windows Server Operating System
In the Command Prompt window, type the Windows Server restart command, then press Enter:
shutdown –r
The –r
option tells Windows to restart, instead of simply shutting down.
Restarting from PowerShell
Windows PowerShell is like a souped-up version of the command prompt. It’s based on the .NET framework, and includes a scripting language. PowerShell is useful for tinkering under the hood of your Windows operating system.
Step 1: Launch PowerShell
1. Press Ctrl+Shift+Esc to launch the Task Manager.
2. Click the File menu, then Run new task.
3. In the prompt, type powershell.exe and tick the box to start with administrator privileges. Click OK.
4. A new window with a dark blue background should launch. You can tell you’re in a PowerShell window if the prompt begins with PS.
Step 2: Restart the System
In the PowerShell window, type the following command and press Enter:
Restart-Computer
By default, you’ll get a 5-second countdown, then the system will restart.
You can add an option to delay the restart for longer than the default 5 seconds:
Restart-Computer –delay 15
Change the number 15 to the number of seconds you wish to delay.
Rebooting a Remote Windows Server with PowerShell
Step 1: Launch PowerShell
If you are in a command prompt enter the command:
PowerShell
The prompt will add PS at the beginning, and your typed commands should appear in yellow.
Step 2: Restart Remotely
In the PowerShell window, type the following:
Restart-Computer –ComputerName “NAME_OF_SYSTEM”
Replace NAME_OF_SYSTEM with the name of the computer you want to restart. Make sure to include the quotation marks.
Note: This assumes that your current credentials are the same as those for the remote system. Typically this might look like a username of an administrator, and the same password for both systems. It can also work if both systems are on the same domain, and your user account has the appropriate permissions.
Conclusion
Restarting a Windows server is very simple, especially via the GUI.
However, even if you are having issues with the GUI or need to restart a server remotely – this guide on How to Restart Windows Server 2016 can help.
How to Restart Windows Server 2016 – Reboot Commands
Restarting Windows Server 2016 is a straightforward process. Whether you need to reboot the server for maintenance or troubleshooting purposes, the process is the same. Here are the steps to restart Windows Server 2016.
Using the GUI
The easiest way to restart Windows Server 2016 is to use the graphical user interface (GUI). To do this, open the Start menu and select the Power button. Then, select the Restart option.
Using the Command Line
You can also restart Windows Server 2016 using the command line. To do this, open a command prompt window and type the following command:
shutdown /r
This command will immediately restart the server. If you want to delay the restart, you can use the following command:
shutdown /r /t [seconds]
Replace [seconds] with the number of seconds you want to delay the restart. For example, if you want to delay the restart for 10 minutes, you would use the following command:
shutdown /r /t 600
Using PowerShell
You can also restart Windows Server 2016 using PowerShell. To do this, open a PowerShell window and type the following command:
Restart-Computer
This command will immediately restart the server. If you want to delay the restart, you can use the following command:
Restart-Computer -Delay [seconds]
Replace [seconds] with the number of seconds you want to delay the restart. For example, if you want to delay the restart for 10 minutes, you would use the following command:
Restart-Computer -Delay 600
Conclusion
Restarting Windows Server 2016 is a simple process. Whether you use the GUI, the command line, or PowerShell, the process is the same. Just follow the steps outlined above and you’ll be able to restart your server in no time.