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 11-07-2025, 14:24
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,334 Times in 2,837 Posts
KaktoR is on a distinguished road
If you use xtool, try lm option

Code:
xtool:lm:
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
LILU (13-07-2025)
Sponsored Links
  #2  
Old 10-08-2025, 15:27
LILU LILU is offline
Registered User
 
Join Date: Dec 2022
Location: Nederlands
Posts: 57
Thanks: 40
Thanked 55 Times in 42 Posts
LILU is on a distinguished road
Freezing

Good day. What could be the reason for the ‘freezing’ of the program? It hangs for hours and ultimately does nothing. This happened in both versions 22 and 23.
Compression configuration: xtool:c16mb:mzlib:dd3+lzma2:d64m:fb128:lc4:mc10000 00:lp0
OS: Windows 11 23H2
Reply With Quote
  #3  
Old 04-10-2025, 06:09
random_nik random_nik is offline
Registered User
 
Join Date: Apr 2023
Location: N/A
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
random_nik is on a distinguished road
i repacked a game and burn on 3 dvd, but i have an error unarc.dll -1 when decompresson start from second dvd. Decompression successfull if i install a game from HDD. I use DiskSpan GUI v2.0.2.3.
Reply With Quote
  #4  
Old 04-12-2025, 13:08
Jawahir95 Jawahir95 is offline
Registered User
 
Join Date: Jul 2016
Location: Iraq
Posts: 6
Thanks: 18
Thanked 1 Time in 1 Post
Jawahir95 is on a distinguished road
Hi Cesar82
Can you make my script modified just like

Vesta[24.05] (modifyed).7z
OpenSetup[05.06] (modifyed).7z

Please

I PM you, thanks
Reply With Quote
  #5  
Old 09-01-2026, 04:12
LILU LILU is offline
Registered User
 
Join Date: Dec 2022
Location: Nederlands
Posts: 57
Thanks: 40
Thanked 55 Times in 42 Posts
LILU is on a distinguished road
Good day. Please tell me if there will be any updates (for example, 2.0.2.4)? Will the game database be updated (presets in _Developer MODE)? And how is it possible to ‘attach’ (so that the GUI has the WemTool setting) by analogy with the selection of MEDIA COMPRESSOR and FINAL COMPRESSOR in _Developer MODE?
Reply With Quote
  #6  
Old 09-01-2026, 04:28
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,334 Times in 2,837 Posts
KaktoR is on a distinguished road
There are several DSG updates, but internal for now. But I guess the update will come soon.

As for WemTool as a indipendent method for freearc: I don't think this will work because you have to call it from cmd.

Edit: Here is the latest database update. Use it with the DSG files from mausschieber conversions. He has a newer build I send him some months ago for testing, although it's already outdated the database files should work nevertheless I guess.

Edit 2: There were not much database updates lately simply because of the fact that 90% of todays game releases are unreal engine 5 and there is not much benefits in repacking them, not to say there is no point in repacking them at all if you save just max 10% of the initial size and wait hours and hours for installing them.
Attached Files
File Type: 7z DATABASE_20.12.2025.7z (15.31 MB, 13 views)
__________________
Haters gonna hate

Last edited by KaktoR; 09-01-2026 at 04:53.
Reply With Quote
The Following 3 Users Say Thank You to KaktoR For This Useful Post:
Cesar82 (10-01-2026), LILU (09-01-2026), mausschieber (11-01-2026)
  #7  
Old 09-01-2026, 05:28
LILU LILU is offline
Registered User
 
Join Date: Dec 2022
Location: Nederlands
Posts: 57
Thanks: 40
Thanked 55 Times in 42 Posts
LILU is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
There are several DSG updates, but internal for now. But I guess the update will come soon.

As for WemTool as a indipendent method for freearc: I don't think this will work because you have to call it from cmd.

Edit: Here is the latest database update. Use it with the DSG files from mausschieber conversions. He has a newer build I send him some months ago for testing, although it's already outdated the database files should work nevertheless I guess.

Edit 2: There were not much database updates lately simply because of the fact that 90% of todays game releases are unreal engine 5 and there is not much benefits in repacking them, not to say there is no point in repacking them at all if you save just max 10% of the initial size and wait hours and hours for installing them.
Thank you for your reply. Is there a manual for WemTool? A video? It's difficult to understand how to use it with DiskSpan and the ‘standard’ ISDone_Example.iss. You can send it to me in a private message.
Reply With Quote
  #8  
