The Invoke-WmiMethod cmdlet was new with PowerShell 2. In PowerShell v1 we would do something like this (gwmi win32_Process -Filter "Name='Notepad.exe'").Terminate() With the cmdlet we can do this gwmi win32_Process -Filter "Name='Notepad.exe'" | Invoke… Read the full text.