Windows command prompt restart command

on April 21, 2009

We can reboot a Windows computer from command line using the in-built shutdown command.  Below you can find syntax of this command for various use cases. The below commands work on Windows 7, Windows 8, Windows 10 and all other server editions.

Command to reboot windows computer

shutdown /r

The above command will set a time out of 30 seconds to close the applications. After 30 seconds, windows reboot will start.

If you want to reboot Windows with your own time out value you can use the below command.

shutdown /r /t timeout_in_seconds

To shutdown a Windows computer

shutdown /s

To abort computer reboot

If you have issued a reboot command and have changed mind, you can stop Windows reboot by running the below command.

shutdown /a

When you run this, you would see a pop up window at the right bottom part of the screen(near system tray) that shows the message “The scheduled shutdown has been cancelled”.

To force reboot by closing applications without warning

shutdown /r /f

Open the shutdown GUI

shutdown /i

Add reason for the reboot of the computer

shutdown /r /c "This is the reason for the reboot of the computer"

Reboot Windows using WMIC commands:

Reboot windows using WMIC

You can run the below wmic command to reboot Windows OS.

wmic os where Primary='TRUE' reboot

Related Posts:
Reboot a remote computer

Several commands are available in Windows that allow you to shutdown or restart a local or remote computer. In this article, we’ll look at how to use the shutdown command and the PowerShell cmdlets Restart-Computer and Stop-Computer to shutdown/restart Windows.

Contents:

  • Using the Shutdown Command on Windows
  • How to Shutdown or Restart a Remote Windows Computer?
  • Restart or Shutdown Windows with PowerShell

Using the Shutdown Command on Windows

The Shutdown.exe is a built-in Windows command line tool that allows to reboot, shutdown, put your computer to sleep, hibernate, or end a user session. In this guide, we’ll show the basic examples of using the shutdown command in Windows. All commands discussed above are run in the Run dialog box — Win+R ->, in the command prompt (cmd.exe) or in PowerShell.

The shutdown command has the following syntax: shutdown [/i | /l | /s | /r | /g | /a | /p | /h | /e | /o] [/hybrid] [/soft] [/fw] [/f] [/m \\computer][/t xxx][/d [p|u:]xx:yy [/c "comment"]]
The shutdown.exe command in Windows

As you can see, the command has quite a lot of options and can be used to shutdown/restart a local or remote computer.

How to shutdown windows from the command prompt?

To shutdown Windows, use the shutdown command with the /s key.

shutdown /s

Reboot Windows from the CMD

In order to reboot your computer, use the /r parameter. After running it, Windows will be will gracefully restarted.

shutdown /r

shutdown /r -reboot windows from cmd

End a User Session

To end the current user session (logoff), run this command

shutdown /l

shutdown /l - logoff current user

This command works in the same way as logoff.exe command.

How to hibernate Windows using the shutdown command?

To hibernate your computer, run this command:

shutdown /h

In the hibernate mode, all the contents of memory are written to the hiberfil.sys file on the local disk and the computer goes into sleep mode with reduced power consumption.

Notify logged-in users of an impending reboot or shutdown

You can notify all logged-on Windows users about the upcoming shutdown/reboot of the computer or server by sending a pop-up message to all active sessions. As a rule, this feature is used on RDS servers with several users working on them at the same time in their own RDP sessions.

shutdown /r /c “This server will be restarted in 60 seconds.”

Delayed shutdown/reboot of a computer using the timer

You can shutdown or restart the computer with a certain delay (on a timer). Using the /t option, you can specify the time span after which the computer/server will be shutdown or rebooted. Thus you can provide your users some time to save open files and close the apps correctly. It is convenient to use this option together with the notification message. In this example, we inform the users that Windows will be shutdown in 10 minutes (600 seconds).

shutdown /s /t 600 /c "The server will be shutdown in 10 minutes. Save your work!"

A user will be warned about the scheduled shutdown:

You’re about to be signed out

windows shutdown command - You’re about to be signed out. Your Windows will shut down in 10 minutes

