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-07-2021, 11:14
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
Quote:
Originally Posted by L33THAK0R View Post
Would it be possible to add some of the changes to the CheckCRC section of ASIS v7.3.1 to v7.2.0? Specifically line 5527 under the [Custom Messages] section:
Code:
english.label2={#if CompactMode}Overall progress:{#else}Total files: %1  Files processed: %2    Ok: %3  Missing: %4  Bad: %5{#endif}
I attempted to do so myself but was met unsucessful.
Send me the source code of v7.2.0 (I don't have it anymore) and I will look into it.
__________________
Haters gonna hate
Reply With Quote
Sponsored Links
  #2  
Old 07-07-2021, 17:39
L33THAK0R's Avatar
L33THAK0R L33THAK0R is offline
Registered User
 
Join Date: Feb 2021
Location: Saudi Arabia
Posts: 406
Thanks: 137
Thanked 117 Times in 70 Posts
L33THAK0R is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
Send me the source code of v7.2.0 (I don't have it anymore) and I will look into it.
Thank you so much for offering to help! Attached is ASIS v7.2.0 (for anyone else unable to find it) as well as just the script for v7.2.0.
Attached Files
File Type: rar ASIS v7.2.0.rar (55.51 MB, 10 views)
File Type: rar v7.2.0 script.rar (27.0 KB, 6 views)
Reply With Quote
  #3  
Old 08-07-2021, 02:37
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
Like this?
Attached Files
File Type: 7z CustomMessages.7z (7.5 KB, 4 views)
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
L33THAK0R (08-07-2021)
  #4  
Old 08-07-2021, 05:13
L33THAK0R's Avatar
L33THAK0R L33THAK0R is offline
Registered User
 
Join Date: Feb 2021
Location: Saudi Arabia
Posts: 406
Thanks: 137
Thanked 117 Times in 70 Posts
L33THAK0R is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
Like this?
Argh, yeah, completely forgot v7.2.0 would have a "custom messages.iss", sorry for bothering you with such a trivial issue, thanks so much, this is a massive help!
Reply With Quote
  #5  
Old 11-07-2021, 00:03
BKR-TN BKR-TN is offline
Registered User
 
Join Date: May 2021
Location: Desert
Posts: 4
Thanks: 32
Thanked 4 Times in 2 Posts
BKR-TN is on a distinguished road
Make first letter uppercase for languages in Tasks page for v7.3.1

To make first letter uppercase for languages in Tasks page when choosing English as the setup language, go to line (5541) in "Script.iss" and change:
Code:
{#if UseComponents}english.Compenglish=english{#endif}
{#if UseComponents}english.Compfrench=french{#endif}
{#if UseComponents}english.Compgerman=german{#endif}
{#if UseComponents}english.Compitalian=italian{#endif}
{#if UseComponents}english.Compspanish=spanish{#endif}
{#if UseComponents}english.CompMexican=Mexican{#endif}
{#if UseComponents}english.Comppolish=polish{#endif}
{#if UseComponents}english.Comprussian=russian{#endif}
{#if UseComponents}english.Compportuguesebrazil=Portuguese (Brazil){#endif}
{#if UseComponents}english.Compczech=czech{#endif}
to:
Code:
{#if UseComponents}english.Compenglish=English{#endif}
{#if UseComponents}english.Compfrench=French{#endif}
{#if UseComponents}english.Compgerman=German{#endif}
{#if UseComponents}english.Compitalian=Italian{#endif}
{#if UseComponents}english.Compspanish=Spanish{#endif}
{#if UseComponents}english.CompMexican=Mexican{#endif}
{#if UseComponents}english.Comppolish=Polish{#endif}
{#if UseComponents}english.Comprussian=Russian{#endif}
{#if UseComponents}english.Compportuguesebrazil=Portuguese (Brazil){#endif}
{#if UseComponents}english.Compczech=Czech{#endif}
Edit:
If I disable Components or removed Component2 from settings.ini I get this error after choosing setup language:

Last edited by BKR-TN; 11-07-2021 at 00:42.
Reply With Quote
The Following User Says Thank You to BKR-TN For This Useful Post:
Grumpy (11-07-2021)
  #6  
Old 11-07-2021, 02:18
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 for reporting.

The problem comes somewhere from the tasks

I will look at it.
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
BKR-TN (11-07-2021)
  #7  
Old 11-07-2021, 05:25
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,074
Thanks: 1,814
Thanked 2,304 Times in 787 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
Thanks for reporting.

The problem comes somewhere from the tasks

I will look at it.
Change in all lines that refer to components in the [CustomMessages] section from:
Code:
{#if UseComponents}
To:
Code:
{#if UseComponents || UseTasks}
These custom messages are also used for tasks.
I've been out of town, cell phone only(notepad) for a couple of weeks, so I can't change the script and post a fix.
Reply With Quote
The Following 2 Users Say Thank You to Cesar82 For This Useful Post:
BKR-TN (11-07-2021), Grumpy (11-07-2021)
  #8  
Old 11-07-2021, 09:19
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
This fixed the issue, but there are a new one

If you disable components, the WizardForm.NextButton is disabled and you can't proceed.

I spend the half day to find the error but all of this doesn't make any sense to me.
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
BKR-TN (11-07-2021)
  #9  
Old 11-07-2021, 10:04
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,074
Thanks: 1,814
Thanked 2,304 Times in 787 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
This fixed the issue, but there are a new one

If you disable components, the WizardForm.NextButton is disabled and you can't proceed.

I spend the half day to find the error but all of this doesn't make any sense to me.
Run Asis in inno setup Debug mode, and after the nextbutton is disabled, search for "wizardForm.NextButton.Enabled" and see which line has a dot to the left of the line indicating that the line was executed. let me know the line number.
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
BKR-TN (11-07-2021)
  #10  
Old 12-07-2021, 02:27
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
Delete Line 4817

Code:
if CurPageID = wpWelcome then
  begin
...
GetFreeSpaceCaption(nil);
Hotfix added

I guess this was just a false copy&paste by accident
__________________
Haters gonna hate

Last edited by KaktoR; 12-07-2021 at 02:30.
Reply With Quote
The Following 3 Users Say Thank You to KaktoR For This Useful Post:
BKR-TN (12-07-2021), Cesar82 (12-07-2021), mausschieber (12-07-2021)
  #11  
Old 14-07-2021, 00:29
Zsuvalo's Avatar
Zsuvalo Zsuvalo is offline
Registered User
 
Join Date: Jul 2021
Location: A Galaxy far far away
Posts: 2
Thanks: 1
Thanked 0 Times in 0 Posts
Zsuvalo is on a distinguished road
Hi!

Can someone please make a step-by-step guide on how to use ASIS with DiskSpan GUI
because as a little dummy I am, I can't make it work... It always freezes when pressing install.

Thanks, Zsuvalo
Reply With Quote
  #12  
Old 14-07-2021, 01:46
mausschieber's Avatar
mausschieber mausschieber is offline
Conversion Designer
 
Join Date: Jan 2011
Location: germany
Posts: 4,325
Thanks: 6,767
Thanked 11,730 Times in 3,235 Posts
mausschieber is on a distinguished road
Quote:
Originally Posted by Zsuvalo View Post
Hi!

Can someone please make a step-by-step guide on how to use ASIS with DiskSpan GUI
because as a little dummy I am, I can't make it work... It always freezes when pressing install.

Thanks, Zsuvalo
have you read the topic in its own thread? if not then here
__________________
It would be nice if you appreciate my work with the thanks Button

Last edited by Grumpy; 14-07-2021 at 02:31.
Reply With Quote
The Following 2 Users Say Thank You to mausschieber For This Useful Post:
Grumpy (14-07-2021), Zsuvalo (15-07-2021)
  #13  
Old 15-07-2021, 00:28
Zsuvalo's Avatar
Zsuvalo Zsuvalo is offline
Registered User
 
Join Date: Jul 2021
Location: A Galaxy far far away
Posts: 2
Thanks: 1
Thanked 0 Times in 0 Posts
Zsuvalo is on a distinguished road
I finally made it work by uncommenting line #8 in the script so the Setup.dll gets merged into the .exe. It works perfectly now.
Reply With Quote
  #14  
Old 15-07-2021, 00:54
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
In any case you need Setup.dll.

Setup.dll will be created by DiskSpan GUI if the process is complete. You can also create it manually if you don't use DiskSpan GUI.

However, like you already find out, you can include Setup.dll into Setup.exe by uncommenting Line 8 in Script.iss, move Setup.dll next to Script.iss and then compile it.
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
Cesar82 (15-07-2021)
  #15  
Old 17-07-2021, 11:47
srt19's Avatar
srt19 srt19 is offline
Registered User
 
Join Date: Jun 2021
Location: IDN
Posts: 1
Thanks: 3
Thanked 0 Times in 0 Posts
srt19 is on a distinguished road
Hello,

I wonder if there's a way to run batch script directly after finished extracting a certain data file (e.g Data-01.bin), and when it finished it continue to extract the next data file.

Thanks.
Reply With Quote
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 14:22.


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