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-2021, 07:37
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,077
Thanks: 1,828
Thanked 2,311 Times in 789 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by Grumpy View Post
Just to be sure, you would like the Title to be:

Light Installer Script (LIS) | DiskSpan_GUI
Yes. Also change the character "|" for "-".
Light Installer Script (LIS) - DiskSpan_GUI
Thanks!
Reply With Quote
Sponsored Links
  #2  
Old 08-02-2021, 06:10
Grumpy's Avatar
Grumpy Grumpy is offline
Moderator
 
Join Date: Jun 2004
Location: Australia
Posts: 5,695
Thanks: 1,256
Thanked 1,851 Times in 812 Posts
Grumpy is on a distinguished road
Quote:
Originally Posted by Cesar82 View Post
if possible ...
As all you regulars have shown many times with what you all do ... anything is possible.

Title Changed.
__________________
Can't find a Game Conversion? Check the 'Conversion INDEX'
Reply With Quote
The Following 2 Users Say Thank You to Grumpy For This Useful Post:
Cesar82 (08-02-2021), Ele (08-02-2021)
  #3  
Old 11-02-2021, 07:18
Stor31 Stor31 is offline
Registered User
 
Join Date: Aug 2013
Location: Wahranne
Posts: 323
Thanks: 1,025
Thanked 86 Times in 68 Posts
Stor31 is on a distinguished road
how to modify LightInstallerLogoOrange.bmp (Light Installer) to another name ???
thx
Reply With Quote
  #4  
Old 11-02-2021, 17:12
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,077
Thanks: 1,828
Thanked 2,311 Times in 789 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by Stor31 View Post
how to modify LightInstallerLogoOrange.bmp (Light Installer) to another name ???
thx
Open the script and change the name as needed.
The parts of the code referring to the logo image file are below (Search the script).
Code:
#define Theme "ORANGE" 
Code:
#if Theme != "NULL"
Source: "Resources\LightInstallerLogo{#Theme}.bmp"; DestName: "LightInstallerLogo.bmp"; DestDir: "{tmp}"; Flags: dontcopy
#endif
Code:
  #if Theme != "NULL"
  with TBitmapImage.Create(WizardForm) do
  begin
    Parent := WizardForm;
    SetBounds(ScaleX(14), WizardForm.NextButton.Top + ScaleY(1), ScaleX(225), ScaleY(20));
    Bitmap.AlphaFormat := afDefined;
    Bitmap.LoadFromFile(ExpandConstant('{tmp}\LightInstallerLogo.bmp'));
    #if VER >= 0x06000000
    Anchors := [akLeft, akBottom];
    #endif
    if '{#AppURL}' <> '' then begin
      OnClick := @LogoOnClick;
      Cursor := crHand;
    end;
  end;
  #endif
Code:
  #if Theme != "NULL"
  ExtractTemporaryFile('LightInstallerLogo.bmp');
  #endif
P.S: If you just want to change the name of the image file that is in the resources folder, you only need to change it after the word resources in code 2. This way the image inside setup.exe will remain as LightInstaller.bmp, but your external file will have the name you put, but it must be a bitmap image (.bmp).
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
Stor31 (13-02-2021)
  #5  
Old 12-02-2021, 05:21
bolek932 bolek932 is offline
Registered User
 
Join Date: Oct 2017
Location: POLAND
Posts: 15
Thanks: 4
Thanked 0 Times in 0 Posts
bolek932 is on a distinguished road
what is records.ini for?

I have a problem with him...
Reply With Quote
  #6  
Old 12-02-2021, 08:28
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,077
Thanks: 1,828
Thanked 2,311 Times in 789 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by bolek932 View Post
what is records.ini for?

I have a problem with him...
What problems?
Records.ini is necessary because it contains all information from the files compressed by DiskSpan_GUI about the compressed files
Reply With Quote
  #7  
Old 12-02-2021, 11:20
bolek932 bolek932 is offline
Registered User
 
