To configure your system to not prompt when it wakes from sleep/standby you can use these PowerShell functions. If you are new to PowerShell and don't know what to do with them let me know in the comments...
For XP:
function Enable-PasswordProtectedWakeup {
& POWERCFG /GLOBALPOWERFLAG on /OPTION RESUMEPASSWORD
}
function Disable-PasswordProtectedWakeup {
& POWERCFG /GLOBALPOWERFLAG off /OPTION RESUMEPASSWORD
}
For Windows 7:
function Set-PasswordProtectedWakeup {
param ([switch] $Enabled)
& powercfg -SETACVALUEINDEX SCHEME_CURRENT SUB_NONE CONSOLELOCK ([int]$Enabled.ToBool()) # AC Power
& powercfg -SETDCVALUEINDEX SCHEME_CURRENT SUB_NONE CONSOLELOCK ([int]$Enabled.ToBool()) # DC Power
& powercfg -setactive SCHEME_CURRENT
}
# Enable Password On Wake.
Set-PasswordProtectedWakeup -Enabled:$True
# Disable Password On Wake.
Set-PasswordProtectedWakeup -Enabled:$False
If you want to configure your machine to not prompt for a password when it boots up and have it auto log you in you can use this PowerShell function to enable auto logon securely. This calls the same Win32 API to store your credentials as the auto logon utility from Sysinternals :
http://andyarismendi.blogspot.com/2011/10/powershell-set-secureautologon.html