|
#1141
|
||||
|
||||
|
Quote:
I want to ask again what compression method is the best So far I'm using [1] Srep + Lzma I'm compressing a 200 mb file to 60 mb but last night I compressed WWE 2K22 with 10 Hours only cut very little from 49.8 GB to 49.3 GB I read on the internet every game has a different compression method.. Do you know what the difference is? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~ Edit: if you want to know the compression method please open the link https://fileforums.com/showthread.php?t=99554 Thanks @KaktoR for telling Last edited by abror; 29-05-2022 at 02:58. |
| Sponsored Links |
|
#1142
|
|||
|
|||
|
hello, I just realized there is an error in the image below in the red frame, it should indicate a number instead of mb?
but I can't find where it is. can you help me? I am using version 7.3.3
|
|
#1143
|
||||
|
||||
|
Quote:
Code:
Component1.Size=4.15 GB |
|
#1144
|
|||
|
|||
|
Code:
;; requires at least two components to enable page. ;; if components is used the global size will be ignored. Component1.Name=Sniper Ghost Warrior 1 Component1.ItemType=CHECK Component1.Size=7.17 GB Component1.Level=0 Component1.Checked=1 Component1.Enabled=1 Component2.Name=Sniper Ghost Warrior 2 Component2.ItemType=CHECK Component2.Size=8.66 GB Component2.Level=0 Component2.Checked=1 Component2.Enabled=1 Component3.Name=Sniper Ghost Warrior 3 Season Pass Edition Component3.ItemType=CHECK Component3.Size=53.5 GB Component3.Level=0 Component3.Checked=1 Component3.Enabled=1 |
|
#1145
|
||||
|
||||
|
I really think ASIS needs a little fix in the source code.
The label "MB" in Inno Setup languages is not constant in all languages. Edit ASIS "Script.iss" and add the lines highlighted in RED (Place the lines in the same order as below). Code:
function FormatDiskSpaceLabel(Labl: String; Size: Extended): String; begin Result := Labl; StringChangeEx(Result, '[mb] MBs', '[size]', True); StringChangeEx(Result, '[mb] Мб', '[size]', True); StringChangeEx(Result, '[mb] Mo', '[size]', True); StringChangeEx(Result, '[mb] MB', '[size]', True); StringChangeEx(Result, '[size]', FormatBytes(Size, 2, False), True); end; |
| The Following 5 Users Say Thank You to Cesar82 For This Useful Post: | ||
fabrieunko (31-05-2022), Gehrman (01-06-2022), KaktoR (01-06-2022), mausschieber (01-06-2022), Titeuf (08-06-2022) | ||
|
#1146
|
|||
|
|||
|
many thanks this worked
|
|
#1147
|
||||
|
||||
|
hi, firstly thank you so much for this great script. i have little question for batch setting
how to show info in caption label when batch run after install, show the text in label caption, ex : " wait finishing proses" on compact mode thanks |
|
#1148
|
||||
|
||||
|
Code:
procedure CurStepChanged(CurStep: TSetupStep);
...
if (CurStep = ssPostInstall) then
begin
if not IsDoneError then
begin
#if UseBatch
if FileExists(ExpandConstant('{#BatchFileName}')) then
WizardForm.FilenameLabel.Caption := 'Waiting for batch...';
Exec2(ExpandConstant('{#BatchFileName}'), '', True);
#endif
__________________
Haters gonna hate
Last edited by KaktoR; 08-06-2022 at 08:00. |
|
#1149
|
||||
|
||||
|
@KaktoR, I think you forgot the begin end.
Code:
procedure CurStepChanged(CurStep: TSetupStep);
...
if (CurStep = ssPostInstall) then
begin
if not IsDoneError then
begin
#if UseBatch
if FileExists(ExpandConstant('{#BatchFileName}')) then
begin
WizardForm.FilenameLabel.Caption := 'Waiting for batch...';
Exec2(ExpandConstant('{#BatchFileName}'), '', True);
end;
#endif
|
|
#1150
|
||||
|
||||
|
worked thanks @kaktor & @Cesar82
and 1 question again when the batch running, i want the prosses hidden/silent ( only see on task manager and text 'Waiting for batch prosses...' ) without window cmd, have setting ? |
|
#1151
|
||||
|
||||
|
Quote:
Code:
Exec2(ExpandConstant('{#BatchFileName}'), '', False);
|
|
#1152
|
||||
|
||||
|
big thanks ,
|
|
#1153
|
||||
|
||||
|
Quote:
Me be like
__________________
Haters gonna hate
|
|
#1154
|
||||
|
||||
|
can the pause button be removed?
|
|
#1155
|
||||
|
||||
|
__________________
Haters gonna hate
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| [Help] need Advanced Installer script with Razor1911's UltraArc module | rez3vil | Conversion Tutorials | 3 | 15-04-2024 02:24 |
| Portable Installer Inno Setup Script | y_thelastknight | Conversion Tutorials | 59 | 23-10-2020 00:02 |
| INDEX - Conversion Tutorial Index | Razor12911 | Conversion Tutorials | 5 | 11-06-2020 02:05 |
| Simple Arc Installer | 78372 | Conversion Tutorials | 1 | 15-06-2017 15:37 |
| MSC+Srep+lzma Simple Script Example | gozarck | Conversion Tutorials | 10 | 07-09-2015 16:31 |