View Single Post
  #80  
Old 13-10-2020, 08:03
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by ALiAS2 View Post
before : It does not allow me to add files manually and gives an error again when compiling ...

I did the same thing, but it tells a series of files to add them, and when I add them, I run into problems during installation for installation.

A message indicates that you have missing file cls-diskspan.dll while the file exists but it is not clear why it displays this message!

I extracted all the files of part UNPACK , I added all the main files of part UNPACK NEW myself, and I introduced the complete files in those parts ToolsList.iss and ToolsList_Init.iss , but after creating the Setup.exe file, it installing shows the message!
Error
missing file cls-diskspan.dll

ALiAS2,

Remove the three lines from ToolsList.iss.
Code:
Source: Files\Unpack\DiskSpan\R2\CLS-DISKSPAN.dll; DestDir: {tmp}; Flags: dontcopy nocompression noencryption;

Source: Files\Unpack\DiskSpan\R2_\CLS-DISKSPAN.dll; DestDir: {tmp}; Flags: dontcopy nocompression noencryption;

Source: Files\Unpack\FreeArc\Arc.ini; DestDir: {tmp}; Flags: dontcopy nocompression noencryption;

the installer takes these two files (arc.ini, cls-diskspan.dll) by default from the "Files\Unpack" folder. so you don't need to add them to ToolsList.iss.

the ToolsList_Init.iss file seems to be fine. it doesn't need to do anything.


edit: be sure to keep a short path to the folder. (ex: D:\Repacks\CorePack Final CJ Edition\)

Last edited by BLACKFIRE69; 13-10-2020 at 08:05.
Reply With Quote
The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ALiAS2 (13-10-2020), ramydarkness (20-03-2022)