Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 07-02-2019, 16:36
houcine80's Avatar
houcine80 houcine80 is offline
Registered User
 
Join Date: Jul 2013
Location: Save Palestine
Posts: 873
Thanks: 3,107
Thanked 3,913 Times in 570 Posts
houcine80 is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
[PercentLabel] is for the label if you don't use smallinstaller. [PercentLabelSI] is for Smallinstaller only (I think).
[PercentLabel] withOut smallInstaller i think
Reply With Quote
The Following User Says Thank You to houcine80 For This Useful Post:
Behnam2018 (17-02-2020)
Sponsored Links
  #2  
Old 08-02-2019, 03:40
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,684
Thanks: 1,106
Thanked 7,331 Times in 2,834 Posts
KaktoR is on a distinguished road
@Cesar:
I've found something strange.

If you install with diskspan and CIU asks for next archive, it seems that some files will be unpacked after this message pop up.

Installer was at 15,7% if the "Next Disc" message pop up, a few seconds later it was on 16,1% and unpacked some files. It seems to be a delay or something.
__________________
Haters gonna hate
Reply With Quote
  #3  
Old 08-02-2019, 06:29
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,073
Thanks: 1,814
Thanked 2,302 Times in 786 Posts
Cesar82 is on a distinguished road
@KaktoR

I did not realize that.
Are files also extracted, or only the percentage (including progress bar) changed?
Possibly this occurs inside some of the libraries (Isdone.dll, Unarc.dll, or DiskSpan.dll).
This bug is only visible using diskspan, because UltraArc does not pause progress while installing (does not request part .002, etc).
I think this is not so important to correct.

The progress of CIU I think very wrong as it is.
Example: If you put 2 ARC files. The first one with 1 MB and the second with 1 GB.
When extracting the first one (1 MB) will already be showing 50% progress and the remaining time will be equal to the time it took to extract the first 1 MB.
This could be fixed by adding a Size (Size of extracted files)
It would add up all the size and divide by the amount of files.

Code:
//Setup.ini (DiskSpan File)
[ExtractSettings]
ArcFile1=Data1.bin.001;DestDir:{app};Type:ARC;Disk:1; Size:1200;

//Records.ini (UltraArc or DiskSpan File)
[Record1]
Type=Freearc_Original
Source={src}\Data1.bin.001
Output={app}
Disk=1
Size=1200

Last edited by Cesar82; 08-02-2019 at 06:38.
Reply With Quote
The Following 4 Users Say Thank You to Cesar82 For This Useful Post:
pakrat2k2 (08-02-2019), sajmon83 (09-02-2019), Simorq (08-02-2019), zirkhaki (22-02-2019)
  #4  
Old 27-02-2019, 12:24
Simorq's Avatar
Simorq Simorq is offline
Registered User
 
Join Date: Mar 2014
Location: Iran
Posts: 642
Thanks: 3,602
Thanked 1,308 Times in 464 Posts
Simorq is on a distinguished road
Quote:
Originally Posted by Cesar82 View Post
@KaktoR

I did not realize that.
Are files also extracted, or only the percentage (including progress bar) changed?
Possibly this occurs inside some of the libraries (Isdone.dll, Unarc.dll, or DiskSpan.dll).
This bug is only visible using diskspan, because UltraArc does not pause progress while installing (does not request part .002, etc).
I think this is not so important to correct.

The progress of CIU I think very wrong as it is.
Example: If you put 2 ARC files. The first one with 1 MB and the second with 1 GB.
When extracting the first one (1 MB) will already be showing 50% progress and the remaining time will be equal to the time it took to extract the first 1 MB.
This could be fixed by adding a Size (Size of extracted files)
It would add up all the size and divide by the amount of files.

Code:
//Setup.ini (DiskSpan File)
[ExtractSettings]
ArcFile1=Data1.bin.001;DestDir:{app};Type:ARC;Disk:1; Size:1200;

//Records.ini (UltraArc or DiskSpan File)
[Record1]
Type=Freearc_Original
Source={src}\Data1.bin.001
Output={app}
Disk=1
Size=1200
Please make this change.

can use "Progress" instead of "SIZE".
For example
Code:
ArcFile1=Data1.bin.001;DestDir:{app};Type:ARC;Disk:1; Progress:20
ArcFile2=Data2.bin.001;DestDir:{app};Type:ARC;Disk:1; Progress:60
ArcFile2=Data3.bin.001;DestDir:{app};Type:ARC;Disk:1; Progress:20
20+60+20=100

Last edited by Simorq; 27-02-2019 at 12:27.
Reply With Quote
The Following 4 Users Say Thank You to Simorq For This Useful Post:
K4miKaZe (27-02-2019), mausschieber (27-02-2019), sajmon83 (01-03-2019), zirkhaki (27-03-2019)
  #5  
