リモートマシンの特定のフォルダにあるプロセスのリストを取得して、それらを強制終了したいと思います。ただし、-ComputerNameを追加すると、Get-ProcessはPathを希望どおりに返さないため、WherewithPathを使用できません。特定のパスの下にあるリモートマシンでGet-Process/Stop-Processを実行する方法はありますか?
// 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