Hello guys
I'm struggling with the OneDrive configuration without any luck, some settings are not being applied and I cannot understand why.
I'm deploying OneDrive from Jamf's app catalog and with a configuration profile using .plist file I've created according to our organization's needs following Microsoft's documentation.
The goal is:
1. Allow sync using accounts within our organization only.
2. Personal OneDrive account sync is not allowed.
3. Disable the tutorial (this one works).
4. Redirect known folders (Desktop, Documents) to OneDrive
5. Redirect silently without notifications and prompts.
6. The user cannot disable folder backup.
7. Show notification that folders were redirected to OneDrive.
8. Open at login (this one works).
This is my .plist:
What am I missing?
<?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>AllowTenantList</key>
<array>
<string>MyTenantID</string>
</array>
<key>BlockExternalSync</key>
<true/>
<key>DisablePersonalSync</key>
<true/>
<key>DisableTutorial</key>
<true/>
<key>KFMBlockOptOut</key>
<true/>
<key>KFMSilentOptIn</key>
<string>MyTenantID</string>
<key>KFMSilentOptInWithNotification</key>
<true/>
<key>OpenAtLogin</key>
<true/>
</dict>
</plist>