6 hours ago
I'm in the process of getting back to testing OneDrive. If I have the default folder set, does this prevent the user from choosing a different folder? I did create a couple of documents and put them in Desktop and Documents prior to deploying OneDrive and the config profile. I have the below plist set and it pulled down all my files that are currently in OneDrive from all of my other testing. The files I added prior to setting up OneDrive don't have the cloud icon next to it. Does the below plist look ok?
<?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>DefaultFolder</key>
<dict>
<key>Path</key>
<string>~/OneDrive - Home</string>
<key>TenantID</key>
<string>myid</string>
</dict>
<key>AutomaticUploadBandwidthPercentage</key>
<integer>30</integer>
<key>FilesOnDemandEnabled</key>
<true/>
<key>BlockExternalSync</key>
<true/>
<key>AllowTenantList</key>
<dict>
<key>myid</key>
<true/>
</dict>
<key>KFMSilentOptIn</key>
<string>myid</string>
<key>KFMSilentOptInWithNotification</key>
<true/>
<key>KFMSilentOptInDesktop</key>
<true/>
<key>KFMSilentOptInDocuments</key>
<true/>
<key>KFMBlockOptOut</key>
<true/>
</dict>
</plist>