If the delay is too long (for example, 60 minutes/3,600 seconds), a pop-up window appears in the lower right corner of the screen:

You’re about to be signed out. Your Windows will shutdown in 100 minutes.

You’re about to be signed out. Your Windows will shut down in 100 minutes

How to stop/cancel/abort system shutdown in Windows

Windows waits 60 seconds by default without doing anything after running shutdown or reboot command.  An administrator can cancel the restart or shutdown of the device by running this command during this time:

shutdown /a

After you cancel the shutdown, you’ll see the following pop-up message in the lower right corner of the screen:

Logoff is cancelled. The scheduled shutdown has been cancelled.

Logoff is cancelled. The scheduled shutdown has been cancelled

Restart Windows immediately

To shutdown or reboot a computer immediately without waiting for 60 seconds, specify 0 as a value of the /t parameter. For example:

shutdown /r /t 0

The /f key is very important. I use it almost always when shutting down or restarting Windows Server hosts. This attribute allows to force close all running programs and processes without waiting for confirmation from the user (we won’t wait till the users confirm closing all applications on the RDS server since we can never get it).

The next command will restart the computer and automatically run all registered apps after reboot (apps registered in the system using RegisterApplicationRestart API are meant here).

shutdown /g

Create a restart shortcut on Windows Desktop

To make it more convenient for users, you can create a desktop shortcut to restart or shutdown a computer with the required parameters. Such a shortcut may be useful when you need to restart the computer from the RDP session when there are no options to restart or shutdown the computer in the Start menu.

shutdown shortcut

How to restart Windows at a specific time (on schedule)?

If you want your computer or server to restart/shutdown at a specific time, you can add the shutdown command with the parameters to Windows Task Scheduler (taskschd.msc).

For example, this Scheduler task will restart the computer daily at 12 AM.

shedule a shutdown task

Or you can create a new Scheduler task with PowerShell:

$Trigger= New-ScheduledTaskTrigger -At 00:00am -Daily
$User= "NT AUTHORITY\SYSTEM"
$Action= New-ScheduledTaskAction -Execute "shutdown.exe" -Argument "–f –r –t 120"
Register-ScheduledTask -TaskName "RebootEvertyNight_PS" -Trigger $Trigger -User $User -Action $Action -RunLevel Highest –Force

How to Shutdown or Restart a Remote Windows Computer?

You can use the shutdown.exe command to reboot a remote computer. To do this, the remote computer must be accessible over the network, and the account u you are using must be a member of the local Administrators group on the remote computer (server):

shutdown /r /t 120 /m \\192.168.1.210

shutdown remote windows host

If all the conditions described above are met, but when running the shutdown command the error “Access denied (5)” appears, you need to allow remote access to the administrative shares (C$, ADMIN$) on the remote computer by changing the value of LocalAccountTokenFilterPolicy parameter to 1.

reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "LocalAccountTokenFilterPolicy" /t REG_DWORD /d 1 /f

If you need to provide user credentials to connect to a remote computer, you can use the commands:

net use \\192.168.13.111 /u:corp\username
shutdown /s /t 60 /f /m \\192.168.13.111

If you need to restart multiple computers remotely, you can save the list of computers to a text file, and start a remote reboot of all computers using a simple PowerShell script:

$sh_msg = "Your computer will be automatically restarted in 10 minutes. Save your files and close running apps"
$sh_delay = 600 # seconds
$computers = gc C:\PS\PC-list.txt
foreach ($comp in $computers)
{
& 'C:\Windows\System32\SHUTDOWN.exe' "-m \\$comp -r -c $sh_msg -t $sh_delay"
}

Restart multiple computers with a Shutdowm.exe GUI

For those who don’t feel comfortable working in the command prompt, there is a graphical interface for the shutdown.exe command. To call the Remote Shutdown Dialog GUI, use the command:

shutdown /i

remote shutdown GIU dialog

As you can see, you can add multiple computers in the remote shutdown dialog to be rebooted/shutdown, specify the notification text and specify the reason for the shutdown to be saved in the Windows event log.

