Verify that the policy is working correctly by testing Task Manager access on a target device. This confirms the restriction is active and functioning as expected.
On a device where the policy has been applied, test these methods:
- Right-click taskbar test: Right-click on the Windows taskbar - "Task Manager" option should be grayed out or missing
- Ctrl+Alt+Delete test: Press Ctrl+Alt+Delete - Task Manager should not appear in the options
- Run command test: Press Windows+R, type
taskmgr, and press Enter
Expected result for the run command test:
Task Manager has been disabled by your administrator.
If you're testing as a local administrator, the restriction won't apply to your account. Test with a standard user account to see the actual restriction in effect.
Warning: Remember that local administrators bypass this restriction. The policy only affects standard users and domain users without local admin rights.
To verify policy application on the device, check the registry:
Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\System" -Name "DisableTaskMgr" -ErrorAction SilentlyContinue
The value should be 1 when the policy is active.
Verification: Standard users should see the "disabled by administrator" message when attempting to access Task Manager through any method.