View Single Post
  #2  
Old 11-04-2018, 08:02
vollachr's Avatar
vollachr vollachr is offline
Conversions & UCC Creator
 
Join Date: Sep 2009
Location: Israel
Posts: 247
Thanks: 58
Thanked 536 Times in 186 Posts
vollachr is on a distinguished road
Looks pretty good, don't have the game though but I do have a comment about your redist settings...

You see, this:

Code:
[Launch2]
--------------------------------------------------------
Name=Microsoft Visual C++ 2015
32Exe={src}\_CommonRedist\vcredist\2015\vcredist_x86.exe
64Exe={src}\_CommonRedist\vcredist\2015\vcredist_x64.exe
Argument=/passive /norestart
BeforeInstall=1
Checked=0
would be better like this:

Code:
[Launch2]
--------------------------------------------------------
Name=Microsoft Visual C++ 2015
32Exe={src}\_CommonRedist\vcredist\2015\vcredist_x86.exe
64Exe={src}\_CommonRedist\vcredist\2015\vcredist_x64.exe
Argument=/quiet /norestart
BeforeInstall=1
Checked=0
using the /quiet switch instead of the /passive switch will make the Visual C++ 2015 installation completely silent and in the background.

I'm pretty sure you already knew that though as I've seen you using it in previous conversions, why not here?
__________________

Ultimate Conversion Compressor Creator (Discontinued/Abandoned)
My Other Tools: File Splitter and Merger - Multiple Text/String Replacer (MTSR) - UCC Files & Folders Lister
Microsoft Certified Professional
Retired Conversion Creator

Last edited by vollachr; 11-04-2018 at 08:06.
Reply With Quote
The Following User Says Thank You to vollachr For This Useful Post:
mausschieber (11-04-2018)