mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-06-15 18:33:43 +00:00
38904851 - Added steps to fully remove AppLocker
This commit is contained in:
@ -79,3 +79,13 @@ C:\Users\Administrator> Set-AppLockerPolicy -XMLPolicy .\clear.xml
|
||||
```
|
||||
|
||||
This will remove all AppLocker Policies on a machine and could be potentially scripted to use on multiple machines using remote execution tools with accounts with proper access.
|
||||
|
||||
```powershell
|
||||
appidtel.exe stop [-mionly]
|
||||
sc.exe config appid start=demand
|
||||
sc.exe config appidsvc start=demand
|
||||
sc.exe config applockerfltr start=demand
|
||||
sc stop applockerfltr
|
||||
sc stop appidsvc
|
||||
sc stop appid
|
||||
```
|
Reference in New Issue
Block a user