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 22-07-2024, 06:16
demon964 demon964 is offline
Registered User
 
Join Date: Feb 2014
Location: Azerbaijan
Posts: 38
Thanks: 4
Thanked 7 Times in 5 Posts
demon964 is on a distinguished road
When i run setup (DIsk spn gui used) after 20-30 % cant unpack files. I think fitgirl added maximum 2gb ram usage for this error. its same problem. Can you add maximum 2gb usage to this script?

Last edited by demon964; 02-08-2024 at 03:26.
Reply With Quote
Sponsored Links
  #2  
Old 28-07-2024, 12:08
demon964 demon964 is offline
Registered User
 
Join Date: Feb 2014
Location: Azerbaijan
Posts: 38
Thanks: 4
Thanked 7 Times in 5 Posts
demon964 is on a distinguished road
i need create additional new data file or component file with diskspan and install to Documents folder. How i can do this ?

solution: {userdocs} & {commondocs}

Last edited by demon964; 02-08-2024 at 03:27.
Reply With Quote
  #3  
Old 02-08-2024, 03:25
demon964 demon964 is offline
Registered User
 
Join Date: Feb 2014
Location: Azerbaijan
Posts: 38
Thanks: 4
Thanked 7 Times in 5 Posts
demon964 is on a distinguished road
1)how include and exclude folders, not files?



2) i selected "custom destination to unpack files" for data2.bin to documents folder. When i start uninstall.exe, uninstaller not deleting data2.bin extracted files (documents folder)
Reply With Quote
  #4  
Old 02-08-2024, 08:27
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 demon964 View Post
1)how include and exclude folders, not files?



2) i selected "custom destination to unpack files" for data2.bin to documents folder. When i start uninstall.exe, uninstaller not deleting data2.bin extracted files (documents folder)
1) The folder must be within the selected folder where the game is installed.
then you can use type:
Code:
Bin\*
Texture\*
2) Try using the generate file list option in the DiskSpan GUI. In developer mode select "Create Single List" in the combobox corresponding to "Uninstall files list:" and save.
When compressing, an additional ini file will be generated within setup.dll that will contain information about the files stored in each data#.bin file.

In the LIS installer remove ";" from the beginning of the line below to use the uninstall list option before compile setup.exe.
Code:
#define CreateUninstallList
P.S: If the game has a very large number of files, it may take a while to generate the list after compression, and also the uninstallation will go file by file and will take longer.
Reply With Quote
  #5  
Old 02-08-2024, 11:26
demon964 demon964 is offline
Registered User
 
Join Date: Feb 2014
Location: Azerbaijan
Posts: 38
Thanks: 4
Thanked 7 Times in 5 Posts
demon964 is on a distinguished road
[QUOTE=Cesar82;505171]1) The folder must be within the selected folder where the game is installed.
then you can use type:
Code:
Bin\*
Texture\*
Thanks worked now. It's not a major issue, but even when I add folder exclude list to the first `data.bin` file , it still creates an empty folder after installation.




Can you add maximum 2gb ram usage function from this script? https://www.fileforums.com/showthread.php?t=103201
Reply With Quote
  #6  
Old 02-08-2024, 15:00
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 demon964 View Post
Can you add maximum 2gb ram usage function from this script? https://www.fileforums.com/showthread.php?t=103201
I don't have the time or the energy for that. Ask the script developer.
Reply With Quote
  #7  
Old 03-08-2024, 05:18
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
Quote:
Originally Posted by demon964 View Post
It's not a major issue, but even when I add folder exclude list to the first `data.bin` file , it still creates an empty folder after installation.
This is a freearc issue.
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
Cesar82 (03-08-2024)
  #8  
Old 15-08-2024, 04:59
demon964 demon964 is offline
Registered User
 
Join Date: Feb 2014
Location: Azerbaijan
Posts: 38
Thanks: 4
Thanked 7 Times in 5 Posts
demon964 is on a distinguished road
Please add this functions when you update this script with disk span gui

1) Delete selected game save folder when uninstalling game

2) check regedit for reg files and check C:\\ some files, if found show message that game already installed. You need remove files

Example from audiofeel

Quote:
function CheckFiles(): Boolean;
begin
Result:= True;
if FileExists(ExpandConstant('{app}\BIO4\movie\r508s0 1c.sfd')) then
begin
Result:= False;
MsgBox('game already installed' + #13 + 'please delete files manually or select delete all for auto delete', mbError, MB_OK);
Exit;
end;
end;
3) maximum RAM and CPU usage (ASIS installer have this function) like fitgirl. Because low end PC give error during installing

4) create predefined components for better management. I cant find task number and select from diskSpan gui

https://imgur.com/a/Loqv7KQ

