I have an Inno setup installer where I am setting the setup type via the command line like so, /TYPE=full
. When I do this the correct type is selected. What I would like to do is take it one step further and disable option to change the type. Is this possible to do?
标签:
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
Use the
ShouldSkipPage
event function to skip the "Select Components" page when the/TYPE
command-line parameter is specified: