diff --git a/Services Scripts/Service - Kill NLA.ps1 b/Services Scripts/Service - Kill NLA.ps1 new file mode 100644 index 0000000..85063d6 --- /dev/null +++ b/Services Scripts/Service - Kill NLA.ps1 @@ -0,0 +1,4 @@ +$id = Get-WmiObject -Class Win32_Service -Filter "Name LIKE 'NlaSvc'" | +Select-Object -ExpandProperty ProcessId + +taskkill /pid $id /f \ No newline at end of file