Jump to content

Recommended Posts

Posted

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


Posted

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.

Posted
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

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

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

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

Posted

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

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

Posted

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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

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