Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

Setup Type Selection


1 reply to this topic

rajkulkarni

rajkulkarni
  • Full Members
  • 44 posts

Posted 22 March 2004 - 23:57

How do I force selection of a particular Setup Type (Compact, Typical, Custom)? I want to always choose the Compact or Typical option, but when looking at the InstallScript code, I don't see where it's value is being used. If I remove all the Setup Types except Compact, will it always use the Compact Setup Type.

Raj

Xitch13

Xitch13
  • Members
  • 134 posts

Posted 23 March 2004 - 00:01

Use this command to force a choice of set-up type

ComponentSetupTypeSet (MEDIA, szSetupType);


If you wanted to make sure it always used the COMPACT version it would look like this:


szSetupType = "Compact"; //Make sure it matches exactly to the name
ComponentSetupTypeSet (MEDIA, szSetupType);


HTH
There is great chaos under heaven, and the situation is excellent. (Mao Tse Tung)