Jump to content

FlashFXP 3 FINAL


evilkwan

Recommended Posts

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 command

and i got the same error with the ultraiso's script

some know what going wrong ??

TIA

Link to comment
Share on other sites


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 command

and i got the same error with the ultraiso's script

some know what going wrong ??

TIA

^^^^^^^^^^^

he's right

install flashfxp first

start /wait %systemdrive%\install\Applications\FlashFXP\FlashFXP_30_Setup.exe /silent

then edit the the script with your serial #, then compile the script to exe

then run

start /wait %systemdrive%\install\Applications\FlashFXP\AutoReg.exe

you can test the script repeatedly by deleting the flashfxp.key file

Link to comment
Share on other sites

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

could 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.

Link to comment
Share on other sites

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

could 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.

Link to comment
Share on other sites

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... :(

Link to comment
Share on other sites

Here's another way to install and register FlashFXP.

Put the following files in this directory: X:\XPCD\$OEM$\$1\Install\FlashFXP\

1- ffxpkey.dat

2- FlashFXP.exe

3- FlashFXP.js

cls

@echo off

ECHO.

ECHO FlashFXP 3.0

start /wait %systemdrive%\Install\FlashFXP\FlashFXP.exe /silent

start /wait %systemdrive%\Install\FlashFXP\FlashFXP.js

ECHO.

xxYxxxxSxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

xxOxxxxExxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

xxUxxxxRxxxxxxHxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

xxRxxxxIxxxxxxExxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

xxxxxxxAxxxxxxRxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

xxxxxxxLxxxxxxExxxxxx=

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");

Link to comment
Share on other sites

Here's another way to install and register FlashFXP.

Put the following files in this directory: X:\XPCD\$OEM$\$1\Install\FlashFXP\

1- ffxpkey.dat

2- FlashFXP.exe

3- FlashFXP.js

Thanks, this was quite simple and the instructions were complete. Works perfectly.

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...