Skip to main content
Solved

Ideas on how to improve the Jamf/Entra Device Compliance registration user experience?

  • June 23, 2026
  • 4 replies
  • 104 views

dstranathan
Forum|alt.badge.img+19

Im testing Jamf/Entra Device Compliance. Everything is working as expected (Smart Groups, compliant/non-compliant criteria, Entra/Intune connector, etc). Now its time to focus on the actual registration workflow and policy logic to make it as painless as possible for my users.

Does anyone have a customize workflow that improves the registration user experience? Popping up the Company Portal auth UI is not an elegant way to register our employees.

🙏🏻

Best answer by dortmund50

You won't have many options for registering devices in Entra.


However, what might help is to simplify the registration process a bit. To do this, I created an additional config profile and enabled WkWebView using the following instructions:


https://learn.jamf.com/r/en-US/technical-paper-microsoft-intune-current/Troubleshooting_Microsoft_Entra_Login_Using_JamfAAD

https://learn.jamf.com/r/en-US/technical-paper-microsoft-intune-current/Troubleshooting_the_JamfAAD_Pre-fill_Authentication_Issue

 

Here's what my configuration looks like:

 

Custom Settings Payload → Preference Domain field: com.jamf.management.jamfAAD

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>disableUPNLoginHint</key>
<true/>
<key>useWKWebView</key>
<true/>
</dict>
</plist>

 

Maybe that helps a bit :) 

4 replies

Chubs
Forum|alt.badge.img+26
  • Jamf Heroes
  • June 23, 2026

We wait for the JamfAAD plist to hit at enrollment before launching the a policy to start the registration process prompt (custom osascript to prompt user to click a “Register” button). Once that button is clicked, it runs a custom trigger to set the conditional access policy for that computer to register with Entra.  

Simple. Clean.  Works.

Then again, we do not have a ton of applications installing at enrollment - our users time to desktop is < 3 minutes in most cases.


Chubs
Forum|alt.badge.img+26
  • Jamf Heroes
  • June 23, 2026

Or just go PSSO and allow it all to just work at that point 😊


dortmund50
Forum|alt.badge.img+6
  • New Contributor
  • Answer
  • June 24, 2026

You won't have many options for registering devices in Entra.


However, what might help is to simplify the registration process a bit. To do this, I created an additional config profile and enabled WkWebView using the following instructions:


https://learn.jamf.com/r/en-US/technical-paper-microsoft-intune-current/Troubleshooting_Microsoft_Entra_Login_Using_JamfAAD

https://learn.jamf.com/r/en-US/technical-paper-microsoft-intune-current/Troubleshooting_the_JamfAAD_Pre-fill_Authentication_Issue

 

Here's what my configuration looks like:

 

Custom Settings Payload → Preference Domain field: com.jamf.management.jamfAAD

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>disableUPNLoginHint</key>
<true/>
<key>useWKWebView</key>
<true/>
</dict>
</plist>

 

Maybe that helps a bit :) 


dstranathan
Forum|alt.badge.img+19
  • Author
  • Valued Contributor
  • June 25, 2026

Thank you. I actually created this profile earlier today. Will be testing soon. 👍🏻