NirCmd A tela fica preta depois de acordar do modo de espera

2

Eu tenho um computador que deve ter 0 interações com o usuário. Eu quero que ele desligue e ligue em horários específicos.

Neste momento, tenho um comando que coloca o computador em suspensão. No entanto, eu também preciso de uma tarefa que desperte o computador.

Agora eu fiz isso:

echo WakeUp!
timeout /t 10
cd C:\Users\*\Desktop\nircmd
nircmd setcursor 100 50
nircmd movecursor 10 10

Quando eu executo este arquivo .bat ele abre cmd, diz: WakeUp! E então faz uma pausa por 10 segundos e move meu mouse.

No entanto, estou deixando o mouse mover-se porque, sempre que o computador é iniciado a partir do modo de suspensão, a tela fica preta até que eu pressione um botão ou mova o mouse. Então eu estava esperando que isso resolvesse a "tela preta".

No entanto, não ...

Como posso acordar meu pc e iniciar a tela sem interações com o usuário?

    
por Mitch 12.04.2016 / 11:38

1 resposta

0

Como posso ativar meu PC sem interações do usuário?

Você pode usar uma tarefa agendada. Instruções abaixo.

Como fazer seu computador acordar automaticamente do sono

  1. Open the Task Scheduler by typing "Task Scheduler" into the "Start" menu if you are running Windows 10 or 7 (or "Start Screen" if you are using Windows 8.x) and pressing Enter.

    image

  2. In the "Task Scheduler" window, click the "Create Task" link to create a new task.

    image

  3. Name the task something like "Wake From Sleep."

    You may also want to tell it to run whether a user is logged on or not and set it to run with highest privileges.

    image

  4. On the "Triggers" tab, create a new trigger that runs the task at your desired time. This can be a repeating schedule or a single time.

    image

  5. On the "conditions" tab, enable "Wake the computer to run this task".

    image

  6. On the "Actions" tab, you must specify at least one action for the task – for example, you could have the task launch a file-downloading program.

    If you want to wake the system without running a program, you can tell the task to run cmd.exe with the /c "exit" arguments – this will launch a Command Prompt window and immediately close it, effectively doing nothing.

    image

  7. Save your new task after configuring it.

Fonte Como fazer seu computador acordar automaticamente

    
por 12.04.2016 / 13:16