diff --git a/education/windows/edu-take-a-test-kiosk-mode.md b/education/windows/edu-take-a-test-kiosk-mode.md
index 8d760fb496..97f06e62be 100644
--- a/education/windows/edu-take-a-test-kiosk-mode.md
+++ b/education/windows/edu-take-a-test-kiosk-mode.md
@@ -102,6 +102,7 @@ To configure devices using Microsoft Intune, create a [custom policy][MEM-1] wit
|
OMA-URI: **`./Vendor/MSFT/Policy/Config/LocalPoliciesSecurityOptions/InteractiveLogon_DoNotDisplayLastSignedIn`** Data type: **Integer** Value: **1**|
| OMA-URI: **`./Vendor/MSFT/Policy/Config/WindowsLogon/HideFastUserSwitching`** Data type: **Integer**Value: **1**|
| OMA-URI: **`./Vendor/MSFT/SharedPC/AccountModel`**Data type: **Integer** Value: **1**|
+| OMA-URI: **`./Vendor/MSFT/SharedPC/EnableAccountManager`**Data type: **Boolean** Value: **True**|
| OMA-URI: **`./Vendor/MSFT/SharedPC/KioskModeAUMID`**Data type: **String** Value: **Microsoft.Windows.SecureAssessmentBrowser_cw5n1h2txyewy!App**|
| OMA-URI: **`./Vendor/MSFT/SharedPC/KioskModeUserTileDisplayText`** Data type: **String** Value: **Take a Test** (or a string of your choice to display in the sing-in screen)|
| OMA-URI: **`./Vendor/MSFT/SecureAssessment/LaunchURI`** Data type: **String** Value: **\**|
@@ -167,6 +168,7 @@ if (-not ($cimObject)) {
$cimObject = New-CimInstance -Namespace $namespaceName -ClassName $className -Property @{ParentID=$ParentID;InstanceID=$instance}
}
$cimObject.AccountModel = 1
+$cimObject.EnableAccountManager = $true
$cimObject.KioskModeAUMID = "Microsoft.Windows.SecureAssessmentBrowser_cw5n1h2txyewy!App"
$cimObject.KioskModeUserTileDisplayText = "Take a Test"
Set-CimInstance -CimInstance $cimObject