Hi,
I have a package for PL/SQL Developer 15 which we have built as a package to install via SCCM Software Center along with license details.
Script is as follows.
#########################################################
$Msiexec = "$Env:WinDir\System32\msiexec.exe"
$Argument1 = "/qn /norestart productcode=""xxxx-xxxx-xxxx-xxxx-xxxx-xxxx-xxxx-xxxx"" serialnumber=""xxx.xxxxxx"" password=""xxxxxxx"""
#PLSQL 15.0.2.2054 Installation
Start-Process -FilePath $Msiexec -ArgumentList /i, '"plsqldev1502x64.msi"', $Argument1 -Wait
######################################################################################################
Then recently when Patch My PC started supporting this product, I tried to deploy the same using the same Arguments using the "Modify Command line" and the license was not applied after installation.
Can you please help me how I can add these arguments via patch my pc.
Thank You
Hi there Muja,
The default command that we use for "PL/SQL Developer 15 (MSI-x64)" is:
ALLUSERS=1 REBOOT=ReallySuppress /qn
So after having a look at the vendor's docs (check link here) (https://origin2.cdn.componentsource.com/sites/default/files/resources/allround-automations/806796/manual.pdf) I see they only use one set of quotes, instead of the two sets you are using, so I could suggest that on the right-click option for "Modify the command line", you enter:
productcode="ABCD - 1234 - EF" serialnumber="01.234567" password="secret"
Let us know if this worked for you, thanks!
Hi Hugo Marinho,
This worked as expected.
Thanks you for the prompt support.
Regards,
Muja :)