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 31-05-2025, 15:20
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,336 Times in 2,838 Posts
KaktoR is on a distinguished road
Try this
Attached Files
File Type: 7z fix.7z (34.8 KB, 20 views)
__________________
Haters gonna hate
Reply With Quote
The Following 3 Users Say Thank You to KaktoR For This Useful Post:
Cesar82 (01-06-2025), insertdisc (31-05-2025), mausschieber (31-05-2025)
Sponsored Links
  #2  
Old 31-05-2025, 19:12
insertdisc insertdisc is offline
Registered User
 
Join Date: May 2025
Location: Earth
Posts: 12
Thanks: 5
Thanked 1 Time in 1 Post
insertdisc is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
Try this
Code:
Line 4492:
Column 7:
Unknown identifier 'DSG_FinishUninstallFilesList'
It errors out during compile.
Reply With Quote
  #3  
Old 01-06-2025, 01:35
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,336 Times in 2,838 Posts
KaktoR is on a distinguished road
Works fine here. Did you changed something in DSG_Module.iss?
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
insertdisc (01-06-2025)
  #4  
Old 01-06-2025, 08:22
insertdisc insertdisc is offline
Registered User
 
Join Date: May 2025
Location: Earth
Posts: 12
Thanks: 5
Thanked 1 Time in 1 Post
insertdisc is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
Works fine here. Did you changed something in DSG_Module.iss?
Negative. I just tried with a Vanilla v7.5.0 and the fix script and 2 different extracted setup.DLL files. Same error.
Reply With Quote
  #5  
Old 01-06-2025, 08:27
insertdisc insertdisc is offline
Registered User
 
Join Date: May 2025
Location: Earth
Posts: 12
Thanks: 5
Thanked 1 Time in 1 Post
insertdisc is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
Works fine here. Did you changed something in DSG_Module.iss?
I got the script to compile. I had forgotten the hotfix with the module in it. I'll test the CRC fix ASAP. Thanks for your help so far.

Edit: Everything seems to be working as intended! Thank you!

Last edited by insertdisc; 01-06-2025 at 10:59. Reason: Update
Reply With Quote
  #6  
Old 01-06-2025, 15:39
insertdisc insertdisc is offline
Registered User
 
Join Date: May 2025
Location: Earth
Posts: 12
Thanks: 5
Thanked 1 Time in 1 Post
insertdisc is on a distinguished road
Typo

Found a typo. Just thought you should know.

"Your system does partially meet the hardware reuirements."
Reply With Quote
The Following User Says Thank You to insertdisc For This Useful Post:
KaktoR (01-06-2025)
  #7  
Old 03-06-2025, 06:34
insertdisc insertdisc is offline
Registered User
 
Join Date: May 2025
Location: Earth
Posts: 12
Thanks: 5
Thanked 1 Time in 1 Post
insertdisc is on a distinguished road
Title scale

Is there a way to scale the title bar height and left padding with DPI changes as well? Things start getting clipped/overlapped at uhd resolutions and over %200 scale. I can edit the height in a fixed way by editing the vsf but I'm sure that will be huge on lower resolutions. Am I walking into a dead end here?

Last edited by insertdisc; 03-06-2025 at 06:35. Reason: Spelling
Reply With Quote
  #8  
Old 18-08-2025, 08:03
PHM2D's Avatar
PHM2D PHM2D is offline
Registered User
 
Join Date: Mar 2024
Location: Area 51
Posts: 9
Thanks: 6
Thanked 5 Times in 3 Posts
PHM2D is on a distinguished road
Compact Mode Components Bug

I think I found a bug for the components page when using compact mode (Hotfix 8).
This bug makes the Start Menu Checkbox stay visible on components page when using compact mode.


FIX:

in this section:
Code:
ComponentsPageVisible := (not ComponentsPageVisible);
we should add
Code:
StartMenuCB.Visible
under the
Code:
#if !UpdateMode
as well so it would look like this:
Code:
      #if !UpdateMode
        IconsCB.Visible := (not ComponentsPageVisible);
        StartMenuCB.Visible := (not ComponentsPageVisible);
        UnInstallCB.Visible := (not ComponentsPageVisible);
      #endif
the same should be done for the tasks' page.
__________________
Built with hustle, crowned with success.
Reply With Quote
The Following User Says Thank You to PHM2D For This Useful Post:
KaktoR (18-08-2025)
  #9  
Old 18-08-2025, 08:23
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,336 Times in 2,838 Posts
KaktoR is on a distinguished road
Thanks, fixed.

The same should be added on
Code:
procedure TasksPageClick(Sender: TObject);
Code:
StartMenuCB.Visible := (not TasksPageVisible);
Attached Files
File Type: 7z Hotfix_9.7z (58.5 KB, 12 views)
__________________
Haters gonna hate

Last edited by KaktoR; 18-08-2025 at 08:29.
Reply With Quote
The Following 2 Users Say Thank You to KaktoR For This Useful Post:
mausschieber (18-08-2025), PHM2D (18-08-2025)
  #10  
Old 19-08-2025, 15:24
trillestdwane trillestdwane is offline
Registered User
 
Join Date: Jul 2024
Location: Hell
Posts: 7
Thanks: 1
Thanked 1 Time in 1 Post
trillestdwane is on a distinguished road
Is there anyway to modify the script to have a separate audio file play during the splash screen, and then start the normal music file when the splash ends? I tried using a LLM to analyze the script and Settings.ini to see if it could add that in, and it couldn't. Not really an important feature, but I was just wondering
Reply With Quote
  #11  