Join Date: Oct 2017
Location: POLAND
Posts: 15
Thanks: 4
Thanked 0 Times in 0 Posts
bolek932 is on a distinguished road
Quote:
Originally Posted by Cesar82 View Post
What problems?
Records.ini is necessary because it contains all information from the files compressed by DiskSpan_GUI about the compressed files
When he wants to install a compressed game, the setup.exe installer "install" in a second. Skips archives and creates only "unistall.exe" in the installation folder and a shortcut on the desktop . If I move or delete the records.ini file, the installer works normally and installs the game. I didn't have it before, only on the last two games.
What am I doing wrong?
Reply With Quote
  #8  
Old 13-02-2021, 04:39
Stor31 Stor31 is offline
Registered User
 
Join Date: Aug 2013
Location: Wahranne
Posts: 323
Thanks: 1,025
Thanked 86 Times in 68 Posts
Stor31 is on a distinguished road
Quote:
Originally Posted by Cesar82 View Post
Open the script and change the name as needed.
The parts of the code referring to the logo image file are below (Search the script).
Code:
#define Theme "ORANGE" 
Code:
#if Theme != "NULL"
Source: "Resources\LightInstallerLogo{#Theme}.bmp"; DestName: "LightInstallerLogo.bmp"; DestDir: "{tmp}"; Flags: dontcopy
#endif
Code:
  #if Theme != "NULL"
  with TBitmapImage.Create(WizardForm) do
  begin
    Parent := WizardForm;
    SetBounds(ScaleX(14), WizardForm.NextButton.Top + ScaleY(1), ScaleX(225), ScaleY(20));
    Bitmap.AlphaFormat := afDefined;
    Bitmap.LoadFromFile(ExpandConstant('{tmp}\LightInstallerLogo.bmp'));
    #if VER >= 0x06000000
    Anchors := [akLeft, akBottom];
    #endif
    if '{#AppURL}' <> '' then begin
      OnClick := @LogoOnClick;
      Cursor := crHand;
    end;
  end;
  #endif
Code:
  #if Theme != "NULL"
  ExtractTemporaryFile('LightInstallerLogo.bmp');
  #endif
P.S: If you just want to change the name of the image file that is in the resources folder, you only need to change it after the word resources in code 2. This way the image inside setup.exe will remain as LightInstaller.bmp, but your external file will have the name you put, but it must be a bitmap image (.bmp).
I changed everything
but the result

Last edited by Stor31; 13-02-2021 at 04:42.
Reply With Quote
  #9  
Old 13-02-2021, 05:46
mausschieber's Avatar
mausschieber mausschieber is offline
Conversion Designer
 
Join Date: Jan 2011
Location: germany
Posts: 4,364
Thanks: 6,805
Thanked 11,814 Times in 3,273 Posts
mausschieber is on a distinguished road
Quote:
Originally Posted by Stor31 View Post
I changed everything
but the result
you have to disable this #define Theme "ORANGE" to this ;#define Theme "ORANGE" then the logo will be disabled
__________________
It would be nice if you appreciate my work with the thanks Button
Reply With Quote
The Following User Says Thank You to mausschieber For This Useful Post:
Stor31 (13-02-2021)
  #10  
Old 13-02-2021, 07:41
Stor31 Stor31 is offline
Registered User
 
Join Date: Aug 2013
Location: Wahranne
Posts: 323
Thanks: 1,025
Thanked 86 Times in 68 Posts
Stor31 is on a distinguished road
Quote:
Originally Posted by mausschieber View Post
you have to disable this #define Theme "ORANGE" to this ;#define Theme "ORANGE" then the logo will be disabled
thank you messschieber ;; but I want to change (LightInstaller) not deactivate !!!!!!

Last edited by Stor31; 13-02-2021 at 07:44.
Reply With Quote
  #11  
Old 26-03-2021, 09:42
hydefromt70s hydefromt70s is offline
Registered User
 
