Hi Jason,
We have the same name 😊
The behavior you’re noticing is by design in Windows 11 22H2 and newer: the old toast notification with a custom message was removed for security and consistency reasons, so blocked devices now only show the reason quietly in Device Manager (“This device is blocked by system policy”) without alerting the user.
There is, however, a fully supported way to show a friendly pop-up message that your users will definitely see:
- Create a simple PowerShell script (e.g., Show-DeviceBlockMessage.ps1) with this one-liner: Add-Type -AssemblyName System.Windows.Forms; [System.Windows.Forms.MessageBox]::Show("Your IT department has blocked this device for security reasons. Please contact the helpdesk if you need it approved.", "Device Blocked", "OK", "Information")
- Deploy the script via Intune (Proactive Remediations or as a Win32 app) with a detection rule that checks the specific hardware IDs you’re blocking (pull them from the Device Manager event logs – Event ID 702 under Microsoft-Windows-DeviceSetupManager/Admin).
- Set the remediation to run as the logged-on user when the detection triggers – users get a clear, branded message instantly and no longer call you.I hope this helps clarify the situation.
If you find this answer useful, please hit “Accept Answer” so I know it resolved your concern 😊.
Jason.