Restart or Shutdown Windows with PowerShell

The following two commands are available in Windows PowerShell to shutdown and reboot the computer: Restart-Computer and Stop-Computer. Both commands allow you to shutdown or restart a local or remote computer (over the network).

powershell restart-computer cmdlet

To restart Windows, run:

Restart-Computer -force

To shutdown your computer:

Stop-Computer

By default, the reboot will start in 5 seconds. You can increase the delay before reboot:

Restart-Computer –Delay 60

Both cmdlets have a -ComputerName parameter that allows you to specify a list of remote computers to perform the action on.

For example, to shutdown two Windows servers remotely:

Stop-Computer -ComputerName "mun-srv01", "mun-srv02"

You can specify administrator credentials to connect to a remote host:

$Creds = Get-Credential
Restart-Computer -ComputerName mun-srv01-Credential $Creds

WMI and DCOM are used to connect to remote computers (they must be enabled and configured). If WMI is not configured, the following error will appear when running the command:

Restart-Computer : Failed to restart the computer wks-11222  with the following error message:
Access is denied.
Exception from HRESULT: 0x80070005 (E_ACCESSDENIED).

restart-computer: access is denied 0x80070005

If WinRM (Windows Remote Management) is enabled on the remote computer, you can use WSman instead of WMI to connect:

Restart-Computer -ComputerName wks-11222 -Protocol WSMan

If there are active user sessions on the remote computer, an error will appear:

Restart-Computer : Failed to restart the computer wks-11222  with the following error message:
The system shutdown cannot be initiated because there are other users logged on to the computer.

Restart-Computer : Failed to restart the computer The system shutdown cannot be initiated because there are other users logged on to the computer

To force a reboot, you need to add the -Force parameter:

Restart-Computer -ComputerName wks-11222 –Force

You can use the -For option to restart your computer and wait until it becomes available. For example, you want to make sure that the remote computer reboots successfully and the WinRM service is started on it, allowing you to connect to it through WS-Management:

Restart-Computer -ComputerName wks-11222 -Wait -For WinRM

Restarting computer wks-11222
Verifying that the computer has been restarted.

check that the remote computer restarted

You can wait for the Remote Desktop Service (RDP) or any other Windows service to start:

Restart-Computer -ComputerName wks-11222 -Wait -For TermService

If you need to restart multiple computers at the same time, you can use the parallel command execution available in PowerShell 7.x (see how to update PowerShell).

For example, you can get a list of Windows Servers hosts in a specific Active Directory container (Organizational Unit) using the Get-ADComputer cmdlet and restart them at the same time:

$Computers = (Get-ADComputer -Filter 'operatingsystem -like "*Windows server*" -and enabled -eq "true"' -SearchBase "OU=Servers,DC=woshub,DC=com").Name
$Computers | ForEach-Object -Parallel {    Restart-Computer -ComputerName $_ -Force} -ThrottleLimit 3

The shutdown command-line tool to restart Windows and Restart-Computer cmdlet in PowerShell is used to restart windows or reboot the windows without any GUI tool.

Windows administrators periodically need to reboot computers, remote computers. Using command line restart or PowerShell Restart-Computer remotely without scripting.

In this blog post, we will discuss how to restart or reboot the Windows operating system using the command line (cmd) or PowerShell.

Restart Windows with Shutdown Command Prompt

One of the easiest ways to restart or reboot your Windows computer is through Command Prompt Shutdown command-line tool.

To restart the Windows operating system with shutdown command in Command Prompt, use these steps:

  • Click on the Search icon in the Windows taskbar
  • Enter cmd in the search field
  • Click on the Open menu

You can use the “Run as Administrator” option to open a command prompt in administrator privileges.

cmd restart/reboot windows with Shutdown /r command
cmd restart/reboot windows with Shutdown /r command
  • Use the following command to restart the computer
shutdown /r
  • Press Enter

Use the shutdown /r cmd command to restart computer.

After you complete the above steps, the computer will reboot.

Cool Tip: How to get a list of PowerShell Modules!

