FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   INNO TROUBLESHOOT - Questions Here (https://fileforums.com/showthread.php?t=93193)

buttignol 21-11-2013 15:31

KaktoR this was an example has more than an empty folder in the game so I wanted a command to add empty folders

Darkangel5 23-11-2013 09:36

good evening

I would like to create a "create a desktop icon" button on the image below that allows me to have a shortcut on my desktop.

http://img11.hostingpics.net/pics/137581381.jpg

KaktoR 23-11-2013 10:04

Quote:

[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked

[Icons]
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\Game.exe"
Name: "{group}\{#MyAppPublisher}\{#MyAppName}"; Filename: "{app}\Game.exe"

..

danswano 26-11-2013 04:41

Hello everyone especially razor :)
How do i pack a folder to a zip file inside {app} directory using ISexec/ISDone
Then delete the packed folder?

Thanks :)

Darkangel5 26-11-2013 07:47

Quote:

Originally Posted by KaktoR (Post 426255)
..

thank you

Razor12911 26-11-2013 08:53

Quote:

Originally Posted by danswano (Post 426433)
Hello everyone especially razor :)
How do i pack a folder to a zip file inside {app} directory using ISexec/ISDone
Then delete the packed folder?

Thanks :)

Simple.
You need to use Exec and DelTree function.

danswano 26-11-2013 14:06

Can you fix this code for me, i don't know what's wrong:
Quote:

ExtractTemporaryFile('7z.exe');
ExtractTemporaryFile('7z.dll');
if not ISExec ( 0, 0, 0, ExpandConstant('{tmp}\7z.exe'), '-o"' + ExpandConstant('{app}') + '" a -tzip -y -r data.zip"' + ExpandConstant('{app}\datafiles') + '" ', ExpandConstant('{tmp}'), 'please wait.',false) then break;
DeleteFile(ExpandConstant('{app}\datafiles'));
I want to pack mutiple files/folders inside a folder called datafiles into a single zip called data.zip.

hackjack 28-11-2013 02:35

hi, if i have encrypted archive of free arc then how/what to add in iss script so that its get extracted to defined location without asking password, but the archive remains password protected in game iso file or whatever.detailed please

Razor12911 01-12-2013 17:06

Quote:

Originally Posted by hackjack (Post 426520)
hi, if i have encrypted archive of free arc then how/what to add in iss script so that its get extracted to defined location without asking password, but the archive remains password protected in game iso file or whatever.detailed please

action not possible.

Razor12911 01-12-2013 17:08

Quote:

Originally Posted by danswano (Post 426461)
Can you fix this code for me, i don't know what's wrong:


I want to pack mutiple files/folders inside a folder called datafiles into a single zip called data.zip.

you need to use deltree function and not deletefile

y_thelastknight 03-12-2013 08:15

Free Space percentage : {percentage of the free space}

Attachment
Link

how to create like this?
http://img132.imageshack.us/img132/9262/qh23.jpg

lupetto77 03-12-2013 14:10

Hello to all ...

I would like to add a video with the edges of blacks during the installation this way:

http://s10.imagestime.com/out.php/i903893_Immagine.jpg

does anyone know how to do it?

Razor12911 04-12-2013 03:32

Quote:

Originally Posted by y_thelastknight (Post 426758)
Free Space percentage : {percentage of the free space}

Attachment
Link

how to create like this?
http://img132.imageshack.us/img132/9262/qh23.jpg

Free Space / Total Space * 100

y_thelastknight 04-12-2013 03:49

Quote:

Originally Posted by Razor12911 (Post 426773)
Free Space / Total Space * 100

message me on FB

y_thelastknight 05-12-2013 13:04

1 Attachment(s)
hi fellow Member

Check my Attached exe and tell me how is it?

http://img404.imageshack.us/img404/9127/7f48.jpg

danswano 10-12-2013 12:10

Hello,

I have 2 questions:

1- Few games recently have 32bit and 64bit executables, how to make a condition in inno to create a shortcut for the 64bit exe if the system is x64 and a shortcut for the 32bit exe if the system is x86.

2- Is it possible to customize the ISDone.dll error messages?

Thanks.

y_thelastknight 10-12-2013 12:25

Quote:

Originally Posted by danswano (Post 427117)
2- Is it possible to customize the ISDone.dll error messages?
Thanks.

you can edit english.ini file..

danswano 10-12-2013 12:28

Quote:

Originally Posted by y_thelastknight (Post 427118)
you can edit english.ini file..

Not the inno messages, the ISDone.dll error popups.

y_thelastknight 10-12-2013 12:35

Quote:

Originally Posted by danswano (Post 427119)
Not the inno messages, the ISDone.dll error popups.

Dude check english.ini in where arc.ini and other isdone file are placed..edit that it will work.

sentinelks 10-12-2013 12:35

[Files]
Source: "MyProg-x64.exe"; DestDir: "{app}"; Check: IsWin64; install only system x64
Source: "MyProg-x86.exe"; DestDir: "{app}"; Check: "not IsWin64"; no install in win x64

y_thelastknight 10-12-2013 12:38

Quote:

Originally Posted by sentinelks (Post 427121)
[Files]
Source: "MyProg-x64.exe"; DestDir: "{app}"; Check: IsWin64; install only system x64
Source: "MyProg-x86.exe"; DestDir: "{app}"; Check: "not IsWin64"; no install in win x64

Will it work sentinelks??

danswano 10-12-2013 12:40

Quote:

Originally Posted by y_thelastknight (Post 427120)
Dude check english.ini in where arc.ini and other isdone file are placed..edit that it will work.

