Posted on 03-14-2017 11:15 AM
I am trying to enable Flash Player and only flash player in safari through a configuration profile. my plist looks like this.
<?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>ManagedPlugInPolicies</key>
<dict>
<key>com.macromedia.Flash Player.plugin</key>
<dict>
<key>PlugInDisallowPromptBeforeUseDialog</key>
<true/>
<key>PlugInFirstVisitPolicy</key>
<string>PlugInPolicyAllowWithSecurityRestrictions</string>
<key>PlugInHostnamePolicies</key>
<array>
<dict>
<key>PlugInHostname</key>
<string>Your URL Name</string>
<key>PlugInPageURL</key>
<string>https://Your URL Name/</string>
<key>PlugInPolicy</key>
<string>PlugInPolicyAllowWithSecurityRestrictions</string>
<key>PlugInRunUnsandboxed</key>
<true/>
</dict>
</array>
</dict>
</dict>
<key>PlugInInfo</key>
<dict>
<key>com.macromedia.Flash Player.plugin</key>
<dict>
<key>plugInCurrentState</key>
<true/>
</dict>
</dict>
</dict>
</plist>
The way it is currently, it only enables flash and disables all over plugins. If i do not include plugininfo, it is not enabled. but everything else is fine.
Also, is there a location where i can find options for all of these settings? i was only able to cobble so much together from what i found online.