Click to See Complete Forum and Search --> : hi...need .bat file creation helm...im stuck!!
Incures
Sep 23rd, 2006, 10:45 AM
hi all i wanna creat .bat file that will connect my ftp account.
so this is what i created....
and i dont know what to do...next...its connect to the FTP and dont wright the user and .etc
@echo off
ftp ftp.members.lycos.co.uk
User
Password
binary
get Code.rar
:done
mendhak
Sep 25th, 2006, 02:16 PM
What? Are the commands wrong or do you not know how to create an FTP file?
RobDog888
Sep 25th, 2006, 08:53 PM
I think I posted the solution before for you?
You need to use a script for the ftp login as the bat file will not process any other lines after the initial FTP one. so it will never get to the login credentials.
'Command prompt code to execute:
ftp -s:c:\ftpscript.bat
'Your script file (c:\ftpscript.bat) contents:
@echo off
ftp ftp.members.lycos.co.uk
User yourusername
Pwd 8888888
binary
get Code.rar
:done
RobDog888
Sep 25th, 2006, 08:55 PM
This part would be in VB or typed in to the Run dialog box. Depends on how you want to execute this?
'Run Dialog box or Command window -
FTP -s:c:\ftpscript.bat'VB -
Shell "cmd.exe FTP -s:c:\ftpscript.bat"
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.