FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   Simple Installer Script (https://fileforums.com/showthread.php?t=104745)

Wikinoob 11-07-2022 10:23

Quote:

Originally Posted by KaktoR (Post 497570)
What Inno Setup version are you using?

Inno Compiler 6.2.1

KaktoR 11-07-2022 10:26

It works for me with latest version.

Last check I thought of is if maybe your mp3 file is broken in some way.

Wikinoob 11-07-2022 10:27

Quote:

Originally Posted by KaktoR (Post 497572)
It works for me with latest version.

Last check I thought of is if maybe your mp3 file is broken in some way.

I'll try a different MP3

Wikinoob 11-07-2022 10:30

Quote:

Originally Posted by KaktoR (Post 497572)
It works for me with latest version.

Last check I thought of is if maybe your mp3 file is broken in some way.

Nope changed MP3 but still getting above error

Wikinoob 11-07-2022 10:54

Sorted
 
Everyone who has spent time helping me out tonight, Thankyou very much....

I have managed to sort it out...the bloody BASS.DLL file had been corrupted, redownloaded and viola sorted.

Many Thanks again people :)

ScOOt3r 11-07-2022 11:02

ok i got your script working

cut and paste this into your script file
#define EnableVclStyles /* Remove ; to enable VCL styles support */
#define enablemusic /* Remove ; to enable music support */

you had a space between them
#define EnableVclStyles /* Remove ; to enable VCL styles support */

#define enablemusic /* Remove ; to enable music support */
like this.. which didnt work as soon as i removed the space in between it solved the mp3 issue.

Wikinoob 11-07-2022 11:04

Quote:

Originally Posted by ScOOt3r (Post 497578)
ok i got your script working

cut and paste this into your script file
#define EnableVclStyles /* Remove ; to enable VCL styles support */
#define enablemusic /* Remove ; to enable music support */

you had a space between them
#define EnableVclStyles /* Remove ; to enable VCL styles support */

#define enablemusic /* Remove ; to enable music support */
like this.. which didnt work as soon as i removed the space in between it solved the mp3 issue.

Thanks i've added this to my script, many thanks for your help, it also seemed to be the BASS.DLL had corrupted itself, re downloaded and working

ScOOt3r 11-07-2022 11:05

ok great. .glad we could all help you

cheers and enjoy the great installer

ScOOt3r

Wikinoob 11-07-2022 11:16

Just a thought, Wonder if there's any way for a checkbox to mute sound as my son don't like music on installers lol

Masquerade 11-07-2022 11:54

v1.4.1
  • Typo fixed.
  • BASS library updated.

Wikinoob 11-07-2022 12:35

Thanks once again for all your help

KaktoR 12-07-2022 07:19

Quote:

Originally Posted by Wikinoob (Post 497581)
Just a thought, Wonder if there's any way for a checkbox to mute sound as my son don't like music on installers lol

It is possible yes.

Wikinoob 13-07-2022 09:41

Quote:

Originally Posted by KaktoR (Post 497592)
It is possible yes.

do you happen to know the code?

PadXic 25-09-2022 11:38

Hello, sorry for disturbing, I am new to this and after compiling the script I get the error 'It is not found any file specified for ISArcExtract'. What am I missing or what am I doing wrong ?

Masquerade 25-09-2022 23:56

Quote:

Originally Posted by PadXic (Post 498488)
Hello, sorry for disturbing, I am new to this and after compiling the script I get the error 'It is not found any file specified for ISArcExtract'. What am I missing or what am I doing wrong ?

It means the script cannot find any archives with the specified extension. Please read the front page of this topic and the very top of the script file.

jojo670 23-10-2022 18:26

Hello everyone and thank you for your welcome.
I'm a beginner, I'm using the Masquerade script (Thanks!) but I need some help... so I have a file folder with a program I'd like to install with this installer. I've tried several times, I can't. I managed to put the banner, the icon and the music, put the folder in 'include', I create an installer with two setup.bin I click on setup.exe try to install I have an ISdone error. dll... also I added a line in the setup of the script, because I had an error during the compilation: DiskSpanning=yes.

#define Binary "Test.exe" ;; Type full path to EXE file!

and this, i don't understand what should i put?

in my folder I have an exe file of which I would like the installer to create a shortcut but with a particular line example : "C:\abc\def\ijk.exe" "C:/abc/def/lmn.xex" --fullscreen

If someone can shed some light for me? Thank you and sorry for the spelling mistakes, I use a translator

Masquerade 24-10-2022 00:05

Hi
Quote:

Originally Posted by jojo670 (Post 498844)
put the folder in 'include'

Please don't put any of your program files into the Include folder - Include folder is only for decompressors and their configurations.
Quote:

Originally Posted by jojo670 (Post 498844)
I click on setup.exe try to install I have an ISdone error. dll

Please tell us what ISDone error you experience, a screenshot of the error message would be helpful.
Quote:

#define Binary "Test.exe" ;; Type full path to EXE file!

and this, i don't understand what should i put?
According to your explanation, if your app name is "abc" then you should write the line like this:
Code:

#define Binary "def\ijk.exe"
To add extra parameters to the shortcut, modify line 52 like this:
Code:

Name: "{commondesktop}\{#Name}"; Filename: "{app}\{#Binary}"; Parameters: "lmn.xex" --fullscreen"; Check: CreateADesktopIcon
Hope this helps!

ScarAce1989 28-10-2022 04:52

Hi,