5) if setup.exe found components file (data-voice-eng.bin) enable checkbox automatically. If not found disable checkbox
Reply With Quote
  #9  
Old 15-08-2024, 08:57
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 demon964 View Post
Please add this functions when you update this script with disk span gui

1) Delete selected game save folder when uninstalling game

2) check regedit for reg files and check C:\\ some files, if found show message that game already installed. You need remove files

Example from audiofeel



3) maximum RAM and CPU usage (ASIS installer have this function) like fitgirl. Because low end PC give error during installing

4) create predefined components for better management. I cant find task number and select from diskSpan gui

https://imgur.com/a/Loqv7KQ

5) if setup.exe found components file (data-voice-eng.bin) enable checkbox automatically. If not found disable checkbox
The name is Light Installer to be "light".
So I don't intend to add extra features like delete save games. The option to check if the .bin file is together with setup.exe will be implemented in the next version of LIS.
Tasks and components should be configured directly in the script according to each installation.
There is no checkbox to mark whether you want an installation using LOW config, but you can include a task and replace the TRUE value in Unpack_Process with the state of the checkbox of the task you add for this.

Almost all of these features are supported by LIU beta. I will share an updated version of LIU soon.
Reply With Quote
The Following 2 Users Say Thank You to Cesar82 For This Useful Post:
audiofeel (15-08-2024), demon964 (16-08-2024)
  #10  
Old 16-08-2024, 08:38
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
Light Installer Script 1.0.1.6

Added Light Installer Script 1.0.1.6 in first post.
Code:
- Added compatibility with DiskSpan GUI 2.0.2.1+.
- Fixed some minor bugs.
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
mausschieber (16-08-2024)
  #11  
Old 17-08-2024, 23:35
Lord.Freddy's Avatar
Lord.Freddy Lord.Freddy is offline
Registered User
 
Join Date: Apr 2022
Location: ...
Posts: 54
Thanks: 222
Thanked 40 Times in 25 Posts
Lord.Freddy is on a distinguished road
The following issue will occur when applying a 125%+ scale.
Attached Images
File Type: jpg bug-2.JPG (53.0 KB, 264 views)
File Type: jpg bug-1.JPG (64.2 KB, 260 views)
__________________
¤ Life good be a Dream ¤
Reply With Quote
The Following User Says Thank You to Lord.Freddy For This Useful Post:
Cesar82 (18-08-2024)
  #12  
Old 23-08-2024, 04:11
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 Lord.Freddy View Post
The following issue will occur when applying a 125%+ scale.
Hotfix attached.
Attached Files
File Type: 7z InstallerScript [2024.08.10] HF1.7z (31.4 KB, 18 views)
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
Lord.Freddy (23-08-2024)
  #13  
Old 04-10-2024, 03:15
Dario06's Avatar
Dario06 Dario06 is offline
Registered User
 
Join Date: Sep 2024
Location: Betelgeuse
Posts: 37
Thanks: 10
Thanked 25 Times in 16 Posts
Dario06 is on a distinguished road
Modern style

he's stoned!
Attached Images
File Type: png Screenshot_1.png (34.7 KB, 209 views)
Reply With Quote
  #14  
Old 04-10-2024, 08:56
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 Dario06 View Post
he's stoned!
Does this happen every time, or was it a random occurrence?
What operating system are you using?

It works fine here, even if you use Windows' display scale above 100% (like 150%).
I tested it by compiling with Inno Setup 5.05 (recommended) and also with Inno Setup 6.32 and this error did not occur even once.
My tests were done on Windows 10 PRO x64
Attached Images
File Type: png snap0000966.png (26.0 KB, 206 views)
File Type: png snap0000967.png (44.7 KB, 206 views)
Reply With Quote
  #15  
Old 11-04-2025, 05:28
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
Light Installer Script 1.0.1.7

Added Light Installer Script 1.0.1.7 in first post.
Code:
- Added compatibility with DiskSpan GUI 2.0.2.3+.
- Fixed some minor bugs.
Reply With Quote
The Following 4 Users Say Thank You to Cesar82 For This Useful Post:
Gehrman (12-04-2025), Lord.Freddy (11-04-2025), mausschieber (11-04-2025), Titeuf (11-04-2025)
Reply

Tags
asis, ciu, inno, installer, ultraarc


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
[Help] need Advanced Installer script with Razor1911's UltraArc module rez3vil Conversion Tutorials 3 15-04-2024 02:24
Ultimate Conversion Compressor (UCC) vollachr Conversion Tutorials 55 26-04-2021 09:27
INDEX - Conversion Tutorial Index Razor12911 Conversion Tutorials 5 11-06-2020 02:05
How many forum members does it take to change a light bulb? rms2001 XBox Games 6 12-01-2004 05:31



All times are GMT -7. The time now is 15:35.


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