I have an Application created in sccm with an MSI deployment type. As part of the deployment type properties under Programs => Installation Program and Uninstall Program I can specify the msi command line statement to execute including switches. I need to have deployment A which goes to group A and has no additional command line switches. I need to have deployment B which goes to group B and has an additional command line switch of ADMINUSER=1. The command line switch is used by the msi (an in-house program I developed) to determine which documentation file gets installed (normal user or admin user).
I know that I could make two completely separate applications but this would be inefficient because I make frequent updates to my app. If I have to make two different applications every time that I make an update that would be very inefficient. What I would like to do is to make two different deployments that use two different deployment types but from what I understand that is not how sccm works. I've browsed online first but the results and documentation for sccm sucks.
How can I solve my problem?