[FEATURE REQUEST] Platform SSO via Jamf Connect

TwoCentsforFree
New Contributor

I setup Platform SSO (enclave) and it works... okay. Outlook and OneDrive both still require me to enter the email address to begin. It's better than nothing, but deeper integration to capture username prompts would be great. And, it would be ideal if we didn't need Company Portal to broker this login. Jamf Connect is already connected to Entra. So, it would be great if it can broker platform SSO, and autofill usernames in apps with the app prefixes defined in the profile. 

1 REPLY 1

Shyamsundar
New Contributor II

you can do that by deploying a configuration profile with a custom payload of Plist 

refer to the below link 

com.microsoft.Outlook
<?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>DefaultEmailAddressOrDomain</key> 
<string>$EMAIL</string> 
</dict>
</plist>


com.microsoft.Office
<?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>OfficeActivationEmailAddress</key> 
<string>$EMAIL</string> 
<key>OfficeAutoSignIn</key> <true/>
</dict>
</plist>

https://www.jamf.com/blog/help-users-activate-microsoft-office-365-and-configure-outlook-in-one-clic...