Posted on 10-06-2016 10:41 AM
HI Guys,
any easy & simple apps to stay on the top right menu bar, so users can quickly lock their screen?
thanks!
Solved! Go to Solution.
Posted on 10-06-2016 11:03 AM
Open Keychain Utility. In Preferences, select Show Keychain Satus in Menu Bar. Then using the lock menu bar item, choose Lock Screen.
An alternative, I built an AppleScript which users put in their dock and I called it Lock Screen.
do shell script "open -a /System/Library/Frameworks/ScreenSaver.framework/Versions/A/Resources/ScreenSaverEngine.app"
Posted on 10-06-2016 11:03 AM
Open Keychain Utility. In Preferences, select Show Keychain Satus in Menu Bar. Then using the lock menu bar item, choose Lock Screen.
An alternative, I built an AppleScript which users put in their dock and I called it Lock Screen.
do shell script "open -a /System/Library/Frameworks/ScreenSaver.framework/Versions/A/Resources/ScreenSaverEngine.app"
Posted on 10-06-2016 12:20 PM
Here, we set a hot corner to engage the screen saver. Basically a user drags their cursor to the bottom right corner, screen saver comes on, device now locked, etc...
Posted on 10-06-2016 02:49 PM
thanks! I actually use this command to add lock icon in menu bar:
open /Applications/Utilities/Keychain Access.app/Contents/Resources/Keychain.menu
Posted on 10-06-2016 04:19 PM
I run this via policy at login:
#!/bin/bash
PreferredMenuExtras=(
"/Applications/Utilities/Keychain Access.app/Contents/Resources/Keychain.menu"
)
currentUser=$( ls -l /dev/console | awk '{print $3}' )
userHome=$( dscl . read /Users/$currentUser NFSHomeDirectory | awk '{print $NF}' )
MenuExtras=$( defaults read "$userHome/Library/Preferences/com.apple.systemuiserver.plist" menuExtras | awk -F'"' '{print $2}' )
for menuExtra in "${PreferredMenuExtras[@]}"; do
menuShortName=$( echo "${menuExtra}" | awk -F'/' '{print $NF}' )
if [[ $( echo "${MenuExtras}" | grep "${menuExtra}" ) ]]; then
echo "Menu Extra "${menuShortName}" present"
else
echo "Menu Extra "${menuShortName}" not in plist. Opening..."
open "${menuExtra}"
fi
done
Posted on 10-06-2016 04:32 PM
We use a key combination as a service to lock the screen, pushed out via policy.
Posted on 10-07-2016 05:56 AM
thats nice @dmw3 ! But what key combination did you come up with. When i think of that, most of the combinations are already in use. Using 4 key combination is becoming too mch :S
Posted on 10-07-2016 07:46 PM
@cindySingh The keys we use are - Control/Option/Command/Up Arrow - these are not aligned to anything that we have come across. Easy to remember and same position on all Apple keyboards.
Posted on 10-09-2016 01:14 AM
I'be used the built in screen sleep key combo, coupled with "require password to wake from sleep"