View Single Post
  #4  
Old 06-01-2019, 07:08
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 mausschieber View Post
i think under

[InstallOptions]
---------------------------------------------------------------
AllowWithoutSmallInstaller=1
This key is to allow the end user to disable the SmallInstaller through an external setup.ini (But smallInstaller files must be added)
The same goes for the key AllowWithoutAutorun= but to allow the end user to turn off the autorun page:
Code:
[InstallOptions]
AllowWithoutAutorun=1
Summing up: It allows the end user to choose whether to use smallInstaller and autorun pages.

In the external setup.ini the end user should use to diable smallInstaller or :
Code:
[InstallOptions]
WithoutAutorun=1
WithoutSmallInstaller=1
In the external setup.ini the end user must use to disable the smallInstaller or Autorun pages only if the conversion creator allows through the keys in setup.ini before compile setup.exe:
Code:
[InstallOptions]
AllowWithoutAutorun=1
AllowWithoutSmallInstaller=1
As kakoR has replied, for the creator of the conversion does not use SmallInstaller, just delete the backgroud folder or just rename it.

Last edited by Cesar82; 06-01-2019 at 07:10.
Reply With Quote
The Following 4 Users Say Thank You to Cesar82 For This Useful Post:
mausschieber (06-01-2019), pakrat2k2 (06-01-2019), Simorq (06-01-2019), Titeuf (08-01-2019)