Shutdown /r command-line tool restart windows after 1-minute delay as default timer.

Use the /t parameter to specify the immediate reboot of the windows using the below command

shutdown /r /t 0

In the above command,

shutdown /r /t 0 specify to restart the windows after 0 seconds ( immediately)

If you want to cmd reboot computer after 30 seconds or after specific seconds interval time, use /t parameter to specify reboot timer in seconds as given below

shutdown /r /t 30

The above command will restart the computer after 30 seconds.

Cool Tip: How to get the last boot time of the computer using PowerShell!

Restart Remote Computer using Command Prompt

You can use the Shutdown /r /m command-line tool to restart the remote computers using the command prompt.

/m parameter in shutdown command specify remote machine name.

Use the below command to reboot the remote computer using cmd

shutdown /r /m \\SHELL-PC101 /t 60

The above command will restart the remote machine name SHELL-PC101 after 60 seconds delay.

You can force a restart of the remote computer with comments for the target machine using the below command

shutdown /r /m \\SHELL-PC101 /t 60 /c "Please save all of your documents"

In the above command,

It will display a standard windows dialog box on a remote machine with messages as

“You are about to sign out” and followed by “Please save all of your documents”

Shutdown cmd will reboot the remote computer after 60 seconds delay.

Cool Tip: How to use test-connection to ping a list of computers!

Restart Windows with Restart-Computer PowerShell Command

Restart-Computer PowerShell command is used to restart local or remote computers.

To reboot the local computer using PowerShell restart-computer command, use these steps:

  • Click on the Search icon in the Windows taskbar
  • Enter cmd in the search field
  • Click on the Open menu

You can use the “Run as Administrator” option to open a command prompt in administrator privileges.

Restart computer via PowerShell
Restart computer via PowerShell

Type the below command to restart the computer using PowerShell

Restart-Computer

Restart-Computer cmdlet in PowerShell reboots the local computer.

Cool Tip: Event Id 1074 – System restart or shutdown!

How to Restart Remote Computer using PowerShell?

Use Restart-Computer cmdlet in PowerShell to restart one or more remote computers as given below

Restart-Computer -ComputerName SHELL-PC01, SHELL-PC02, localhost

In the above PowerShell script to restart multiple remote computers,

Restart-Computer cmdlet has the ComputerName parameter. We have specified multiple remote computer names to reboot using the command.

Cool Tip: How to use mkdir to create a directory!

Conclusion

I hope the above article is helpful to understand different ways to restart windows or reboot windows using command prompt and using PowerShell.

Shutdown /r command-line is used to restart/reboot local or a remote computer using a command prompt.

You can use /t parameter to delay the reboot of the computer let’s say 30 seconds delay, use /t 30

Restart-Computer cmdlet in PowerShell is used to reboot local or remote computers. You can use the -force parameter to forcefully reboot the computer.

You can find more topics about PowerShell Active Directory commands and PowerShell basics on the ShellGeek home page.

В Windows доступно несколько команд, которые позволяют выключить или перезагрузить локальный или удаленный компьютер. В этой статье мы рассмотрим, как использовать команду shutdown и PowerShell командлеты Restart-Computer и Stop-Computer для выключения/перезагрузки Windows.

Содержание:

  • Использование команды shutdown в Windows
  • Перезагрузка удаленных компьютеров командой shutdown
  • Перезагрузка и выключение Windows с помощью PowerShell

Использование команды shutdown в Windows

Утилита командной строки shutdown является встроенной командой Windows, которая позволяет перезагрузить, выключить компьютер, перевести его в спящий режим или завершить сеанс пользователя. В этой инструкции мы покажем основные примеры использования команды shutdown в Windows (все рассмотренные команды запускаются в окне Выполнить — Win+R ->, в командной строке cmd.exe или в консоли PowerShell).

Команда shutdown имеет следующий синтаксис:

shutdown [/i | /l | /s | /sg | /r | /g | /a | /p | /h | /e | /o] [/hybrid] [/soft] [/fw] [/f] [/m \\компьютер][/t xxx][/d [p|u]xx:yy [/c "комментарий"]]

