cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
NorthrupJ
Level 2

Point to folder to Extract Executable

Hi New to Flexera, How do I point to a folder to extract a self extracting executable?

This works, but it does not extract it to the correct folder on the install.
$INSTALLER_LAUNCH_DIR$\..\10mElevation.exe

I need it to "point" to this folder and run off of the DVD install.
C:\Program Files\RAGE\ElevationDatabases\

Cheers,
Jim
Labels (1)
0 Kudos
(3) Replies
pv7721
Level 20

Have you checked the manual in the Standard Variables and Magic Folders section?
0 Kudos
john1245jjh
Level 2

NorthrupJ wrote:
Hi New to used cars Flexera, How do I point to a folder to extract a self extracting executable?

This works, houses for rent in orlando fl but it does not extract it to the correct folder on the install.
$INSTALLER_LAUNCH_DIR$\..\10mElevation.exe

I como vender por internet need it to "point" to this cleaning gold coast folder and run off of the DVD install.
C:\Program Files\RAGE\ElevationDatabases\

Cheers,
Jim


Hi, I'm new here and I have a similar problem. I don't know what it's wrong.
0 Kudos
KEiGHT
Level 6

//Take this as example ;


#include "ifx.h"

#define WIN_DIR WINDIR^"system32"
#define FILE_SPEC "D3DX9_43.dll"
#define SOURCE_FILES SRCDIR
#define DIRECTX "Support\\directx9.0c\\dxsetup.exe"
#define CMD_LINE " /silent"

begin

// Installing DirectX redist

if(FindFile ( WIN_DIR , FILE_SPEC ,svResult) < 0)then
if(AskYesNo ( "DIRECTX 9.0c Update is required.\n\nThe DirectX redist installation includes :\nAll the latest and previous released DirectX runtime.\nD3DX, XInput and Managed DirectX components.\n\nDo you want to install now DirectX End-User Runtimes ?" , YES )=YES)then
StatusUpdate ( ON, 100 );
SetStatusWindow( 100, "Installing DirectX. Please wait..." );
Delay(1);
LaunchApplication ( DIRECTX ,CMD_LINE, SOURCE_FILES , SW_SHOW , 1000000 , WAIT | LAAW_OPTION_SHOW_HOURGLASS);
endif;
endif;
end;

SRCDIR = is the constant for your source like DVD disc. I hope to learn something from this example.
0 Kudos