File Shares
If you have configured Kerberos in Jamf Connect, you can also configure a file share menu item. This menu item is added with an additional configuration profile written to the following domain:
com.jamf.connect.shares
Note: Adding multiple shares can make this setting difficult to manage. Testing and deploying a simple configuration profile first is recommended.
The following configuration profile is an example of file share configuration:
<?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>HomeMount</key>
<dict>
<key>Groups</key>
<array/>
<key>Mount</key>
<false/>
<key>Options</key>
<array/>
</dict>
<key>PayloadDisplayName</key>
<string>Jamf Connect Shares</string>
<key>PayloadType</key>
<string>com.jamf.connect.shares</string>
<key>Shares</key>
<array>
<dict>
<key>AutoMount</key>
<true/>
<key>ConnectedOnly</key>
<true/>
<key>Groups</key>
<array/>
<key>LocalMount</key>
<string></string>
<key>Name</key>
<string>User's Home</string>
<key>Options</key>
<array/>
<key>URL</key>
<string>smb://exampleURL/shares/ExampleHome</string>
</dict>
</array>
<key>Version</key>
<string>1</string>
</dict>
</plist>