Help - Search - Members - Calendar
Full Version: Flash Fxp
MSFN Forums > Unattended Windows Discussion & Support > Application Installs

   
Google Internet Forums Unattended CD/DVD Guide
bobthenob
Hi heres my script for flashfxp 3.3

For other versions you would have to change the reference to your version

just put your serial in the lines that say serial
hope this may help somebody
big thanks to Nologic

; ----------------------------------------------------------------------------
;
; AutoIt Version: 3.1.0
; Author: A.N.Other <myemail@nowhere.com>
;
; Script Function:
; Template AutoIt script.
;
; ----------------------------------------------------------------------------

; Script Start - Add your code below here

run("FlashFXP_32_Setup.exe")
Winwaitactive("Full Setup - FlashFXP v3.2.0 Final")
Send('{ENTER}')

Winwaitactive("Full Setup - FlashFXP v3.2.0 Final","License Agreement")
Send('{TAB}')
Send('{UP}')
Send('{ENTER}')

Winwaitactive("Full Setup - FlashFXP v3.2.0 Final","information before continuing")
Send('{ENTER}')


Winwaitactive("Full Setup - FlashFXP v3.2.0 Final","FlashFXP be installed")
Send('{ENTER}')

Winwaitactive("Folder Does Not Exist")
Send('{ENTER}')

Winwaitactive("Full Setup - FlashFXP v3.2.0 Final","personalize your installtion")
Send('{ENTER}')

Winwaitactive("Full Setup - FlashFXP v3.2.0 Final","components should be installed")
Send('{ENTER}')


Winwaitactive("Full Setup - FlashFXP v3.2.0 Final","Select Additional Tasks")
Send('{TAB}{6}')
Send('{ENTER}')


Winwaitactive("Full Setup - FlashFXP v3.2.0 Final","begin installing FlashFXP")
Send('{ENTER}')

Winwaitactive("Full Setup - FlashFXP v3.2.0 Final","information before continuing")
Send('{ENTER}')


Winwaitactive("Full Setup - FlashFXP v3.2.0 Final","has finished installing")
Send('{ENTER}')

Winwaitactive("FlashFXP v3.3.5 (build 1110) BETA Evaluation - 29 DAYS LEFT")
Send('{tab}')
Send('{tab}')
Send('{tab}')
Send('{ENTER}')

Winwaitactive("Register FlashFXP v3.3.5 (build 1110) BETA")
Send("Serial number",1)
Send('{ENTER}')
SEND("Serial number",1)
Send('{ENTER}')
Send("Serial number",1)
Send('{ENTER}')
SEND("Serial number",1)
Send('{ENTER}')
SEND("Serial number",1)
Send('{ENTER}')
SEND("Serial number")
Send('{tab}')
Send('{tab}')
Send('{tab}')
Send('{ENTER}')

Winwaitactive("FlashFXP","FlashFXP is now licensed")
Send('{ENTER}')

Winwaitactive("FlashFXP")
Send('{ALT}')
Send('{UP}')
Send('{UP}')
Send('{ENTER}')


Winwaitactive("FlashFXP")
Send('{ALT}')
Send('{UP}')
Send('{UP}')
Send('{ENTER}')
Exit
redfive19
CODE
Opt('TrayIconHide', 1)
RunWait('FlashFXP_34_Setup.exe /S')
FileCopy(@ScriptDir & '\Sites.dat', @ProgramFilesDir & '\FlashFXP\Sites.dat', 1)
Run(@ProgramFilesDir & '\FlashFXP\FlashFXP.exe')
WinWait('FlashFXP v3.4.0 (build 1140) Evaluation')
ControlClick('FlashFXP v3.4.0 (build 1140) Evaluation', 'Enter code..', 'TButton1')
WinWait('Register FlashFXP v3.4.0 (build 1140)')
$serial = (');<-- Separate the lines by         & @CRLF &
ControlFocus('Register FlashFXP v3.4.0 (build 1140)', 'OK', 'TMemo1')
ControlSetText('Register FlashFXP v3.4.0 (build 1140)', 'OK', 'TMemo1', $serial)
ControlClick('Register FlashFXP v3.4.0 (build 1140)', 'OK', 'TButton2')
WinWait('FlashFXP', 'This copy of FlashFXP is now licensed')
ControlClick('FlashFXP', 'This copy of FlashFXP is now licensed', 'Button1')
Sleep(1000)
WinWait('FlashFXP', '')
WinClose('FlashFXP', '')


I wrote this script today for v3.4.0 build 1140. It copies over my favorites (sites.dat) and if you don't need this, then you can cut that out.
--=ddSHADOW=--
@redfive19

check the autoit section
redfive19
with all due respect, you should have silenced the install in your script but that's just my preference! I do however like the processwait() and processclose() in your script and am bummed that I didn't think of that.
matthewk
Is there a way to do this with registry to register the application instead of using autoit?
--=ddSHADOW=--
u need to place "flashfxp.key" in FlashFxp program dir
matthewk
QUOTE (--=ddSHADOW=-- @ Jul 1 2006, 07:26 PM) *
u need to place "flashfxp.key" in FlashFxp program dir

Thank you, but that doesn't work when the pc changes hardware.. or for multiple pc's. I read it here
--=ddSHADOW=--
thats way i wrote the autoit script
Google Internet Forums Unattended CD/DVD Guide
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.