команда shutdown синтаксис

Как вы видите, у команды довольно много опций, а также есть возможность выключить/ перезагрузить удаленный компьютере.

Выключение Windows командой Shutdown

Для выключения ОС Windows и компьютера необходимо использовать команду shutdown с ключом /s.

shutdown /s

Перезагрузка Windows

Чтобы перезагрузить компьютер, необходимо добавить параметр /r. После выполнения этой команды Windows корректно перезагрузится.

shutdown /r

shutdown /r - перезагрузка компьютера

Завершение сеанса пользователя

Чтобы завершить текущую сессию пользователя (logout), нужно выполнить команду:

shutdown /l

shutdown /l завершение сенаса пользоватеоя

Эта команда аналогично выполнению команды logoff.

Перевод компьютера в режим гибернации

Для перевода компьютер в режим гибернации (в этом режиме все содержимое памяти записывается в файл hyberfil.sys на диск и компьютер переходит в спящий режим с пониженным электропотреблением), выполните команду:

shutdown /h

Перезагрузка компьютера с сообщением пользователям

Вы можете предупредить всех пользователей Windows о предстоящем выключении / перезагрузки компьютера или сервера, отправив сообщение во все активные сессии (как правило эта возможность используется на терминальных RDS серверах, за которыми одновременно работают несколько пользователей, каждый в своей собственной RDP сессии).

shutdown /r /c “Этот сервер будет перезагружен через 60 секунд.”

Отложенное выключение / перезагрузка компьютера

Можно выключить или перезагрузить компьютер с определенной задержкой (по таймеру). С помощью опции /t можно указать интервал времени (в секундах), через который ПК/сервер будет перезагружен или выключен. Тем самым вы можете предоставить пользователям дополнительное время для того, чтобы успеть сохранить открытые файлы и корректно закрыть приложения. Эту опцию удобно использовать совместно с отправкой сообщения. В этом примере мы указываем, что Windows будет выключена через 10 минут (600 секунд) и информируем пользователей сообщением.

shutdown /s /t 600 /c "Сервер будет выключен через 10 минут. Сохраните свои документы!"

Пользователю будет выдано предупреждение о запланированном выключении: Ваш сеанс будет завершен.

shutdown - Ваш сеанс будет завершен.

Если задержка очень длительная, например, 100 минут (6000 секунд), то вместо предупреждающего окна появляется всплывающее сообщение в нижнем правом углу экрана: «Ваш сеанс будет завершен. Работа Windows будет завершена через 100 мин».

Работа Windows будет завершена через 100 мин

Отмена выключения / перезагрузки компьютера

После запуска команды выключения или перезагрузки Windows, по умолчанию утилита shutdown ожидает 60 секунд, не выполняя никаких действия. Администратор может отменить перезагрузку или выключение устройства, если в течении этого времени успеет выполнить команду:

shutdown /a

После отмены выключения появится всплывающее сообщение в нижнем правом углу экрана: «Выход из системы отменен. Запланировано завершение работы отменено».

shutdown /a - отмена перезагрузки Выход из системы отменен

Перезагрузить Windows немедленно

Чтобы выключить или перезагрузить компьютер немедленно, не ожидая стандартные 60 секунд, нужно указать значение 0 для параметра /t. Например, для немедленной перезагрузки компьютера:

shutdown /r /t 0

Очень важный ключ /f. Я использую его практически всегда при выключении или перезагрузки серверов Windows. Данный атрибут обеспечивает принудительное завершение всех запущенных программ и процессов, не ожидая подтверждения от пользователя (не будем же мы ждать подтверждения закрытия программ от всех пользователей на терминальном сервере, его можно просто не дождаться).

Следующая команда выполнит перезагрузку компьютера с автоматическим запуском всех зарегистрированных приложений после перезагрузки (имеются в виду приложения, зарегистрированные в системе с использованием функции API RegisterApplicationRestart).

shutdown /g

Ярлык для перезагрузки компьютера