First time I ever try to repack and create an installer, so please be nice to me.

When I try to install the game I get an error: https://imgur.com/a/JClI67t

I used DiskSpan GUI for compressing. Light Installer Script worked fine, but I like the simplicity of Simple Installer Script more.

Any help?

KaktoR 28-10-2022 05:07

I guess you have to extract contents of Setup.dll into Include folder and then recompile the script.

Setup.dll file is a freearc file. Rename .dll to .arc and extract to script Include folder

ScarAce1989 28-10-2022 06:16

Still not working. Got the same error.

I think it has something to do with XTool_2020 folder which include preflate_dll.ddl and XTool.exe
It seems Simple Installer Script doesn't include them because they are in a seperate folder when I compile.

If I move them from the XTool_2020 folder to the Include folder it doesn't work either.

If I use other compressors like srep+LOLZ_NORMAL it works, but I want to use XTool 2020 too...

KaktoR 28-10-2022 06:41

Rename Arc_* and CLS_* to Arc.ini and Cls.ini

ScarAce1989 28-10-2022 07:15

These are the extracted Setup DLL files: https://mega.nz/file/MpYxSICQ#Kr4pUm...y1lytAouf0yzzg

There are multiple ARC_ and CLS_ files.

KaktoR 28-10-2022 07:55

Choose which one you want. They have different settings in cpu/ram usage during extraction.

ScarAce1989 29-10-2022 00:01

Next problem:
https://i.postimg.cc/9M7CnYRq/Error.png

Again it works fine with Light Installer Script.

Masquerade 29-10-2022 00:20

Quote:

Originally Posted by ScarAce1989 (Post 498924)
Next problem:
https://i.postimg.cc/9M7CnYRq/Error.png

Again it works fine with Light Installer Script.

Missing decompressor.

ScarAce1989 29-10-2022 00:23

Sorry but how to fix it? It's the first time I'm repacking.

Nevermind got it working! Adding preflate_dll.dll to the include folder did the trick. :)

Thanks for this great installer script!

mhum32 28-12-2022 04:30

can you use 7z files with this?
 
hi there. :)
im new to this forum and i wanted to say 2 things.

first of all thank you so much for supplying this script. :cool: i have been looking on the internet for AGES to try and find a good looking inno setup script for repacking and other stuff.

second of all, how would you be able to use 7zip for this? :confused:im new to inno setup as well and freearc sucks in my opinion.

thank you :D
sorry for the load of emojis

Masquerade 28-12-2022 05:49

Quote:

Originally Posted by mhum32 (Post 499582)
second of all, how would you be able to use 7zip for this? :confused:im new to inno setup as well and freearc sucks in my opinion.

FreeArc archives only.

TheGh0stie13 13-01-2023 11:44

[help]SIS error code 2 (unknown compression method)

arc.ini \/

[External compressor:thor]
packcmd = THOR.exe e5 $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = THOR.exe d $$arcpackedfile$$.tmp $$arcdatafile$$.tmp

Masquerade 13-01-2023 12:35

What is thor.exe? I have never heard of a thor compressor before. Make sure you put thor.exe into the Include folder before compiling your installer.

TheGh0stie13 13-01-2023 12:37

Quote:

Originally Posted by Masquerade (Post 499764)
What is thor.exe? I have never heard of a thor compressor before. Make sure you put thor.exe into the Include folder before compiling your installer.

already have, still gives the same error via ISDONE.dll(as in isdone shows the msg)

Carldric Clement 13-01-2023 22:23

Quote:

Originally Posted by TheGh0stie13 (Post 499762)
[help]SIS error code 2 (unknown compression method)

arc.ini \/

[External compressor:thor]
packcmd = THOR.exe e5 $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = THOR.exe d $$arcpackedfile$$.tmp $$arcdatafile$$.tmp

What is the THOR?

TheGh0stie13 14-01-2023 03:58

Quote:

Originally Posted by Carldric Clement (Post 499768)
What is the THOR?

a file compression tool

it works with freearc but need to test decompression

it is made by oscar garcia (NOT THE FOOTBALLER)

Lord.Freddy 14-01-2023 10:22

I think that's what he said :o
https://encode.su/threads/807-The-return-of-THOR!

Carldric Clement 16-01-2023 08:55

Quote:

Originally Posted by Lord.Freddy (Post 499790)
I think that's what he said :o
https://encode.su/threads/807-The-return-of-THOR!

unfortunately, the download link is dead. :(

kj911 17-01-2023 08:09

1 Attachment(s)
Thor 0.96 .... easy findable.. ;)

More compressors: http://www.geocities.ws/lovepimple_mail/

LeVx 30-05-2023 18:39

Quote:

Originally Posted by Lord.Freddy (Post 499790)
I think that's what he said :o
https://encode.su/threads/807-The-return-of-THOR!

sorry to ressurect this, its in the freearc powerpack
(also where you will find alot of other methods
link\/
http://web.archive.org/web/201403251...Pack-0.666.exe

Cyd 22-01-2024 05:37

errors
 
:mad::confused:[IMG]"C:\Users\caleb\Pictures\Screenshots\Screensho t (29).png"[/IMG]

KaktoR 22-01-2024 08:18

It would be a good Idea if you upload that image somewhere on a image upload site so we can actually see it.

Cyd 22-01-2024 22:40

sure is a errors when i click install button: it is not found any file specified for ISArcExtract


All times are GMT -7. The time now is 22:38.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com