Old 20-08-2025, 03:35
PHM2D's Avatar
PHM2D PHM2D is offline
Registered User
 
Join Date: Mar 2024
Location: Area 51
Posts: 9
Thanks: 6
Thanked 5 Times in 3 Posts
PHM2D is on a distinguished road
Start Menu Shortcut Bugs!

When I checked the start menu shortcut creator checkbox, I realized that the shortcut is not created inside the programs folder of the start menu. However it was created when I checked the desktop shortcut creator checkbox. So I fixed it like this:
Code:
//#if !CompactMode || !UpdateMode
//  function CreateIconsDesktop: Boolean;
//  begin
//    Result := (not IsDoneError) and IconsCB.Checked;
//  end;

//  function IsUninstallable: Boolean;
//  begin
//    Result := UninstallCB.Checked;
//  end;
//#endif

//#if !CompactMode
//function CreateIconsStartMenu: Boolean;
//begin
//  Result := (not IsDoneError) and (not StartMenuCB.Checked);
//end;
//#endif

function CreateIconsDesktop: Boolean;
begin
  Result := (not IsDoneError) and Assigned(IconsCB) and IconsCB.Checked;  // your “desktop shortcut” checkbox
end;

function CreateIconsStartMenu: Boolean;
begin
  Result := (not IsDoneError) and Assigned(StartMenuCB) and StartMenuCB.Checked;
end;

function IsUninstallable: Boolean;
begin
  Result := Assigned(UninstallCB) and UninstallCB.Checked;
end;

procedure StartMenuCBClick(Sender: TObject);
var
  CB: TNewCheckBox;
begin
  if (Sender is TNewCheckBox) then CB := TNewCheckBox(Sender) else CB := StartMenuCB;
  if Assigned(WizardForm) and Assigned(CB) then
  begin
    WizardForm.GroupEdit.Enabled := CB.Checked;
    WizardForm.GroupBrowseButton.Enabled := CB.Checked;
  end;
end;
Then called it inside the
Code:
StartMenuCB := TNewCheckBox.Create(WizardForm);
like this:
Code:
      Checked  := False;             // 1) set default state
      OnClick  := @StartMenuCBClick; // 2) wire the handler
      StartMenuCBClick(StartMenuCB); // 3) Synchronize the UI to the current checkbox state
    end;
I don't know if anyone has experienced this bug but here is my solution nevertheless!
__________________
Built with hustle, crowned with success.
Reply With Quote
  #12  
Old 20-08-2025, 04:09
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,336 Times in 2,838 Posts
KaktoR is on a distinguished road
Thanks, there is another bug when you create icons. If you use uninstaller the icons from startmenu will not get removed. I already fixed it here.

However Icon creation should not be possible when using UpdateMode, so all you have to do is change
Code:
#if !CompactMode || !UpdateMode
to
Code:
#if !UpdateMode
on line 1077 and 4572.

Edit: Should be fixed now. Use attachment and look for code changes.
Attached Files
File Type: 7z Hotfix_10.7z (58.6 KB, 34 views)
__________________
Haters gonna hate

Last edited by KaktoR; 20-08-2025 at 04:38.
Reply With Quote
The Following 4 Users Say Thank You to KaktoR For This Useful Post:
BKR-TN (26-08-2025), Gehrman (20-08-2025), mausschieber (20-08-2025), PHM2D (20-08-2025)
  #13  
Old 26-02-2026, 15:03
Razer-785's Avatar
Razer-785 Razer-785 is offline
Registered User
 
Join Date: May 2025
Location: The Moon
Posts: 25
Thanks: 35
Thanked 3 Times in 3 Posts
Razer-785 is on a distinguished road
Lightbulb Please update

Hello can you please update the installer to work with DiskSpan_GUI v2.0.2.4 Thanks.
__________________
“Freedom is more important than safety.”
Reply With Quote
  #14  
Old 08-10-2025, 10:55
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,336 Times in 2,838 Posts
KaktoR is on a distinguished road
I need someone for testing dpi scaling with native 4k resolution.

What you should test: change desktop dpi scaling from 100% to 200% (or higher if possible) and see if all elements are on the correct place.

This test should be really quick. Just run the installer and click through every page.
__________________
Haters gonna hate
Reply With Quote
  #15  
Old 30-10-2025, 09:58
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,336 Times in 2,838 Posts
KaktoR is on a distinguished road
Here is the new 7.6.0 update, currently in beta.

If you find any errors, let me know.
Attached Files
File Type: 7z ASIS_v7.6.0.7z (25.76 MB, 32 views)
__________________
Haters gonna hate
Reply With Quote
The Following 3 Users Say Thank You to KaktoR For This Useful Post:
Gehrman (31-10-2025), mausschieber (31-10-2025), Razor12911 (31-10-2025)
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
[Help] need Advanced Installer script with Razor1911's UltraArc module rez3vil Conversion Tutorials 3 15-04-2024 02:24
Portable Installer Inno Setup Script y_thelastknight Conversion Tutorials 59 23-10-2020 00:02
INDEX - Conversion Tutorial Index Razor12911 Conversion Tutorials 5 11-06-2020 02:05
Simple Arc Installer 78372 Conversion Tutorials 1 15-06-2017 15:37
MSC+Srep+lzma Simple Script Example gozarck Conversion Tutorials 10 07-09-2015 16:31



All times are GMT -7. The time now is 00:01.


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