You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: defender-endpoint/device-control-deploy-manage-gpo.md
+35Lines changed: 35 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -121,6 +121,41 @@ You can create different group types. Here's one group example XML file for any
121
121
122
122
2. In the **Define device control policy rules** window, select **Enabled**, and then specify the network share file path containing the XML rules data.
123
123
124
+
## Validating XML files
125
+
126
+
Mpcmdrun has built in functionality to validate XML files that are utilized for GPO deployments. This allows customers to detect any syntax errors the DC engine may encounter when parsing through the settings. In order to perform this validation, administrators need to copy the following Powershell script and provide the appropriate file path for their XML files containing the Device Control rules and groups.
127
+
128
+
```
129
+
#Path to PolicyRules xml. Provide the filepath of the device control rules XML file
130
+
$RulesXML="C:\Policies\PolicyRules.xml"
131
+
132
+
#Path to Groups XML. Provide the filepath of the device control groups XML file
0 commit comments