Для удобства пользователей вы можете создать на рабочем столе ярлыки для выключения или перезагрузки компьютера с нужными настройками. Такой ярлык может быть полезен для выполнения перезагрузки из RDP сессии, когда отсутствуют кнопки перезагрузки/завершения работы компьютера в меню Пуск.

ярлык на рабочем столе для перезагрузки компьютера

Перезагрузка Windows в определенное время

Чтобы всегда перезагружать/выключать компьютер или сервер в определенное время, вы можете добавить команду shutdown в планировщик заданий Windows taskschd.msc.

Например, следующее задание планировщика будет ежедневно перезагружать компьютер ночью в 0:00.

задание планировщика для ежедневной перезагрузки компьютера командой shutdown

Либо вы можете создать новое задание планировщика из PowerShell:

$Trigger= New-ScheduledTaskTrigger -At 00:00am -Daily
$User= "NT AUTHORITY\SYSTEM"

$Action= New-ScheduledTaskAction -Execute "shutdown.exe" -Argument "–f –r –t 120"
Register-ScheduledTask -TaskName "RebootEvertyNight_PS" -Trigger $Trigger -User $User -Action $Action -RunLevel Highest –Force

Перезагрузка удаленных компьютеров командой shutdown

Вы можете перезагрузить удаленный компьютер по сети, для этого у вас должен быть к нему сетевой доступ, а учетная запись, из-под которой запускается команда shutdown должна входить в группу локальных администраторов на удаленном компьютере (сервере):

shutdown /r /t 120 /m \\192.168.1.100

shutdown /r //m - перезагрузка удаленного компьютера

Если все указанные условия выполняются, но при выполнении команды shutdown появляется ошибка ”Отказано в доступе (5)”, на удаленном компьютере нужно разрешить удаленный доступ к административным ресурсам (C$, ADMIN$), изменив значение параметра LocalAccountTokenFilterPolicy на 1.

reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "LocalAccountTokenFilterPolicy" /t REG_DWORD /d 1 /f

Если для подключения к удаленному компьютеру нужно указать учетные данные пользователя, можно использовать команду:

net use \\192.168.31.10 /u:corp\username
shutdown /s /t 60 /f /m \\192.168.31.10

Если вам необходимо удаленно перезагрузить множество компьютеров, их список можно сохранить в текстовый файл и запустить удаленную перезагрузку всех компьютеров с помощью такого PowerShell скрипта:

$sh_msg = "Ваш компьютер будет автоматически перезагружен через 10 минут. Сохраните свои файлы и закройте запущенные программы"
$sh_delay = 600 # секунд
$computers = gc C:\PS\PC-list.txt
foreach ($comp in $computers)
{
& 'C:\Windows\System32\SHUTDOWN.exe' "-m \\$comp -r -c $sh_msg -t $sh_delay"
}

Графический интерфейс команды shutdown

Для тех, кому не комфортно работать в командной строке, есть графический интерфейс для команды shutdown, чтобы его вызвать, наберите:

shutdown /i

shutdown /i - графический интерфейс команды shutdown

Как вы видите, в диалоге удаленного завершения работы вы можете добавить несколько компьютеров, которые нужно перезагрузить/выключить, указать текст уведомления и задать причину выключения для сохранения в журнале Windows.

Перезагрузка и выключение Windows с помощью PowerShell

В PowerShell есть две команды для выключения и перезагрузки компьютера: Restart-Computer и Stop-Computer. Обе команды позволяют выключить или перезагрузить локальный или удаленный компьютер по сети.

powershell команда Restart-Computer

Для перезагрузки Windows выполните:

Restart-Computer -force

Чтобы выключить компьютер:

Stop-Computer

По умолчанию перезагрузка начнется через 5 секунд. Можно увеличить задержку перед перезагрузкой:

Restart-Computer –delay 15

У обоих командлетов есть параметр
–ComputerName
, который позволяет задать список удаленных компьютеров.

Например, чтобы удаленно выключить два сервера Windows:

Stop-Computer -ComputerName "Server01", "Server02"

