Jump to content

Recommended Posts

Posted

I'm trying to use command prompt to upload files to my ftp server since i don't need to install any extra software for it. I'm coding a simple autoit script to do the job for me, but i'm havng issues when i write to CMD.

ControlSend("[CLASS:ConsoleWindowClass]", "", "", "cd " & @UserProfileDir)
        ControlSend("[CLASS:ConsoleWindowClass]", "", "", "{ENTER}", 0)
        ;Sleep(3000)
        ControlSend("[CLASS:ConsoleWindowClass]", "", "", "ftp IP", 0)
        ControlSend("[CLASS:ConsoleWindowClass]", "", "", "{ENTER}", 0)
        ;Sleep(3000)
        ControlSend("[CLASS:ConsoleWindowClass]", "", "", "Username", 0)
        ControlSend("[CLASS:ConsoleWindowClass]", "", "", "{ENTER}", 0)
        ;Sleep(3000)
        ControlSend("[CLASS:ConsoleWindowClass]", "", "", "Password", 0)

Everything goes well until i get to the password part where cmd won't acept ControlSend to write in my password. And i don't want to use "Send" as an option because that would need CMD to be on focus. Anyone can help me here?

Posted

silly question -

  On 12/15/2015 at 4:23 AM, Progh0st said:

... upload files to my ftp server ...

have you tried the FTP UDF that ships with AutoIt, or the SFTP UDF from the Example Scripts forum?

Signature - my forum contributions:

  Reveal hidden contents

 

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...