epoke Posted October 19, 2004 Posted October 19, 2004 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
MaDxCrEaM Posted October 20, 2004 Posted October 20, 2004 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.
newbie4ever Posted October 20, 2004 Posted October 20, 2004 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
mazin Posted October 20, 2004 Posted October 20, 2004 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
a06lp Posted October 25, 2004 Posted October 25, 2004 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.
homiebrah Posted October 25, 2004 Posted October 25, 2004 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.
a06lp Posted October 25, 2004 Posted October 25, 2004 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...
a06lp Posted October 25, 2004 Posted October 25, 2004 @all:has anyone been able to successfully install and register flashfxp 3?
newbie4ever Posted October 26, 2004 Posted October 26, 2004 @all:has anyone been able to successfully install and register flashfxp 3?I have, read page 2
mazin Posted October 28, 2004 Posted October 28, 2004 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");
Sanjay Posted October 29, 2004 Posted October 29, 2004 then edit the the script with your serial #, then compile the script to exeHow does one 'compile the script' to an exe?
Sanjay Posted October 29, 2004 Posted October 29, 2004 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.
mazin Posted October 29, 2004 Posted October 29, 2004 You're welcome.Whenever it's possible, I avoid using third-party applications.
crackpsx Posted November 2, 2004 Posted November 2, 2004 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
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now