What about "ISDone.dll" in the popup window title?

sentinelks 10-12-2013 12:40

Quote:

Originally Posted by lupetto77 (Post 426764)
Hello to all ...

I would like to add a video with the edges of blacks during the installation this way:

http://s10.imagestime.com/out.php/i903893_Immagine.jpg

does anyone know how to do it?


16:9 standard with black stripes
4:3 standard no black stripes

sentinelks 10-12-2013 12:42

Quote:

Originally Posted by y_thelastknight (Post 427122)
Will it work sentinelks??

I think so .. or need to create an if

sentinelks 10-12-2013 12:47

Quote:

Originally Posted by danswano (Post 427123)
What about "ISDone.dll" in the popup window title?

"ERROR_PARSE_FILENOTFOUND"="Your message

danswano 10-12-2013 15:59

1 Attachment(s)
Dude i meant the title of the window it self not the content.

hackjack 15-12-2013 01:35

i compiled using blackbox script by kurutuco but i get error during when the setup file is extracting.i tried darkbox setup too. here is the images of error- http://img11.imageshack.us/img11/6941/lkkv.png
http://img607.imageshack.us/img607/5185/vkxz.png
http://img42.imageshack.us/img42/9836/ve3u.png

Dubl1n 19-12-2013 11:20

Hi All -

I am new to the forums and new to INNO installers. The company I work for has used INNO installers for quite some time, well over 5 years - well before I started working here, and it has fallen to me to fix an issue with our installers. Normally we create downloadable installers from our site, and have not had any issues. We do, about once per year, create DVDs to install our product and this year we have run into an issue, while not broken, is frustrating for our QA dept. and will be for our customers.

So the issue: again, the DVDs work - so the installer is not "broken" per se. This year we have 3 DVDs. Starting the installation from Disk 1, no issues. Get to Disk 2 installs some, but then gets to a point where it needs to go back to Disk 1. And it does this about 6 times, before it then asks for Disk 3 and completes. My guess from looking at the files is that it is getting to a file that needs to reference back to another file that is located on Disk 1 and will only continue once it references that file. Again a guess.

Has anyone seen this issue? And is there a way to make certain files group together in the installer so that they will always be in the same bin files and ultimately on the same Disk so that multiple Disk swaps need to occur?

Thanks for the help.
D

Joe Forster/STA 23-12-2013 02:30

Find out in which order the files are being extracted and try to archive them into the installation package in the same order. (That's a tip without actually knowing Inno Setup. :))

GloverK1911 24-12-2013 17:01

How to make a setup file can extract the .bin file?

sentinelks 24-12-2013 17:12

Quote:

Originally Posted by GloverK1911 (Post 427697)
How to make a setup file can extract the .bin file?

Please more details:rolleyes:

chuotchu001 25-12-2013 01:00

Quote:

Originally Posted by GloverK1911 (Post 427697)
How to make a setup file can extract the .bin file?

Go here ;)

GloverK1911 25-12-2013 05:53

Quote:

Originally Posted by sentinelks (Post 427698)
Please more details:rolleyes:

How to make a setup file like this to extract the .bin file compressed
http://i.minus.com/i5u59F4NrlvQc.png

http://i.minus.com/i1JK4lK7H4LSU.png

Razor12911 25-12-2013 05:56

that's an ordinary installer.

all that it require for you is to set up the product files, set bmp images, then done.

sentinelks 25-12-2013 06:07

line red create bin

Code:

#define Internal "C:\Program Files (x86)\Truck Racer\"
#define MyAppName "My Program"
#define MyAppVersion "1.5"
#define MyAppPublisher "My Company, Inc."
#define MyAppExeName "MyProg.exe"

[Setup]
AppName={#MyAppName}
AppVersion={#MyAppVersion}
AppPublisher={#MyAppPublisher}
DefaultDirName={pf}\{#MyAppName}
DefaultGroupName={#MyAppName}
AllowNoIcons=yes
OutputBaseFilename=setup
Compression=lzma
SolidCompression=no
DiskSpanning=yes
SlicesPerDisk=3
DiskSliceSize=1566000000


[Languages]
Name: "default"; MessagesFile: "compiler:Default.isl"

[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked; OnlyBelowVersion: 0,6.1


[Icons]
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon

[File]
#ifdef Internal
Source:{#Internal}*; DestDir: {app}; Flags: ignoreversion recursesubdirs; Excludes:unins*;
#endif


reiji777 27-12-2013 04:57

how to make CIU 1.0.0.6 compatible with windows 8.1? because i often getting error on win8

Razor12911 27-12-2013 05:56

Just tested CIU 1.0.0.6 on Windows 8.1 Enterprise and it works perfect.

danswano 29-12-2013 07:19

1 Attachment(s)
Hello dear ISDone experts,
Is it possible to remove/modify the highlighted text in the popup error message in ISDone?
The title modify is not available in english.ini or it's missing.
I've tried resource hacker and it didn't help.

Thanks :)

y_thelastknight 29-12-2013 20:11

is this correct? if not help me with this.

Quote:

procedure AboutButtonOnClick(Sender: TObject);
begin
If CurPageID=wpWelcome then
begin
MsgBox('Hello.', mbInformation, MB_OK);
end;
end;

altef_4 30-12-2013 04:26

Quote:

Originally Posted by y_thelastknight (Post 427844)
is this correct? if not help me with this.

Code:

procedure AboutButtonOnClick(Sender: TObject);
begin
MsgBox('Hello.', mbInformation, MB_OK);
end;



All times are GMT -7. The time now is 06:37.

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