6
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

「アクセスが拒否されました」のプロセスの強制終了

Last updated at Posted at 2020-07-15

現在実行中のプロセス(ここではSample.exeとする)をコマンドプロンプトから終了するためには、以下のようにtaskkillコマンドを実行します。

taskkill /IM /F Sample.exe

管理者権限で実行しているプロセスに対して上記コマンドを実行すると

エラー: プロセス "Sample.exe" (PID 15448) を強制終了できませんでした。
理由: アクセスが拒否されました。

というエラーメッセージが表示され、プロセスが終了できないことがあります。
この場合は、以下のコマンドを試してみてください。

wmic process where "name='Sample.exe'" delete

実行後、「インスタンスは正しく削除されました。」と表示されればプロセス終了です。

6
3
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
6
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?