PowerShell: Kill PID based on name
Kill specific process PID based on name
Get-Process -pid ((get-wmiobject win32_service | where { $_.name -eq 'rasman'}).processID) | Stop-Process -force
Some notes from work
Kill specific process PID based on name
Get-Process -pid ((get-wmiobject win32_service | where { $_.name -eq 'rasman'}).processID) | Stop-Process -force
Leave a Reply