Можно указать учетные данные администратора для подключения к удаленному хосту:

$Creds = Get-Credential
Restart-Computer -ComputerName $Names -Credential $Creds

Для подключения к удаленным компьютерам используется WMI и DCOM (он должны быть включен и настроен). Если WMI не настроен, при запуске команды появится ошибка:

Restart-Computer : Failed to restart the computer wks-t1122h2 with the following error message: 
Access is denied.
Exception from HRESULT: 0x80070005 (E_ACCESSDENIED).

restart-computer ошибка при удаленной перезагрузке компьютера по сети 0x80070005

Если на удаленном компьютере настроен WinRM (Windows Remote Management), вы можете использовать для подключения WSman вместо WMI:

Restart-Computer -ComputerName wks-t1122h2 -Protocol WSMan

Если на удаленном компьютер есть активные сессии пользователей, при запуске Restart-Computer появится ошибка:

Restart-Computer : Failed to restart the computer wks-t1122h2 with the following error message:
The system shutdown cannot be initiated because there are other users logged on to the computer.

Restart-Computer на удаленном компьютере есть активный пользователь

Для принудительной перезагрузки нужно добавить параметр -Force:

Restart-Computer -ComputerName wks-t1122h2 –Force

С помощью параметра -For можно перезагрузить компьютер и дождаться, когда он будет доступен. Например, вы хотите убедиться, что удаленный компьютер успешно перезагрузится и на нем стартовала служба WinRM, позволяющая подключиться к нему через WS-Management:

Restart-Computer -ComputerName wks-t1122h2 -Wait -For WinRM

Restarting computer wks-t1122h2
Verifying that the computer has been restarted.

Удаленная перезагрузка компьютера из powershell

Можно дождаться запуска службы удаленного рабочего стола (RDP) или любой другой службы Windows:

Restart-Computer -ComputerName wks-t1122h2 -Wait -For TermService

Если нужно одновременно перезагрузить несколько хостов, можно использовать возможности параллельного запуска команд в версии PowerShell 7.x.

Например, вы можете получим список Windows Server в определенном контейнере (Organizational Unit) Active Directory с помощью командлета Get-ADComputer и перезагрузить их одновременно:

$Computers = (Get-ADComputer -Filter 'operatingsystem -like "*Windows server*" -and enabled -eq "true"' -SearchBase "OU=Servers,DC=winitpro,DC=loc").Name
$Computers | ForEach-Object -Parallel {    Restart-Computer -ComputerName $_ -Force} -ThrottleLimit 3

Restarting Windows 10 from Command Prompt can seem daunting at first, but with a few simple steps, you can quickly and easily restart your computer. Knowing how to restart your computer from the command prompt can save you time and energy if you ever need to restart your computer without having to use the Windows 10 user interface. In this article, we’ll show you how to restart Windows 10 from Command Prompt and provide some useful tips to help you make the most of this powerful tool.

To restart Windows 10 from the Command Prompt:
1. Open the Command Prompt as an administrator.
2. Type shutdown /r and press Enter.
3. You will be prompted to schedule the restart. Type Y and press Enter.
4. The computer will restart.

Restarting Windows 10 from Command Prompt

Windows 10 is equipped with an advanced operating system that makes it easier for users to perform tasks and access information. One of the features of this operating system is the ability to restart the computer from the command prompt. This is a useful tool for troubleshooting and fixing any errors or issues that may be occurring on the system. In this article, we will discuss how to restart Windows 10 from command prompt.

Steps to Restart Windows 10 from Command Prompt

The first step in restarting Windows 10 from command prompt is to launch the prompt. To do this, press the Windows logo key on your keyboard and type “cmd”. This will open the command prompt window.

Once the command prompt window is open, type the following command: “shutdown -r -t 0”. This command will restart the computer in 0 seconds. If you want to specify a different time, replace the “0” with the number of seconds you want the computer to wait before restarting.

Using Third Party Software

If you don’t want to use the command prompt, you can also use third-party software to restart your computer. There are a few software packages available that allow you to automate the restart process. These programs can be configured to run on a schedule or when certain conditions are met.

