Commit Graph

17 Commits

Author SHA1 Message Date
fb4ec37b4a removed Feedback Hub links 2018-01-19 16:38:49 -08:00
7e01e64958 Update understanding-applocker-rule-exceptions.md 2018-01-04 00:05:20 +01:00
cd26264341 Example updated to make it easier to understand 2018-01-04 00:01:27 +01:00
52433196d2 removed comment in the table 2017-12-14 11:19:56 -08:00
545ce886e2 copyedits and fix applocker requirements table 2017-12-14 10:19:45 -08:00
1ae3f0b230 Merged PR 4822: "msdate update (generated from most recent commit date)"
"msdate update (generated from most recent commit date)"
2017-12-05 22:36:05 +00:00
88b82f107a revised feedback hub link 2017-10-16 15:23:51 -07:00
cdceac538f revised Windows Store 2017-10-13 16:39:31 -07:00
47d3c2f4e3 added link to Feedback Hub 2017-09-28 09:20:26 -07:00
1ece79b062 Reformat Applies to section of Applocker topics. 2017-09-21 10:20:08 -07:00
ad70a71fd4 Add 'Windows Server' to Applies to: in Applocker topics. 2017-09-20 12:06:04 -07:00
b21f821649 updating localizationpriority metadata name 2017-07-27 10:43:50 -07:00
29ab6d569d fixed syntax 2017-07-11 12:02:21 -07:00
cd812d03bb copyedits 2017-07-11 11:35:40 -07:00
66763a225b Document how to clear Applocker rules on an individual system and remote systems
In order to clear AppLocker policies from a machine you must use the Set-AppLockerPolicy cmdlet with the -XMLPolicy parameter using a .XML file which contains the following contents:

<AppLockerPolicy Version="1">
  <RuleCollection Type="Exe" EnforcementMode="NotConfigured" />
  <RuleCollection Type="Msi" EnforcementMode="NotConfigured" />
  <RuleCollection Type="Script" EnforcementMode="NotConfigured" />
  <RuleCollection Type="Dll" EnforcementMode="NotConfigured" />
</AppLockerPolicy>

To use the Set-AppLockerPolicy cmdlet, we must first import the Applocker modules.  To do this:

PS C:\Users\Administrator> import-module AppLocker

We will create a file for example called clear.xml and place it in the same directory that we are executing our cmdlet.  And fill it with the XML Contents above.  Then you must execute using the following command:

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.
2017-07-11 17:58:51 +05:30
55c67d84ac Update Link URL
Updated AppLocker PowerShell Command Reference Link
2017-06-30 10:11:09 +12:00
33c3fb2e74 New TOC for docs.microsoft.com 2017-04-19 14:12:47 -07:00