Reputation: 346
I'm looking for a way to add multiple properties to the SecureCustomProperties
value in my .msi installer's property table. I've tried comma delimiting, semi-colon delimiting, and even space delimiters. None of the above seem to work.
Hints?
Upvotes: 3
Views: 2522
Reputation: 76
Got my answer from
msiexec does not pass parameters to custom action
For me I needed to have the following:
msiexec.exe /i "App With Space.exe" /passive /norestart CustomProperty=AnyValueNoSpace CustomProperty2="Value With Space" CustomProperty3=A;List;Of;Values
Upvotes: 1
Reputation: 346
Ok, so I was almost there ... semi-colon delimited with NO SPACES. This appears to do the trick.
Upvotes: 8