|
-
Sep 23rd, 2006, 10:45 AM
#1
Thread Starter
Addicted Member
hi...need .bat file creation helm...im stuck!!
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
Code:
@echo off
ftp ftp.members.lycos.co.uk
User
Password
binary
get Code.rar
:done
-
Sep 25th, 2006, 02:16 PM
#2
Re: hi...need .bat file creation helm...im stuck!!
What? Are the commands wrong or do you not know how to create an FTP file?
-
Sep 25th, 2006, 08:53 PM
#3
Re: hi...need .bat file creation helm...im stuck!!
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.
Code:
'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
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
-
Sep 25th, 2006, 08:55 PM
#4
Re: hi...need .bat file creation helm...im stuck!!
This part would be in VB or typed in to the Run dialog box. Depends on how you want to execute this?
VB Code:
'Run Dialog box or Command window -
FTP -s:c:\ftpscript.bat
VB Code:
'VB -
Shell "cmd.exe FTP -s:c:\ftpscript.bat"
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|