PDA

View Full Version : ISDone.dll


Viper645
09-03-2017, 19:38
Can anyone help me with the full usage of ISDone.dll, ISDone script definition and variables etc. I mean everything of ISDone.dll. I also need every versions and scripts of ISDone to download. Thanks

ffmla
09-03-2017, 23:04
Can anyone help me with the full usage of ISDone.dll, ISDone script definition and variables etc. I mean everything of ISDone.dll. I also need every versions and scripts of ISDone to download. Thanks

hi,
You may spend time to learn about tools and repacking, Use the search function to find most related topics with your questions.

In the case isdone user princeguptha post a resources.
http://fileforums.com/showpost.php?p=456735&postcount=4

Open the script file{.iss} read it carefully to understand the script.

Each tools and libraries work with following way

1.Definition of function
2.Adding necessary files in files section
3.functions and procedures in code section
4.Extract necessary files before function execution.
5.Execute the functions.
6.Exit

Viper645
09-03-2017, 23:46
PCFVar, what is the usage of it?

Viper645
09-03-2017, 23:51
I need the full script of ISDone_Arc&Exec.dll and ISDone_Arc&Exec&DiskChange&PackZIP.dll separated into two script

ffmla
10-03-2017, 00:09
PCFVar, what is the usage of it?
version of precomp which used in compression. i think

Viper645
10-03-2017, 00:11
And use of those dll's? (See post #4)

ffmla
10-03-2017, 00:12
I need the full script of ISDone_Arc&Exec.dll and ISDone_Arc&Exec&DiskChange&PackZIP.dll separated into two script
isdone is a library to organize the tools in inno extraction.
To use necessary function which you need.Remove other function in script.
Thats all

Viper645
10-03-2017, 00:17
Ok, let me check

ffmla
10-03-2017, 00:18
isdone_all.dll contains all functions
other have their uniqueness

you may refer authers reference

http://krinkels.org/resources/isdone.67/

Viper645
10-03-2017, 00:35
Lastly, I need PCFonFLY usage. It's only used in ISARCEXTRACT, not in RAR and 7ZIP

Viper645
10-03-2017, 00:37
And can you upload that file you gave the link in post#9 here?

ffmla
10-03-2017, 00:51
Lastly, I need PCFonFLY usage. It's only used in ISARCEXTRACT, not in RAR and 7ZIP
then use ISDone_Arc&Exec.dll.{89 Kb one}
renamed to isdone.dll.

Viper645
10-03-2017, 00:59
then use ISDone_Arc&Exec.dll.{89 Kb one}
renamed to isdone.dll.

I think you didn't understood, I want to know how to use PCFonFLY

And ya, thanks for the file

ffmla
10-03-2017, 02:00
I think you didn't understood, I want to know how to use PCFonFLY

And ya, thanks for the file

PCFonFLY is just a constant. true or false.:rolleyes:

Viper645
10-03-2017, 09:39
I need the full usage of ISExec tutorial. Can you help me please?

ffmla
11-03-2017, 08:42
I need the full usage of ISExec tutorial. Can you help me please?

function ISExec

function ISExec (CurComponent:Cardinal; PctOfTotal, ProcessTime:double; ExeName, Parameters, TargetDir, OutputStr:string, Show:boolean):boolean;


Examples:
If not ISExec (0, 0, 0, ExpandConstant ('{tmp} \ precomp.exe'), ExpandConstant ('-r -o "{app} \ data.pak" "{app} \ data.pcf"') , 'Data.pak', false);
Runs the precomp.exe file located in the {tmp} folder with the parameters for extracting data.pcf from {app} into data.pak with the "data.pak" text in the "Extract file:" field in the install window. Console application window is hidden. The progress of the operation is considered based on the test pass and the previous operations performed.


If not ISExec (0, 100, -1, ExpandConstant ('{tmp} \ precomp.exe'), ExpandConstant ('-r -o "{app} \ data.pak" "{app} \ data.pcf"' ), 'Data.pak', false);
The same as the previous example, but the percentages are manual and the progress will be in place before execution, then jump to 100%. The window of the application being launched is also hidden.

Example Are taken from profrager help file.

Viper645
12-03-2017, 03:07
What is defined by 0, 100, -1

Gupta
12-03-2017, 03:24
read this
got the answer of your almost every question related to isdone

Viper645
12-03-2017, 06:14
Hey, it's not in english

78372
13-03-2017, 05:48
I think this ISDone Example & Script may help you to understand something and easily creating your own installer using ISDone. Compress files with freearc without external compressor and hook it up with the installer using the example.

Script Edited by Me :D

Viper645
14-03-2017, 05:46
I think this ISDone Example & Script may help you to understand something and easily creating your own installer using ISDone. Compress files with freearc without external compressor and hook it up with the installer using the example.

Script Edited by Me :D

Ok, I see it's a very beginner script to use for repacking. Let me see how well I can use it

Razor12911
14-03-2017, 11:06
http://fileforums.com/showpost.php?p=418281&postcount=89

Wrote this a couple of years ago, you may find it useful.

Viper645
14-03-2017, 18:59
Will you please check your PM? Razor12911