Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 601 Bytes

File metadata and controls

28 lines (20 loc) · 601 Bytes
date 2022-06-28 17:17:28 +0800
author Rustle Karl
title 获取正在运行的程序的启动命令
url posts/windows/docs/program
tags
Windows
README
categories
Windows 学习笔记
toc true
draft false

通过软件获取

https://download.sysinternals.com/files/ProcessExplorer.zip

通过 wmic 获取

必须以管理员运行

wmic process where caption="nutsvpn.exe" get caption,commandline,ProcessId /value
wmic process where caption="msedge.exe" get caption,commandline,ProcessId /value