October 19, 200421 yr hi,i just try your autoit script but i got an error in line 1$var = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\FlashFXP\3", "Install Path")unknown commandand i got the same error with the ultraiso's scriptsome know what going wrong ??TIA
October 20, 200421 yr This works great thanks. For your info EPOKE this is just for registering AFTER flashfxp3 is installed. So do a silent install of FlashfXP3 and then run this script afterwords to register it.
October 20, 200421 yr hi,i just try your autoit script but i got an error in line 1$var = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\FlashFXP\3", "Install Path")unknown commandand i got the same error with the ultraiso's scriptsome know what going wrong ??TIA ^^^^^^^^^^^he's rightinstall flashfxp firststart /wait %systemdrive%\install\Applications\FlashFXP\FlashFXP_30_Setup.exe /silentthen edit the the script with your serial #, then compile the script to exethen runstart /wait %systemdrive%\install\Applications\FlashFXP\AutoReg.exeyou can test the script repeatedly by deleting the flashfxp.key file
October 20, 200421 yr Yes! A script is the only way if you want to install this app on different machines.A friend of mine solved this via a script, too.And since it's INNO setup, you may find this info of some help: http://www.msfn.org/board/index.php?showtopic=16507
October 25, 200421 yr Yes! A script is the only way if you want to install this app on different machines.A friend of mine solved this via a script, too.And since it's INNO setup, you may find this info of some help: http://www.msfn.org/board/index.php?showtopic=16507could you be more specific?i want to install this silently, on ANY machine.what do i need to do?i tried the SFX method, but it didnt work, for the key...neither did simply copying the key file to the dir.
October 25, 200421 yr Yes! A script is the only way if you want to install this app on different machines.A friend of mine solved this via a script, too.And since it's INNO setup, you may find this info of some help: http://www.msfn.org/board/index.php?showtopic=16507could you be more specific?i want to install this silently, on ANY machine.what do i need to do?i tried the SFX method, but it didnt work, for the key...neither did simply copying the key file to the dir. Try this:1. Installed it to a location on my D drive, which contains my software. Separate 80GB drive from my C drive.2. Started the program and entered the registrationm code.3. No more prompting for registration when I need to reinstall my OS. No registry entries are needed.
October 25, 200421 yr Try this:1. Installed it to a location on my D drive, which contains my software. Separate 80GB drive from my C drive.2. Started the program and entered the registrationm code.3. No more prompting for registration when I need to reinstall my OS. No registry entries are needed.I essentially did this...I installed it onto my main drive, input key, then SFXed the whole thing.when i reformatted and ran the SFX, it asked my for the key again...
October 26, 200421 yr @all:has anyone been able to successfully install and register flashfxp 3?I have, read page 2
October 28, 200421 yr Here's another way to install and register FlashFXP.Put the following files in this directory: X:\XPCD\$OEM$\$1\Install\FlashFXP\1- ffxpkey.dat2- FlashFXP.exe3- FlashFXP.jscls@echo offECHO.ECHO FlashFXP 3.0start /wait %systemdrive%\Install\FlashFXP\FlashFXP.exe /silentstart /wait %systemdrive%\Install\FlashFXP\FlashFXP.jsECHO.xxYxxxxSxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxOxxxxExxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxUxxxxRxxxxxxHxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxRxxxxIxxxxxxExxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxAxxxxxxRxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxLxxxxxxExxxxxx=var WshShell = WScript.CreateObject ("WScript.Shell");WshShell.RUN ("\"%systemdrive%\\Program Files\\FlashFXP\\flashfxp.exe\"");WScript.Sleep(5000);WshShell.AppActivate("FlashFXP Evaluation");WScript.Sleep(500);WshShell.SendKeys ("{TAB 3}");WScript.Sleep(500);WshShell.SendKeys ("{ENTER}");WScript.Sleep(500);WshShell.SendKeys ("{TAB 2}");WScript.Sleep(500);WshShell.SendKeys ("{ENTER}");WScript.Sleep(500);var path = WScript.ScriptFullName;var drvltr = path.substring(0,2);WshShell.SendKeys (drvltr + "\\Install\\FlashFXP\\ffxpkey.dat");WshShell.SendKeys ("{ENTER}");WScript.Sleep(500);WshShell.SendKeys ("{TAB}");WScript.Sleep(500);WshShell.SendKeys ("{ENTER}");WScript.Sleep(500);WshShell.SendKeys ("{ENTER}");WScript.Sleep(2000);WshShell.RUN ("taskkill /F /IM flashfxp.exe");
October 29, 200421 yr then edit the the script with your serial #, then compile the script to exeHow does one 'compile the script' to an exe?
October 29, 200421 yr Here's another way to install and register FlashFXP.Put the following files in this directory: X:\XPCD\$OEM$\$1\Install\FlashFXP\1- ffxpkey.dat2- FlashFXP.exe3- FlashFXP.jsThanks, this was quite simple and the instructions were complete. Works perfectly.
November 2, 200421 yr Hello, as execute this script j'ai compiles a exe with autoit-v3 but that does not give an error of script$var = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\FlashFXP\3", "Install Path")run($var & "\FlashFXP.exe")Blockinput(1)winwait("FlashFXP Evaluation")controlclick("FlashFXP Evaluation", "Enter code..", "TButton1")winwait("Register FlashFXP", "OK")Clipput("*****PUT YOUR REGISTRATION HERE*****")Send("^+v")controlclick("Register FlashFXP", "OK", "TButton2")winwait("FlashFXP", "OK")controlclick("FlashFXP", "OK", "Button1")winwait("FlashFXP")processclose("flashfxp.exe")exit
Create an account or sign in to comment