fourte3n Posted November 17, 2004 Posted November 17, 2004 EDIT: gon freecs has saved my day!Here is the AutoIT Script for FTPRush; ----------------------------------------------------------------------------; Set up our defaults/Variables; ----------------------------------------------------------------------------AutoItSetOption ( "WinTitleMatchMode", 1 )$NAME= "**DELETED**"$KEY= "**DELETED**"; ----------------------------------------------------------------------------; Script Start; ----------------------------------------------------------------------------Run ( "FTPRush.exe /S")ProcessWaitClose ( "FTPRush.exe"); Runs the installer silently and waits for its endFileDelete(@DesktopDir & "\FTPRush.lnk");Removes the desktop shortcutRun(@ProgramFilesDir & "\FTPRush\FtpRush.exe");A silent install doesn't start ftprush, so it must be done "manually"WinWaitActive ( "About FTPRush" )Send ( "{ENTER}" )WinWaitActive ( "Confirm" )Send ( "!Y" )WinWaitActive ( "Enter Key" ); by default the "name" cell is activated, so just send your nameSend($NAME); goes to the "key" cell by pressing tabSend("{TAB}"); sends your keySend($KEY); goes to the "ok" button and validateSend("{TAB 2}{ENTER}"); Closes ftprushProcessClose("FtpRush.exe")Thanks again gon freecs
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