Does it require a login? I don't believe logins can be automated.
Autologon capability has been around for a long time, although it
(obviously, I hope) presents significant security problems if you aren't
careful. (E.g., be sure that physical access to the system is controlled,
and that what can be done to the machine via a network connection is
limited.)
There's a Microsoft discussion of one way to do set up an autologin on
Windows 7:
http://answers.microsoft.com/en-us/...indows-7/99d4fe75-3f22-499b-85fc-c7a2c4f728af
But a much easier method is to use the free "Autologon" SysInternals tool:
http://technet.microsoft.com/en-us/sysinternals/bb963905
One point on security: you can block some of the vulnerabilities of
autologon by configuring the system to immediately lock the console after
logon. Just set up a link in the Startup folder (or a Registry entry in
{HKCU,HKLM}\Software\Microsoft\Windows\CurrentVersion\Run) to invoke the
following command:
RUNDLL32 USER32.DLL,LockWorkStation
Head-up: I've shown "RUNDLL32.DLL" and "USER32.DLL" in caps to make it clear
that the "L" is not the digit 1; you can use any combination of uppercase
and lowercase in typing these strings. The "LockWorkStation" entry *IS*
case-sensitive and must be entered exactly as shown.
Also: this command does not require elevation, so it can be run by an
unprivileged user.
If you put the command into the Registry I recommend that it be in the HKCU
hive for the account used for autologon and not in HKLM; this way if you log
onto the machine with another account the screen won't immediately lock.
Joe