Results 1 to 4 of 4

Thread: hi...need .bat file creation helm...im stuck!!

  1. #1

    Thread Starter
    Addicted Member Incures's Avatar
    Join Date
    May 2006
    Location
    south afrika
    Posts
    205

    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

  2. #2
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    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?

  3. #3
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    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 PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI 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

  4. #4
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    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:
    1. 'Run Dialog box or Command window -
    2. FTP -s:c:\ftpscript.bat
    VB Code:
    1. 'VB -
    2. 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 PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI 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
  •  



Click Here to Expand Forum to Full Width