Old 27-02-2019, 18:43
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,073
Thanks: 1,814
Thanked 2,302 Times in 786 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by Simorq View Post
Please make this change.

can use "Progress" instead of "SIZE".
For example
Code:
ArcFile1=Data1.bin.001;DestDir:{app};Type:ARC;Disk:1; Progress:20
ArcFile2=Data2.bin.001;DestDir:{app};Type:ARC;Disk:1; Progress:60
ArcFile2=Data3.bin.001;DestDir:{app};Type:ARC;Disk:1; Progress:20
20+60+20=100
It would not work.
UltraArc makes splits automatically when file is larger than disk (At least old version of UA).
Size will work fine in all cases, including the items on the task page
Size will be optional. If not put will work as before.
It would be simple to add Size to the UA because you just put the FindFirst function after you complete and add the values to the Records.ini
Reply With Quote
The Following 2 Users Say Thank You to Cesar82 For This Useful Post:
sajmon83 (01-03-2019), Simorq (28-02-2019)
  #6  
Old 28-04-2019, 03:47
Kral Kral is offline
Registered User
 
Join Date: May 2018
Location: America
Posts: 20
Thanks: 4
Thanked 0 Times in 0 Posts
Kral is on a distinguished road
Exclamation RePack Troubleshooting

Quote:
Originally Posted by Cesar82 View Post
It would not work.
UltraArc makes splits automatically when file is larger than disk (At least old version of UA).
Size will work fine in all cases, including the items on the task page
Size will be optional. If not put will work as before.
It would be simple to add Size to the UA because you just put the FindFirst function after you complete and add the values to the Records.ini
[FONT="<font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Arial Siyah</font></font>"]What are the values ​​to enter in ten .bin file? [/FONT]
Reply With Quote
  #7  
