0
0

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.

chromeでのネットサーフィンを強制終了するbatスクリプト

Posted at

目的

スクリプトの目的はタイトルの通りです。執筆の目的は自分用の備忘録です。

環境(?)

Windows10

#スクリプト

a.bat
timeout 900 /nobreak
taskkill /F /IM chrome.exe

#解説
900秒(15分)後にchromeを強制終了するコードです。/F は強制終了に対応します。終了するプロセスをid で指定したい場合は/IMを/PIDで置換して ~.exe をプロセスIDで置き換えましょう。/nobreak は途中でタイマーを止めないためです。

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?