Old 11-01-2026, 05:38
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,334 Times in 2,837 Posts
KaktoR is on a distinguished road
First you have to call WemTool.exe with -e option from cmd or batch file to encode WEM files.
Code:
WemTool.exe -e
Then you can either call WemTool.exe with a batch file from inno setup or directly from the inno setup script within installation.

Example:
ISDone_Example.iss
Code:
if CurStep = ssPostInstall then
  begin
    ExtractTemporaryFile('WemTool.exe');
    FileCopy(ExpandConstant('{tmp}\WemTool.exe'), ExpandConstant('{app}\WemTool.exe'), False);
    ShellExec('open', ExpandConstant('{app}\WemTool.exe'), '-d', ExpandConstant('{app}'), SW_HIDE, ewWaitUntilTerminated, ResultCode);
DSG_Module.iss
Code:
[Files]
Source: "Include\WemTool.exe"; Flags: dontcopy
The above example will execute WemTool.exe with -d parameter after install process.

Example with batch execution:
ISDone_Example.iss
Code:
if (CurStep = ssPostInstall) then
  begin
    ExtractTemporaryFile('batch.bat');
    FileCopy(ExpandConstant('{tmp}\batch.bat'), ExpandConstant('{app}\batch,bat'), False);
    ShellExec('open', ExpandConstant('{app}\batch.bat'), '', '', SW_SHOWMINIMIZED, ewWaitUntilTerminated, ResultCode);
DSG_Module.iss
Code:
[Files]
Source: "Include\batch.bat"; Flags: dontcopy
Batch.bat
Code:
WemTool.exe -d
If you decide to use WemTool with batch file, you will see the actual progress of it.
Attached Files
File Type: 7z test.7z (22.73 MB, 6 views)
__________________
Haters gonna hate

Last edited by KaktoR; 11-01-2026 at 05:47.
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
LILU (11-01-2026)
  #9  
Old 11-01-2026, 07:52
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,334 Times in 2,837 Posts
KaktoR is on a distinguished road
It works fine here. I tested 3 different DSG versions, including 2.0.2.3 from this thread.
__________________
Haters gonna hate
Reply With Quote
  #10  
Old 12-01-2026, 07:37
Butza Butza is offline
Registered User
 
Join Date: Jun 2021
Location: Kiev
Posts: 12
Thanks: 3
Thanked 0 Times in 0 Posts
Butza is on a distinguished road
What's the algorithm for Dead Space 2023?
Reply With Quote
  #11  
Old 12-01-2026, 07:38
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,334 Times in 2,837 Posts
KaktoR is on a distinguished road
zstd
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
Butza (12-01-2026)
  #12  
Old 12-01-2026, 07:44
Butza Butza is offline
Registered User
 
Join Date: Jun 2021
Location: Kiev
Posts: 12
Thanks: 3
Thanked 0 Times in 0 Posts
Butza is on a distinguished road
xtool:mzstd Compressed game size: 216,90 MB (Ratio 102.52%) very few((
Reply With Quote
  #13  
Old 12-01-2026, 07:58
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,334 Times in 2,837 Posts
KaktoR is on a distinguished road
You have to use correct zstd library

Use xtool:mzstd:zstd_145
__________________
Haters gonna hate
Reply With Quote
  #14  
Old 12-01-2026, 08:08
Butza Butza is offline
Registered User
 
Join Date: Jun 2021
Location: Kiev
Posts: 12
Thanks: 3
Thanked 0 Times in 0 Posts
Butza is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
You have to use correct zstd library

Use xtool:mzstd:zstd_145

Thanks, it works) Is there a method to understand what the name should be or just test it?
Reply With Quote
  #15  
Old 12-01-2026, 08:44
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,688
Thanks: 1,106
Thanked 7,334 Times in 2,837 Posts
KaktoR is on a distinguished road
What do you mean by "name"?
__________________
Haters gonna hate
Reply With Quote
Reply

Tags
cls-diskspan, compressor, diskspan, diskspan_gui


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
How to use diskspan bat mausschieber Conversion Tutorials 13 14-01-2026 19:20
DiskSpan on Linux hydefromt70s Conversion Tutorials 1 15-10-2020 07:12
DiskSpan FreeArc returns an error Titeuf Conversion Tutorials 2 18-07-2020 01:46
CIU 3.0.0.0.u3 (2019-03-28) - Diskspan Issues mesut28 Conversion Tutorials 17 30-03-2019 02:28
R.G. Gamers DiskSpan Simorq Conversion Tutorials 1 28-10-2017 08:22



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


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