Skip to content

Instantly share code, notes, and snippets.

@macmule
Last active November 26, 2021 22:47
Show Gist options
  • Select an option

  • Save macmule/12f79fe7dfc43945416fef9c44e8718e to your computer and use it in GitHub Desktop.

Select an option

Save macmule/12f79fe7dfc43945416fef9c44e8718e to your computer and use it in GitHub Desktop.
#!/bin/bash
####################################################################################################
#
# License: https://macmule.com/license/
#
####################################################################################################
# Get the username of the currently logged in user
loggedInUser=$(/bin/ls -l /dev/console | /usr/bin/awk '{ print $3 }')
#################
# Allow the Microsoft Sharepoint Plug-In
#################
/usr/libexec/plistbuddy -c "delete ManagedPlugInPolicies:com.microsoft.sharepoint.browserplugin" /Users/$loggedInUser/Library/Preferences/com.apple.Safari.plist
/usr/libexec/plistbuddy -c "add ManagedPlugInPolicies:com.microsoft.sharepoint.browserplugin dict" /Users/$loggedInUser/Library/Preferences/com.apple.Safari.plist
/usr/libexec/plistbuddy -c "add ManagedPlugInPolicies:com.microsoft.sharepoint.browserplugin:PlugInFirstVisitPolicy string PlugInPolicyAllowNoSecurityRestrictions" /Users/$loggedInUser/Library/Preferences/com.apple.Safari.plist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment