Changed RSS feed to show full posts
Lately, I’ve been reading more and more of my daily news from my iPhone and I’ve started to get pissed off at blogs that I like that only show a short summary in the RSS feed. This drove me nuts. Then today I just realized that I was doing the exact same thing! My bad.
So if you were cursing me for only showing the summaries and stopped subscribing, fear not, that should be fixed for future posts.
Subscribe to my feed from here.

Ten blogs every Mac admin should know about
Need to load up your RSS reader with loads of Mac goodness? Mac Admin Corner just not quite enough for you? There are plenty of Mac experts out there sharing their knowledge with the world. Here’s a list of sites that I follow.
Can Open Directory be used enterprise wide?
A few years ago, before I started at my employer, a project was started for an enterprise-wide Open Directory setup. Each business unit within the university has a decent number of Macs that were mostly unmanaged. The project passed governance and a budget was set aside to fund the implementation. This was back in the Tiger days and for some reason, everyone involved decided to wait for Leopard to be released. In the mean time, I had a Tiger OD setup so we could manage a handful of classrooms that needed to be managed.
Migrate Local User to Domain Account
If you are migrating your machines to authenticate via Active Directory, you may need to convert your local user accounts and their home folders to an AD user account and retain the home folder. I had a script posted here but that version was Tiger only because it used NI* commands.
Read the rest of this entry »
Add user to admin group with Applescript
Need a way for your team to easily make a network or local user an admin? Copy and paste the code below into Script Editor (Applescript Editor in 10.6) and save it as an application. This can be used before deploying a machine to the user, or after they’ve logged in.
(* Add user to admin group This script should not need any modification, unless you want to "brand" it. http://macadmincorner.com *) tell application "System Events" set shortName to name of current user end tell set userName to text returned of (display dialog "Enter the users shortname" default answer shortName) do shell script "dseditgroup -o edit -a " & userName & " -t user admin" with administrator privileges display dialog (do shell script "dscl . -read /Groups/admin users") with title "The following users are admins on this machine" buttons "Ok" default button 1



