在windows中如何查看某个进程的调用命令
$process = 'rundll32.exe' Get-WmiObject -Class Win32_Process -Filter "Name='$process'" | ForEach-Object $_.CommandLine
日期:2020-04-11 23:04:33 来源:oir作者:oir
在windows中如何查看某个进程的调用命令
$process = 'rundll32.exe' Get-WmiObject -Class Win32_Process -Filter "Name='$process'" | ForEach-Object $_.CommandLine