Hi,
I am trying to deploy a new plist from JAMF but this one contains <array> and it failed to deploy.
here the example :
Thanks
Hi,
I am trying to deploy a new plist from JAMF but this one contains <array> and it failed to deploy.
here the example :
Best answer by talkingmoose
If you haven’t yet, it would be worth downloading their example mobileconfig file and examining that.
Something I think I see missing from your plist are the <dict> and </dict> tags that generally come at the beginning and end of the plist just inside the <plist> and </plist> tags. I think all plists are a dictionary first.
<?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>
<array>
<dict>
<key>organization</key>
<string>company1</string>
<key>display_name</key>
<string>C1</string>
<key>onboarding</key>
<false/>
</dict>
<dict>
<key>organization</key>
<string>company2</string>
<key>display_name</key>
<string>C2</string>
<key>onboarding</key>
<false/>
</dict>
</array>
</dict>
</plist>
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.