Skip to main content

We're in the process of getting ready to roll out OneDrive, so I've been tasked with creating a plist for Mac. Trying to limit the prompts that come up. I thought I had the plist setup correctly.


1. Prevent the logon screen from coming up an auto logon? It's populated with the email address and I then have to enter password. Trying to match it like our Windows side.


2. I have a default folder path, but still getting prompted to choose and I can change location other then onedrive.


 









<?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>DisablePersonalSync</key>
<true/>
<key>DisableTutorial</key>
<true/>
<key>DefaultFolderLocation</key>
<array>
<dict>
<key>TenantID</key>
<string>tenantID</string>
<key>DefaultFolderPath</key>
<string>~/OneDrive - Company Name</string>
</dict>
</array>
<key>AutomaticUploadBandwidthPercentage</key>
<integer>30</integer>
<key>HideDockIcon</key>
<true/>
<key>FilesOnDemandEnabled</key>
<true/>
<key>BlockExternalSync</key>
<true/>
<key>AllowTenantList</key>
<dict>
<key>{{key}}</key>
<string>tenantID</string>
<key>{{value}}</key>
<true/>
</dict>
<key>KFMSilentOptIn</key>
<string>tenantID</string>
<key>KFMSilentOptInDesktop</key>
<true/>
<key>KFMSilentOptInDocuments</key>
<true/>
<key>KFMSilentOptInWithNotification</key>
<true/>
<key>KFMBlockOptOut</key>
<true/>
</dict>
</plist>








 





 




You might find using the Jamf manifest here will help you identify what you're needing:


https://github.com/Jamf-Custom-Profile-Schemas/ProfileManifestsMirror/tree/main/manifests/ManagedPreferencesApplications


You'll find instructions here:


https://github.com/Jamf-Custom-Profile-Schemas/jamf-manifests/wiki


also make sure you are not using the VPP version. It does not support KFM


Regarding the jamf manifest, I uploaded the manifest to jamf and configured what I thought was correct. I'm not using the VPP version. Everything works correctly after I get past the initial logon and then select the default folder.


Reply