engjcowi Posted November 8, 2011 Posted November 8, 2011 Hey guysim having an issue with inetget. I can download from http sites no problems and i remember being able to download via ftp but recently when ive tried ive had an issue and cant get anything via inetget from an ftp website.Ive tried the following sitesftp://ftp6.nero.com/tools/General-CleanTool.zipftp://ftp.symantec.com/public/english_us_canada/removal_tools/Norton_Removal_Tool.exeand the 1 listed below with no joy. Im wondering if it works for other epeople then my comp has an issue. Could someone pls test this on their comp and or tell me if something im overlooking is a missthanks in advancejamieLocal $hDownload = InetGet("[url="ftp://anti-virus.by/pub/Vba32Check.exe"]ftp://anti-virus.by/pub/Vba32Check.exe[/url]", @TempDir & "\vba32.zip", 5, 1) Do Sleep(250) Until InetGetInfo($hDownload, 2) ; Check if the download is complete. Local $nBytes = InetGetInfo($hDownload, 0) InetClose($hDownload) ; Close the handle to release resourcs. MsgBox(0, "", "Bytes read: " & $nBytes) Drunken Frat-Boy Monkey Garbage
ripdad Posted November 8, 2011 Posted November 8, 2011 These work for me... Local $hDownload = InetGet("ftp://ftp.anti-virus.by/pub/Vba32Check.exe", @TempDir & "Vba32Check.exe", 1, 1) Local $hDownload = InetGet("ftp://ftp6.nero.com/tools/General-CleanTool.zip", @TempDir & "General-CleanTool.zip", 1, 1) Local $hDownload = InetGet("ftp://ftp.symantec.com/public/english_us_canada/removal_tools/Norton_Removal_Tool.exe", @TempDir & "Norton_Removal_Tool.exe", 1, 1) "The mediocre teacher tells. The Good teacher explains. The superior teacher demonstrates. The great teacher inspires." -William Arthur Ward
engjcowi Posted November 8, 2011 Author Posted November 8, 2011 These work for me... Local $hDownload = InetGet("ftp://ftp.anti-virus.by/pub/Vba32Check.exe", @TempDir & "Vba32Check.exe", 1, 1) Local $hDownload = InetGet("ftp://ftp6.nero.com/tools/General-CleanTool.zip", @TempDir & "General-CleanTool.zip", 1, 1) Local $hDownload = InetGet("ftp://ftp.symantec.com/public/english_us_canada/removal_tools/Norton_Removal_Tool.exe", @TempDir & "Norton_Removal_Tool.exe", 1, 1) Thanks Must be my computer Drunken Frat-Boy Monkey Garbage
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