Posted on 02-25-2016 09:58 AM
Hi All,
Stuck on the following. Anyone have any ideas of why its not making the edits on the .plist? Any feedback would be greatly appreciated! Thanks guys!
#!/bin/bash
user=$( ls -l /dev/console | awk '{print $3}' )
defaults write /$user/Library/Preferences/com.microsoft.Lync acceptedSLT143 -bool true
defaults write /$user/Library/Preferences/com.microsoft.Lync UserHasRunMessenger143 -bool true
Solved! Go to Solution.
Posted on 02-25-2016 10:55 AM
figured it out....
#!/bin/bash
user=$( ls -l /dev/console | awk '{print $3}' )
su $user -c "defaults write ~/Library/Preferences/com.microsoft.Lync acceptedSLT143 -bool true"
su $user -c "defaults write ~/Library/Preferences/com.microsoft.Lync UserHasRunMessenger143 -bool true"
Posted on 02-25-2016 10:55 AM
figured it out....
#!/bin/bash
user=$( ls -l /dev/console | awk '{print $3}' )
su $user -c "defaults write ~/Library/Preferences/com.microsoft.Lync acceptedSLT143 -bool true"
su $user -c "defaults write ~/Library/Preferences/com.microsoft.Lync UserHasRunMessenger143 -bool true"
Posted on 02-25-2016 12:14 PM
Administrating Lync - http://www.officeformachelp.com/lync/administration/