Xp autologon problem with wireless

G

Guest

We have some laptops for general use that autologin with a domain account, however when the laptops are turned on or rebooted the autologon executes before the laptops have gotten an IP from the DHCP server thru the wireless connection resulting in the laptops running with the cached profile. Is there a way to delay the autologon until after a network connection is made? Thanks.
 
K

Kelly

I don't deal with domain account issues; however, many use .vbs sleep
scripts. Examples:

WScript.sleep 180000

set shell = createobject("WScript.Shell")

shell.run "C:\Progra~1\Outloo~1\msimn.exe", 1, false

WScript.quit

~~~

set WshShell = CreateObject("WScript.Shell")

WScript.Sleep 60000

WshShell.Run "iexplore.exe"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top