))
```
- If you are using hybrid MDM management with System Center Configuration Manager or using Intune, ensure that you use Base64 as the Data type when using Custom OMA-URI functionality to apply the Code Integrity policy.
+> [!NOTE]
+> If you are using hybrid MDM management with System Center Configuration Manager or using Intune, ensure that you use Base64 as the data type when using Custom OMA-URI functionality to apply the Code Integrity policy.
-- Deploy the policy:
- - To deploy a new base policy using the CSP, perform an ADD on **./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/Policy** using the Base64-encoded policy node as {Data}. Refer to the the Format section in the Example 1 snippet).
+## Deploy policies using ApplicationControl CSP
+To deploy a new base policy using the CSP, perform an ADD on **./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/Policy** using the Base64-encoded policy node as {Data}. Refer to the the Format section in the Example 1 below.
- - To deploy base policy and supplemental policies:
- - Perform an ADD as described above first with the GUID and policy data for the base policy
- - Repeat for each base or supplemental policy in turn (with its own GUID and data)
+To deploy base policy and supplemental policies:
+- Perform an ADD on **./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/Policy** using the Base64-encoded policy node as {Data} with the GUID and policy data for the base policy
+- Repeat for each base or supplemental policy (with its own GUID and data)
- The following example shows the deployment of two base policies and a supplemental policy (which already specifies the base policy it supplements and does not need that reflected in the ADD).
+The following example shows the deployment of two base policies and a supplemental policy (which already specifies the base policy it supplements and does not need that reflected in the ADD).
- **Example 1: Add first base policy**
- ```
-
- 1
- -
-
- ./Vendor/MSFT/ApplicationControl/Policies/{Base1GUID}/Policy
-
-
- b64
-
- {Base1Data}
-
-
- ```
- **Example 2: Add second base policy**
- ```
-
- 1
- -
-
- ./Vendor/MSFT/ApplicationControl/Policies/{Base2GUID}/Policy
-
-
- b64
-
+**Example 1: Add first base policy**
+```
+
+ 1
+
-
+
+ ./Vendor/MSFT/ApplicationControl/Policies/{Base1GUID}/Policy
+
+
+ b64
+
+ {Base1Data}
+
+
+```
+**Example 2: Add second base policy**
+```
+
+ 1
+ -
+
+ ./Vendor/MSFT/ApplicationControl/Policies/{Base2GUID}/Policy
+
+
+ b64
+
{Base2Data}
-
-
- ```
- **Example 3: Add supplemental policy**
- ```
-
- 1
+
+
+```
+**Example 3: Add supplemental policy**
+```
+
+ 1
+ -
+
+ ./Vendor/MSFT/ApplicationControl/Policies/{Supplemental1GUID}/Policy
+
+
+ b64
+
+ {Supplemental1Data}
+
+
+```
+## Get policy
+
+Perform a GET using a deployed policy’s GUID to interrogate/inspect the policy itself or information about it.
+The following table displays the result of Get operation on different nodes:
+
+|Nodes|Get Operation Results|
+|-------------|------|
+|./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/Policy|raw p7b|
+|./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/PolicyInfo/Version|policy version|
+|./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/PolicyInfo/IsEffective|is the policy in effect|
+|./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/PolicyInfo/IsDeployed|is the policy on the system|
+|./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/PolicyInfo/IsAuthorized|is the policy authorized on the system|
+|./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/PolicyInfo/Status|was the deployment successful|
+|./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/PolicyInfo/FriendlyName|the friendly name per the policy|
+
+**Sample Get command**
+```
+
+ 1
-
- ./Vendor/MSFT/ApplicationControl/Policies/{Supplemental1GUID}/Policy
+ ./Vendor/MSFT/ApplicationControl/Policies/{PolicyGUID}/Policy
-
- b64
-
- {Supplemental1Data}
-
- ```
-- Perform a GET operation using a deployed policy’s GUID to interrogate/inspect the policy itself or information about it.
- - ./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/Policy (raw p7b)
- - ./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/PolicyInfo/Version (policy version)
- - ./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/PolicyInfo/IsEffective (is the policy in effect)
- - ./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/PolicyInfo/IsDeployed (is the policy on the system)
- - ./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/PolicyInfo/IsAuthorized (is the policy authorized on the system)
- - ./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/PolicyInfo/Status (was the deployment successful)
- - ./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/PolicyInfo/FriendlyName (the friendly name per the policy)
+
+```
- **Sample Get command**
- ```
-
- 1
- -
-
- ./Vendor/MSFT/ApplicationControl/Policies/{PolicyGUID}/Policy
-
-
-
- ```
-- Delete the policy.
- To delete an unsigned policy, perform a DELETE on **./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/Policy**.
+## Delete the policy
+To delete an unsigned policy, perform a DELETE on **./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/Policy**.
- > [!Note]
- > Only signed things should be able to update signed policies. Hence, performing a DELETE on **./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/Policy** is not sufficient to delete a signed policy.
+> [!Note]
+> Only signed things should be able to update signed policies. Hence, performing a DELETE on **./Vendor/MSFT/ApplicationControl/Policies/_PolicyGUID_/Policy** is not sufficient to delete a signed policy.
- To delete a signed policy, first replace it with a signed update allowing unsigned policy, then deploy another update with unsigned policy, then perform delete.
+To delete a signed policy, first replace it with a signed update allowing unsigned policy, then deploy another update with unsigned policy, then perform delete.
- **Delete a policy**
- ```
+**Delete a policy**
+```
1
-
@@ -223,4 +227,4 @@ To use this CSP:
- ```
\ No newline at end of file
+```
\ No newline at end of file
diff --git a/windows/client-management/mdm/new-in-windows-mdm-enrollment-management.md b/windows/client-management/mdm/new-in-windows-mdm-enrollment-management.md
index 754e6e0023..73f2ac1d13 100644
--- a/windows/client-management/mdm/new-in-windows-mdm-enrollment-management.md
+++ b/windows/client-management/mdm/new-in-windows-mdm-enrollment-management.md
@@ -141,7 +141,7 @@ For details about Microsoft mobile device management protocols for Windows 10 s
Added new CSP in Windows 10, version 1903.
|
-ApplicationStatus CSP |
+ApplicationControl CSP |
Added new CSP in Windows 10, version 1903.
|