Posted on 05-16-2012 12:05 PM
Hello,
I've been instructed to make a local account on a small group of Macs that I manage, and have that account automatically login at startup. I'm aware of how to create the accounts using Casper Imaging or Casper Remote, however, I can't seem to figure out how to get the account to login automatically. Is this setting available to be configured through a managed preference or a terminal command that can be scripted.
Thanks,
~Ted
Solved! Go to Solution.
Posted on 05-16-2012 12:08 PM
Posted on 05-16-2012 12:08 PM
Posted on 05-16-2012 12:14 PM
Great! Thanks Nate!
~Ted
Posted on 05-16-2012 05:18 PM
or you could just uncheck the disable automatic login box in the Security control panel & then select the account you want to auto log in in the Accounts / Users & Groups control panel. just sayin'....
Posted on 05-17-2012 07:07 AM
This is a snippet from one of my post image script examples I posted here a long time ago
/usr/bin/osascript <<AppleScript
tell application "System Events"
keystroke "$local_stushort"
keystroke return
delay 3.0
keystroke "$local_stupasswd"
delay 3.0
keystroke tab
keystroke return
end tell
AppleScript
Just fill in the variables and it will run at the login window, or at least it did as of 10.6.8.
Thanks,
Tom
Posted on 05-17-2012 07:39 AM
here's a luggage makefile to produce a pkg that sets this autologin user:
https://github.com/rockpapergoat/luggage/tree/master/autologin
by the same token, you can handle this with a simple script as long as the account exists already, or do it when creating the account.
Posted on 09-07-2018 09:48 AM
Is this still possible to do in Jamf now?