Shawn, I think you are on the right path with the LDAP (as this is an Win2K3 network). When running the following in debug, everything seems to be working good (variables getting filled correctly, or so it seems) except for the $objUser.AccountExpirationDate, nothing there. I really appreciate the assistance in this, I just wish I was better adapted to deal with the whole AD crap. Thanks again.

 Code:
Break On

$= SetOption("WrapAtEol","On")

$objSysInfo = CreateObject("ADSystemInfo") 

$strUser = $objSysInfo.UserName 

$objUser = GetObject("LDAP://" + $strUser) 

?"Your account expires on " + $objUser.AccountExpirationDate + "." 

Exit 0

[/quote]