Skip to main content
Question

OneDrive Plist/json

  • February 13, 2024
  • 3 replies
  • 56 views

SMR1
Forum|alt.badge.img+13
  • Valued Contributor

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>
 
 

3 replies

talkingmoose
Forum|alt.badge.img+36
  • Community Manager
  • February 13, 2024

Forum|alt.badge.img+8
  • Valued Contributor
  • February 14, 2024

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


SMR1
Forum|alt.badge.img+13
  • Author
  • Valued Contributor
  • February 14, 2024

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.