One of the most popular programs for this purpose is AutoHotkey. AutoHotkey is a free, open-source scripting language that can be used to automate tasks on your computer. It is a powerful tool that can be used to control almost any aspect of your computer’s behavior.

Using the Windows 10 Task Scheduler

The Windows 10 Task Scheduler is another tool you can use to automate the restart process. This is a built-in feature of Windows 10 that allows you to schedule tasks and run them at specified times. To use this feature, open the Task Scheduler by pressing the Windows logo key and typing “Task Scheduler”. Once the Task Scheduler window is open, click on the “Create Task” button.

On the Create Task window, enter a name for the task and select the “Run whether user is logged on or not” option. Next, select the “Run with highest privileges” option and click the “Triggers” tab. On the Triggers tab, select the “At log on” option and click the “Actions” tab. On the Actions tab, select the “Start a program” option and enter the path to the “shutdown.exe” program. Once you have entered the path, click the “OK” button to save the task.

Using Windows 10 Power Options

You can also use the Windows 10 Power Options to restart your computer. To do this, open the Power Options window by pressing the Windows logo key and typing “Power Options”. Once the Power Options window is open, click the “Change plan settings” link next to the plan you’re currently using. On the Change plan settings window, click the “Change advanced power settings” link.

On the Advanced settings tab, expand the “Sleep” option and select the “Allow wake timers” option. Next, select the “Turn off the display” option and enter the number of minutes you want the computer to remain idle before it restarts itself. Once you have entered the desired number of minutes, click the “OK” button to save the settings.

Using a Batch File

Finally, you can also use a batch file to restart your computer. A batch file is a text file that contains a series of commands that can be executed by the Windows command prompt. To create a batch file, open a text editor such as Notepad and type the following command:

shutdown -r -t 0

Save the file with a .bat extension and double-click the file to execute it. This will restart your computer in 0 seconds. If you want to specify a different time, replace the “0” with the number of seconds you want the computer to wait before restarting.

Few Frequently Asked Questions

What is a Command Prompt?

A Command Prompt is a text-based interface in the Windows operating system that allows users to execute commands, run programs, and perform other tasks by typing commands. It is the same as the DOS command-line interface that was used in earlier versions of Windows. The Command Prompt can be used to troubleshoot and fix various problems in Windows 10, including restarting the computer.

How Do I Access the Command Prompt in Windows 10?

The easiest way to access the Command Prompt in Windows 10 is to use the search bar. Simply type “Command Prompt” in the search bar, and then select the Command Prompt app. Alternatively, you can access the Command Prompt by pressing the Windows key and typing cmd.

What is the Command to Restart Windows 10 From the Command Prompt?

The command to restart Windows 10 from the Command Prompt is “shutdown /r”. This command will restart the computer, and any unsaved changes will be lost.

What Do I Do if the Command Does Not Work?

If the command does not work, it is likely that the computer is not responding. In this case, you should press the power button to manually restart the computer. If the computer does not respond, you may need to perform a hard reset.

What is a Hard Reset?

A hard reset is a procedure that forces the computer to power off and then turn back on. To perform a hard reset, you should press and hold the power button for five seconds. This will force the computer to shut down, and then restart.

What are the Benefits of Using the Command Prompt?

The Command Prompt can be used to troubleshoot and fix various problems in Windows 10. It can be used to run programs, access files, troubleshoot system errors, and much more. It is also a great way to automate tasks, and can be used to create scripts to automate tedious tasks.

In conclusion, restarting Windows 10 from the Command Prompt is an easy and efficient way to reset your system. By following the instructions outlined above, you can quickly and effortlessly restart your computer, ensuring that your system is running at its best. With only a few quick steps, you can make sure that your computer is running optimally and that you are able to get the most out of your Windows 10 experience.

  • Windows command to add to path
  • Windows command prompt commands windows 10
  • Windows command prompt что это
  • Windows command processor что это
  • Windows command not recognized as an internal or external command