I am using Inno setup to install my tool together with some dlls. However, I need to run a microsoft redistributable .exe during my setup. How can embed it into the setup process?
标签:
inno-setup
相关问题
- Inno Setup - Run InstallUtil from .Net 4.5 Locatio
- ISCC - /D compiler-parameter seems to have no effe
- Setting DestDir from Inno Pascal?
- Unpin app from taskbar, startmenu using Inno Setup
- How to restrict user input of the directory edit b
相关文章
- In inno setup how to set the unins000.exe with pro
- Is it possible to create checkbox tree view in Inn
- How to add a region drop-down in Inno Setup?
- Signing installer of my program generated by Inno
- How to check 64/32-bit in Inno setup
- Inno Setup - How to create checkboxes at finished
- Inno Setup - BorderIcons dropdown menu
- Inno Setup - How to display a message after instal
If you want to install additional redistributables with your application, you can add them to the setup using a normal
[Files]
entry with thedontcopy
flag.You can then extract this during the
PrepareToInstall
event function using theExtractTemporaryFile()
function and run it usingExec()
.This method will also allow you to check the exit code and prompt to reboot if required.
There are various related articles on the ISXKB wiki.