Old 28-04-2019, 13:37
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,073
Thanks: 1,814
Thanked 2,302 Times in 786 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by Kral View Post
What are the values ​​to enter in ten .bin file?
For now the script with this Size function is not ready yet.
Version 3.0.0.0.u3 does not have the Size function.
Soon I will post a beta script of version 3.0.0.1 with the new features in the interface, including the Size function (I'm having a little time now).
But answering your question: (Version 3.0.0.1 only)
If you use 10 bin files created with diskspan, you only need to enter the name of the .bin.001 file and enter the size of the total sum of the parts.
If you use division of UltraArc you will need to inform the size of each part and each key splited and the final size of the sum of the size of the files in the key relative to the merged file.
Reply With Quote
  #8  
Old 27-03-2019, 14:35
zirkhaki's Avatar
zirkhaki zirkhaki is offline
Registered User
 
Join Date: Jul 2009
Location: Iran
Posts: 309
Thanks: 1,455
Thanked 178 Times in 111 Posts
zirkhaki is on a distinguished road
Quote:
Originally Posted by Cesar82 View Post
@KaktoR


The progress of CIU I think very wrong as it is.
Example: If you put 2 ARC files. The first one with 1 MB and the second with 1 GB.
When extracting the first one (1 MB) will already be showing 50% progress and the remaining time will be equal to the time it took to extract the first 1 MB.
This could be fixed by adding a Size (Size of extracted files)
It would add up all the size and divide by the amount of files.

Code:
//Setup.ini (DiskSpan File)
[ExtractSettings]
ArcFile1=Data1.bin.001;DestDir:{app};Type:ARC;Disk:1; Size:1200;

//Records.ini (UltraArc or DiskSpan File)
[Record1]
Type=Freearc_Original
Source={src}\Data1.bin.001
Output={app}
Disk=1
Size=1200
I tried to add this to setup.ini but still does not work.
I have a "data1.bin" which is 160MB and a data2.bin.001 which is 21.4GB.
data1.bin goes to 50% in progress bar.

I used these methos:
Code:
[ExtractSettings]
ArcFile1=Data1.bin;DestDir:{app};Type:ARC;Disk:1;Size:600;
ArcFile2=Data2.bin.001;DestDir:{app};Type:ARC;Disk:1;Size:31500;

or

[ExtractSettings]
ArcFile1=Data1.bin;DestDir:{app};Type:ARC;Disk:1; Size:160;
ArcFile2=Data2.bin.001;DestDir:{app};Type:ARC;Disk:1; Size:21400;

or 

[ExtractSettings]
ArcFile1=Data1.bin;DestDir:{app};Type:ARC;Disk:1; Progress:5;
ArcFile2=Data2.bin.001;DestDir:{app};Type:ARC;Disk:1; Progress:95;
I even used "Size=**" in Records.ini but still didn't work.
Reply With Quote
  #9  
Old 08-02-2019, 08:23
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,684
Thanks: 1,106
Thanked 7,331 Times in 2,834 Posts
KaktoR is on a distinguished road
Files are extracted too (but only if you have many small files within the archive). But I can't tell you if the files actually are really extracting or just a delay is CurFile

---

Yes true. But I think yener did it so to keep things simple.

Size should be just optional in my opinion.
__________________
Haters gonna hate
Reply With Quote
The Following 2 Users Say Thank You to KaktoR For This Useful Post:
pakrat2k2 (08-02-2019), sajmon83 (09-02-2019)
  #10  
Old 09-02-2019, 20:05
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,073
Thanks: 1,814
Thanked 2,302 Times in 786 Posts
Cesar82 is on a distinguished road
News to CIU

I have posted a test preview of the checklistbox that I will add to CIU in the CIU Dev group.
You members of the CIU Dev group test and give feedback and suggestions on how it looks better.
Reply With Quote
The Following 5 Users Say Thank You to Cesar82 For This Useful Post:
mausschieber (10-02-2019), omdj (10-02-2019), pakrat2k2 (10-02-2019), sajmon83 (10-02-2019), Simorq (11-02-2019)
  #11  
Old 23-02-2019, 11:32
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
for UWP games do you use both setup.ini & Setup_EXTERNAL.ini ( named correctly ? )
as its the only file that has UWP. Also extract settings arent needed..

thanks
Reply With Quote
  #12  
Old 23-02-2019, 12:13
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,684
Thanks: 1,106
Thanked 7,331 Times in 2,834 Posts
KaktoR is on a distinguished road
Setup_EXTERNAL.ini is just meant for an override (like the old setup's where you could place Setup.ini file next to setup.exe to override the [ExtractSettings] options).

If you save UWP settings to Setup.ini, Setup will read this settings as long as no Setup_EXTERNAL.ini is present besides Setup.exe. If Setup_EXTERNAL.ini is present besides Setup.exe, Setup will take settings from Setup_EXTERNAL.ini.
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
pakrat2k2 (23-02-2019)
  #13  
Old 23-02-2019, 12:30
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,073
Thanks: 1,814
Thanked 2,302 Times in 786 Posts
Cesar82 is on a distinguished road
If I understood correctly, pakrat2k2 wants to know if it uses Setup.ini (External) with a section, it is necessary to have the information contained in the other sections too;

If this is the question:
The information you need (and if it is supported in external setup.ini) you can add it to the external INI.
If this information does not exist in the external INI, it will read the internal INI.

Except the [Registry#] section, if there is [Registry1], it will ignore all the internal INI registry sections.
I will change [Registry#] to the same default at the next update (Read external first, and if not, read the internal)
Reply With Quote
The Following 2 Users Say Thank You to Cesar82 For This Useful Post:
K4miKaZe (23-02-2019), pakrat2k2 (23-02-2019)
  #14  
Old 26-02-2019, 08:48
zirkhaki's Avatar
zirkhaki zirkhaki is offline
Registered User
 
Join Date: Jul 2009
Location: Iran
Posts: 309
Thanks: 1,455
Thanked 178 Times in 111 Posts
zirkhaki is on a distinguished road
is it possible to automatically launch an exe file with "Run as Admin" after installation.
I've done this normally, but I want to do it with run as admin.
specifically I want to run InstallApp.exe for UWP games.
still I am unsuccessful to install a UWP game and also make a shortcut for it. so I just want to run that exe and play the game from Start Menu.
Reply With Quote
  #15  
Old 26-02-2019, 14:41
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,073
Thanks: 1,814
Thanked 2,302 Times in 786 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by zirkhaki View Post
is it possible to automatically launch an exe file with "Run as Admin" after installation.
I've done this normally, but I want to do it with run as admin.
specifically I want to run InstallApp.exe for UWP games.
still I am unsuccessful to install a UWP game and also make a shortcut for it. so I just want to run that exe and play the game from Start Menu.
Because you do not register the UWP game using the [UWPGame] section of setup.ini, instead of using InstallApp.exe to register the game?
- By doing so your shortcuts will be placed on the desktop and the PlayButton (if exists) of the autorun page will work properly.
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
zirkhaki (26-02-2019)
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
INDEX - Conversion Tutorial Index Razor12911 Conversion Tutorials 5 11-06-2020 02:05
[GSERIES] Custom Installer Ultimate V2g Gupta Conversion Tutorials 226 01-06-2018 13:12
Crysis 3 DVD9 to 3xDVD5 Custom Installer spawniectes PC Games - CD/DVD Conversions 79 31-08-2017 07:19



All times are GMT -7. The time now is 14:49.


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