Progh0st 3 Posted December 15, 2015 Share Posted December 15, 2015 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? Link to post Share on other sites
orbs 206 Posted December 15, 2015 Share Posted December 15, 2015 silly question -... 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? Progh0st 1 Link to post Share on other sites
TheDcoder 1,810 Posted December 15, 2015 Share Posted December 15, 2015 There is a FTP UDF distributed along with AutoIt, Check the help file Progh0st 1 EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time) DcodingTheWeb Forum - Follow for updates and Join for discussion Link to post Share on other sites
Progh0st 3 Posted December 15, 2015 Author Share Posted December 15, 2015 Sorry i'm new to this lol, i had no idea about those UDF! You have save me so much work. Link to post Share on other sites
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