Skip to content

Instantly share code, notes, and snippets.

@tjluoma
Last active August 29, 2015 14:01
Show Gist options
  • Save tjluoma/a7fb4af9668d8b62a3df to your computer and use it in GitHub Desktop.
Save tjluoma/a7fb4af9668d8b62a3df to your computer and use it in GitHub Desktop.
Save this to /Library/LaunchDaemons/com.tjluoma.unhide-users.plist and make it owned by root:wheel. Or use http://files.luo.ma/installers/unhide-users/Unhide-Users.pkg Full story at: http://www.tuaw.com/2014/05/16/automatically-unhide-the-users-folder-after-10-9-3-update/
<?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>Label</key>
<string>com.tjluoma.unhide-users</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/chflags</string>
<string>nohidden</string>
<string>/Users</string>
<string>/Users/Shared</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>StandardErrorPath</key>
<string>/var/log/com.tjluoma.unhide-users.log</string>
<key>StandardOutPath</key>
<string>/var/log/com.tjluoma.unhide-users.log</string>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment