toothpick Posted August 1, 2009 Posted August 1, 2009 (edited) I have this very simple script that uses the FTP functions (only in beta version) to download a file. It works on my Windows 7 laptop every time. But on my XP desktop, it just hangs forever before quitting without saving the file. I have confirmed that it DOES CONNECT to the FTP server. But its the _FTP_FileGet function that makes it hang in XP... Any ideas? I have spent hours on automation scripts and all of them work just fine in XP except this one. But without this, all the others are useless! #include <FTPEx.au3> Local $h_Handle $ftpuser = 'user' $ftppass = 'password' $ftphost = 'ftp.webhost.com' ;FTP download the new DB file. $Open = _FTP_Open('MyFTP Control') $Conn = _FTP_Connect($Open, $ftphost, $ftpuser, $ftppass) $dl = _FTP_FileGet($Conn, "/electronics/temp/Full-EP2009Jul29-2008.txt", "c:\DLTEST.TXT") $Ftpc = _FTP_Close($Open) On another note, is there any way to make a popup window that displays the FTP server responses? TIA! Edited August 1, 2009 by toothpick
toothpick Posted August 2, 2009 Author Posted August 2, 2009 (edited) Well... I got it working after updating my system BIOS. Strange that the bios was causing this problem... But I guess it was. Thanks for all the help! lol... Edited August 2, 2009 by toothpick
Mr5o1 Posted October 23, 2009 Posted October 23, 2009 Well... I got it working after updating my system BIOS. Strange that the bios was causing this problem... But I guess it was. Thanks for all the help! lol...Wow.. system bios fixed that?? I'm having the same drama.. wrote a real handy script which works on my win7 machine - but not having any luck with it on my XP -or- vista machines. Driving me a bit nuts.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now