#1021
|
||||
|
||||
error below....
added directly to forum>pakrat2k2 Last edited by pakrat2k2; 04-06-2015 at 12:46. |
Sponsored Links |
#1022
|
||||
|
||||
Windows version uses numbers like below:
Second part of Windows Version as determined by Microsoft themselves. (Win2000 = 5.0) (Win XP = 5.1) (WinXP64 & WinServer2003 & 2003R2 = 5.2) (Win Vista & WinServer2008 = 6.0) (WinServer2008R2 & Win7 = 6.1) (WinServer2012 & Win8 = 6.2) (WinServer2012R2 & Win8.1 = 6.3) Numbers before the dot (.) are major & numbers after are minor. SO in your image( from script ) number should be 5.1.3 NOT 5.1.2600 rather then always uploading to 3rd party site attatch directly to post under manage attatchments. |
#1023
|
|||
|
|||
I can add videos and slideshow at once?
|
#1024
|
|||
|
|||
Blackbox script problems
Hello everyone, I am having a little problem with blackbox script. Everything works fine except I can not get it to install any components like directx, nivdiaphysx or framework. I have enable the buttons but for some reason, they will not install. I also downloaded and tried the Kurutucu black script to see if it something I am doing wrong, and it does the same thing. I went over the code, and nothing is missing. Any advise will be welcome.
Thank in advance |
#1025
|
||||
|
||||
Quote:
|
#1026
|
|||
|
|||
HELP ! ! ! ! !
I m getting this error while compiling Main.iss |
#1028
|
|||
|
|||
Hi,
How to compress into multiple .bin files / limit the size of one .bin ? I have game that weighs more than 1xDVD9 after compression and I want to make it possible for users to burn it and make 2xDVD5 size @edit: would be nice if there's an option to split the existing .bin file into two files instead of recompressing the whole game again just to split it. @edit2: I found sfk tool, I'll try to split it with it, hope it will be compatible with decompression after it. @edit3: setup.exe gives currupted header error (unarc.dll error -14) after using sfk Automatic splitting in ultraarc doesn't work for me. Last edited by n00b9100; 12-06-2015 at 00:25. |
#1030
|
|||
|
|||
Help
I am facing another problem. I made 6 compressed files but my Setup.exe is extracting the 1st one only . What should I do?
Here is my Archives.ini code HTML Code:
if not ShowChangeDiskWindow ('Please Insert Disk To Continue...', ExpandConstant('{src}'),'Setup-1.bin') then break; if not ISArcExtract ( 0, 15, ExpandConstant('{src}\Setup-1.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; if not ShowChangeDiskWindow ('Please Insert Disk 2 To Continue...', ExpandConstant('{src}'),'Setup-2.bin') then break; if not ISArcExtract ( 15, 30, ExpandConstant('{src}\Setup-2.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; if not ShowChangeDiskWindow ('Please Insert Disk 3 To Continue...', ExpandConstant('{src}'),'Setup-3.bin') then break; if not ISArcExtract ( 30, 45, ExpandConstant('{src}\Setup-3.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; if not ShowChangeDiskWindow ('Please Insert Disk 4 To Continue...', ExpandConstant('{src}'),'Setup-4.bin') then break; if not ISArcExtract ( 45, 60, ExpandConstant('{src}\Setup-4.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; if not ShowChangeDiskWindow ('Please Insert Disk 5 To Continue...', ExpandConstant('{src}'),'Setup-5.bin') then break; if not ISArcExtract ( 60, 75, ExpandConstant('{src}\Setup-5.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; if not ShowChangeDiskWindow ('Please Insert Disk 6 To Continue...', ExpandConstant('{src}'),'Setup-6.bin') then break; if not ISArcExtract ( 75, 100, ExpandConstant('{src}\Setup-6.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; Last edited by Grumpy; 12-06-2015 at 19:15. |
#1031
|
||||
|
||||
if not ShowChangeDiskWindow ('Please Insert Disk To Continue...', ExpandConstant('{src}'),'Setup-1.bin') then break;
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\Setup-1.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; if not ShowChangeDiskWindow ('Please Insert Disk 2 To Continue...', ExpandConstant('{src}'),'Setup-2.bin') then break; if not ISArcExtract ( 0,10, ExpandConstant('{src}\Setup-2.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; if not ShowChangeDiskWindow ('Please Insert Disk 3 To Continue...', ExpandConstant('{src}'),'Setup-3.bin') then break; if not ISArcExtract ( 0,10, ExpandConstant('{src}\Setup-3.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; if not ShowChangeDiskWindow ('Please Insert Disk 4 To Continue...', ExpandConstant('{src}'),'Setup-4.bin') then break; if not ISArcExtract ( 0, 10, ExpandConstant('{src}\Setup-4.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; if not ShowChangeDiskWindow ('Please Insert Disk 5 To Continue...', ExpandConstant('{src}'),'Setup-5.bin') then break; if not ISArcExtract ( 0,10, ExpandConstant('{src}\Setup-5.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; if not ShowChangeDiskWindow ('Please Insert Disk 6 To Continue...', ExpandConstant('{src}'),'Setup-6.bin') then break; if not ISArcExtract (0, 10, ExpandConstant('{src}\Setup-6.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; |
#1032
|
||||
|
||||
i need a correct .bat to use msc+srep with kurutucu conpressor
|
#1033
|
|||
|
|||
I have a few questions:
How do we edit cjstyle files?? How do I translate these texts? Immagine.jpg Punchao, try this: if not ShowChangeDiskWindow ('Please Insert Disk To Continue...', ExpandConstant('{src}'),'Setup-1.bin') then break; if not ISArcExtract ( 0, 15, ExpandConstant('{src}\Setup-1.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; if not ShowChangeDiskWindow ('Please Insert Disk 2 To Continue...', ExpandConstant('{src}'),'Setup-2.bin') then break; if not ISArcExtract ( 0, 15, ExpandConstant('{src}\Setup-2.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; if not ShowChangeDiskWindow ('Please Insert Disk 3 To Continue...', ExpandConstant('{src}'),'Setup-3.bin') then break; if not ISArcExtract ( 0, 15, ExpandConstant('{src}\Setup-3.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; if not ShowChangeDiskWindow ('Please Insert Disk 4 To Continue...', ExpandConstant('{src}'),'Setup-4.bin') then break; if not ISArcExtract ( 0, 15, ExpandConstant('{src}\Setup-4.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; if not ShowChangeDiskWindow ('Please Insert Disk 3 To Continue...', ExpandConstant('{src}'),'Setup-5.bin') then break; if not ISArcExtract ( 0, 15, ExpandConstant('{src}\Setup-5.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; if not ShowChangeDiskWindow ('Please Insert Disk 4 To Continue...', ExpandConstant('{src}'),'Setup-6.bin') then break; if not ISArcExtract ( 0, 15, ExpandConstant('{src}\Setup-6.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break; Last edited by Pasq92; 20-06-2015 at 02:55. |
#1034
|
||||
|
||||
Quote:
|
#1035
|
|||
|
|||
can someone told me how to change the blue color progress bar to another color plz...thnx in advance
|
Thread Tools | |
Display Modes | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup | REV0 | Conversion Tutorials | 129 | 21-05-2021 05:51 |
INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 06:57 |
Copy file with Inno Setup Script | emrahcey | Software | 1 | 02-07-2010 08:24 |