ツール

Process Explorer

コマンド

コマンドプロンプト

taskkill

  • chrome.exe のタスクを全て強制終了させる
    taskkill /f /im chrome.exe
  • 複数のタスクを強制終了させる
    taskkill /pid [PID1] /pid [PID2] /pid [PID3] ... /t /f
    • /t ... 子プロセスもまとめて終了
    • /f ... 強制終了

WMIC

  • 親プロセスIDを調べる
    wmic process where (processid=[調査対象PID]) get parentprocessid
  • chrome.exe のタスクを全て強制終了させる
    wmic process where "name = 'chrome.exe'" delete

VBScript

Dim Shell, WMI, query, process

Set Shell = CreateObject("WScript.Shell")

Set WMI = GetObject("winmgmts:{impersonationLevel=Impersonate}!\\.\root\cimv2")
query = "SELECT ProcessId FROM Win32_Process WHERE Name = 'chrome.exe'"

For Each process In WMI.ExecQuery(query)
    On Error Resume Next
    process.Terminate
Next

PowerShell


トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2022-01-19 (水) 13:55:00 (822d)