MSI Command line parameters / SCCM

dimpan

Member
Can you let me know the command line parameters or orca customizations for plsql dev v12 to add ;

PRODUCTCODE
SERIALNUMBER
PASSWORD

this way i can publish directly into our software catalog for devellopers to install without giving them the serial number?

it should be something like this but it doesnt work, the product installs without being registered;

msiexec.exe /i plsqldev1202x64.msi /qb /norestart PRODUCTCODE=XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX SERIALNUMBER=00.000000 PASSWORD=1234567

thank you!

 
Last edited:
The silent install procedure is described in chapter 2.3 in the User's Guide. Note that msiexec has to be executed as administrator, and that the property values must be enclosed in quotes:

msiexec /i plsqldev1202x64.msi /qn productcode="ABCD - 1234 - EF" serialnumber="01.234567" password="secret"
 
Back
Top