I am testing on a project for onedrive sync here at work.. In the user folder I am testing I created a folder called "OneDrive - Alma College" and assigned that assigned user as owner of the folder. That is the default folder we want to sync to onedrive. In other words ~/OneDrive - Alma College
My plist in /Library/LaunchAgents works to launch onedrive on login, but the "com.microsoft.OneDrive.plist" that I am putting in ~/Library/Preferences does not take effect. After the user enters their credentials for onedrive setup our default folder it is not automatically selected. What I am doing wrong? I am not very familiar with plist files.
Here is the plist file (for security reasons I am showing you x's in the tenant id string). The formatting from textwrangler gets messed up posting here.
<?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>AutomaticUploadBandwidthPercentage</key>
<integer>50</integer>
<key>Tenants</key>
<dict>
<key>DefaultFolder</key>
<string>~/OneDrive - Alma College</string>
<key>TenantID</key>
<string>xxxxxxxxxxxx</string>
</dict>
</dict>
</plist>
