0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

vbスクリプト(vbs)でWindowsPCのスリープ回避

Posted at

9.5分毎にWindowsOSが自動的にCtrlキーを押下することで、
WindowsPCのスリープ回避をするためのVBScript(vbs)プログラムです。


Set objShell = WScript.CreateObject("WScript.Shell")
Do
WScript.Sleep 1000609.5
objShell.SendKeys "+"
Loop

の5行のプログラムをCtrl.vbsとして拡張子vbsのテキストファイルとして保存します。


@echo off
echo Periodically push Ctrl key process (Every 9.5 mins)
C:¥windows¥System32¥CScript.exe Ctrl.vbs

の3行のプログラムをCtrl.batとして拡張子batのテキストファイルとして保存します。

Ctrl.batをダブルクリックで実行したり、
Ctrl.batをスタートアップに登録したり、
活用してみてください。

※途中で止める場合は、Ctrl.batの実行中に当該ウィンドウでCtrl + Cを押下してyes(Y)を選択します。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?