Jump to content

Recommended Posts

Posted

If you are making a standalone installer, you want to include the VC redistributable, on the off chance the user does not have this already:
https://aka.ms/vs/17/release/vc_redist.x64.exe

Inno Setup is an easy way to do this. Here is the last section in the Leadwerks client installer. The quiet and norestart options are important.

[Run]
Filename: "{app}\VC_redist.x64.exe"; Parameters: "/q /norestart"
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent

 

  • Like 1

Let's build cool stuff and have fun. :)

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...