Join Date: Aug 2012
Location: Poland
Posts: 83
Thanks: 34
Thanked 45 Times in 29 Posts
hydefromt70s is on a distinguished road
Recently I found very annoying that you cannot set default "split tab" – how many times I forgot to change it from default DVD5 to unlimited and had to repack from scratch... For those who prefer one big archive instead of splitting would be nice to have an option to set the default "split tab" to Unlimited for instance

And is there any chance to change naming convention from "setup.bin.001, .002 ..." to "setup-1.bin, setup-2.bin" etc.? .001 extensions does just look weird to me and it doesn't follow standard naming.
Reply With Quote
  #12  
Old 26-03-2021, 10:13
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,077
Thanks: 1,828
Thanked 2,311 Times in 789 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by hydefromt70s View Post
Recently I found very annoying that you cannot set default "split tab" – how many times I forgot to change it from default DVD5 to unlimited and had to repack from scratch... For those who prefer one big archive instead of splitting would be nice to have an option to set the default "split tab" to Unlimited for instance

And is there any chance to change naming convention from "setup.bin.001, .002 ..." to "setup-1.bin, setup-2.bin" etc.? .001 extensions does just look weird to me and it doesn't follow standard naming.
1) I just didn't leave it as an option, set the UNLIMITED tab as default because the EDIT of OUTPUT directory will not be visible (Manual division components will be displayed).
I'll think of something, but I don't think that will change that for now.

2) Yes, this is not yet possible, but in a future version the names may be used as names as Setup1a-01.bin as standard.
However, the future version will no longer support 32-bit systems (It will only be 64-bit with only 64-bit compressors).
But for now only .001 names.

Edit:
DiskSpan_GUI updated in the first post.
- Functionality has been included to allow leaving the disk UNLIMITED selection tab as default.

Last edited by Cesar82; 26-03-2021 at 12:58.
Reply With Quote
The Following 3 Users Say Thank You to Cesar82 For This Useful Post:
mashamiskasalo (15-04-2021), mausschieber (26-03-2021), Welder05 (06-04-2021)
  #13  
Old 15-04-2021, 16:37
mashamiskasalo mashamiskasalo is offline
Registered User
 
Join Date: Apr 2021
Location: usa
Posts: 2
Thanks: 5
Thanked 0 Times in 0 Posts
mashamiskasalo is on a distinguished road
Hi, thanks for your hard work and great program. I wanted to ask if virustotal reacts very negatively to the setup.exe installers it creates. Interestingly, this problem can be solved?
Reply With Quote
  #14  
Old 16-04-2021, 09:21
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,077
Thanks: 1,828
Thanked 2,311 Times in 789 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by mashamiskasalo View Post
Hi, thanks for your hard work and great program. I wanted to ask if virustotal reacts very negatively to the setup.exe installers it creates. Interestingly, this problem can be solved?
Check and let me know which file is captured as false positive by the virustotal (Setup.exe or Setup.dll).

If it is Setup.dll, try using different methods (only the decompressors used in Setup.dll will be included), to find out which method is including the false positive.

I did a test here with setup.exe.
Compile Setup.exe with Inno Setup 5.59 which will have less false positives in the analysis of the totalvirus.

Last edited by Cesar82; 16-04-2021 at 09:35.
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
mashamiskasalo (16-04-2021)
  #15  
Old 16-04-2021, 10:41
mashamiskasalo mashamiskasalo is offline
Registered User
 
Join Date: Apr 2021
Location: usa
Posts: 2
Thanks: 5
Thanked 0 Times in 0 Posts
mashamiskasalo is on a distinguished road
even responds to standard setup exe
InstallerScript [2021.02.07]_original.iss

here is my script (setup.exe)
https://www.virustotal.com/gui/file/...ef51/detection

nothing but the names of the game has changed

https://www.upload.ee/files/13059926/divinity.iss.html
Reply With Quote
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 04:54.


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