我想获取某个远程机器上特定文件夹下的进程列表并杀死它们。但是,如果我添加 -ComputerName,Get-Process 不会根据需要返回 Path,因此我无法使用 Path。有没有办法在特定路径下的远程机器上获取进程/停止进程?
// Paths are filled
PS C:\> Get-Process | Format-Table Name, Path
Name Path
---- ----
firefox C:\Program Files (x86)\Mozilla Firefox\firefox.exe
// Paths are empty
PS C:\> Get-Process -ComputerName localhost | Format-Table Name, Path
Name Path
---- ----
firefox