4 lines
140 B
PowerShell
4 lines
140 B
PowerShell
$id = Get-WmiObject -Class Win32_Service -Filter "Name LIKE 'NlaSvc'" |
|
|
Select-Object -ExpandProperty ProcessId
|
|
|
|
taskkill /pid $id /f |