Comando de encerramento do prompt de comando

2

Configuração

Estou executando um PC com Windows 7 e um laptop com Windows 7 conectados a um roteador que forma uma LAN. Então, eu quero desligar remotamente o laptop do PC. Descobri que poderia fazer isso no prompt de comando digitando: shutdown -i ou shutdown/i . Eu cliquei em "adicionar" na GUI que apareceu e digitei o endereço IP do laptop.

Problema

No entanto, não funcionou, mas me deu esse erro:

The entered computer name is not valid or remote shutdown is not supported on the target computer. Check the name and then tryp again or contact your system administrator.<53>

Eu habilitei e iniciei o Registro Remoto em ambos os computadores e ele ainda não funcionou. Eu sou um usuário administrador em ambos os computadores estão logados no desktop com uma conta de administrador. Alguma idéia?

    
por NULL 07.05.2015 / 16:58

2 respostas

0

Você está usando uma conta de domínio que tem permissões de administrador em ambos os computadores? Em caso afirmativo, o seguinte comando do computer1 funcionará no computador2:
desligamento / m computador2 / s / t 00

Você pode querer verificar se o firewall está sendo executado no segundo computador e verificar se as exceções necessárias estão em vigor:

"Para desligar ou reiniciar um computador remoto, as exceções do firewall Administração Remota e do Windows Management Instrumentation devem estar ativadas no computador remoto."

    
por 08.05.2015 / 02:24
-1

Quando quero desligar um computador, abro um prompt de comando no controle remoto e, em seguida, digito

shutdown /s /t 10

Esse comando irá desligar o computador em 10 segundos aqui estão as opções de comando para o comando shutdown

To shutdown your PC type : shutdown / s

To restart your PC type : shutdown / r

To logoff your PC type : shutdown / l

The list of shutdown options include:

No args        Display help. This is the same as typing /?.
/?              Display help. This is the same as not typing any options.
/i              Display the graphical user interface (GUI).  This must be the first option.
/l              Log off. This cannot be used with /m or /d options.
/s             Shutdown the computer.
/r             Full shutdown and restart the computer.
/g             Full shutdown and restart the computer. After the system is rebooted, restart any registered applications.
/a              Abort a system shutdown.  This can only be used during the time-out period.
/p             Turn off the local computer with no time-out or warning. Can be used with /d and /f options.
/h             Hibernate the local computer. Can be used with the /f option.
/hybrid    Performs a shutdown of the computer and prepares it for fast startup. Must be used with /s option.
/e              Document the reason for an unexpected shutdown of a computer.
/o             Go to the advanced boot options menu and restart the computer.
/t xxx      Set the time-out period before shutdown to xxx seconds. The valid range is 0-315360000 (10 years), with a default of 30.
/c             Comment on the reason for the restart or shutdown. Maximum of 512 characters allowed.
/f             Force running applications to close without forewarning users.
/d            Provide the reason for the restart or shutdown.
    
por 07.05.2015 / 23:57