I am having the same problem and have tried this solution to no avail. Anyone else get this to run? Basically I need the WINXP workstation to login to a server, run some coldfusion scripts, then perform a MySQL reload. It works fine when I am logged in and run the script manually, but when I try yo schedule it it pauses from the git-go. Any help would be apprciated. Here's the script Opt("TrayMenuMode",1) run("C:\Program Files\AT&T Global Network Client\NetClient.exe") WinWait("AT&T Global Network Client") Sleep(2000) Send("!C") WinWaitActive("AT&T Global Network Client","0:20") Run("C:\Program Files\Mozilla Firefox\firefox.exe http://websrvr01/cfusion/jdixReload/dailyUpdater.cfm") WinWait("Daily Updater Done - Mozilla Firefox") WinClose("Daily Updater Done - Mozilla Firefox") WinActivate ( "AT&T Global Network Client" ) Send("!D") WinWaitActive("AT&T Global Network Client","Do you want to disconnect from the network?") Send("!Y") WinActivate ( "AT&T Global Network Client" ) Send("!{F4}") RunWait(@COMSPEC & " /c mysql-cghist-reload") Run("C:\Program Files\Mozilla Firefox\firefox.exe http://websrvr01/cfusion/jdixReload/dailyFTP.cfm") WinWait("Daily FTP Done - Mozilla Firefox") WinClose("Daily FTP Done - Mozilla Firefox")