• Welcome to Support Forum: Get Support for Patch My PC Products and Services.
 

PL/SQL Developer 15 Installation with Additional Arguments

Started by muja1913, January 23, 2024, 01:15:18 AM

Previous topic - Next topic

muja1913

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

Hugo Marinho (Patch My PC)

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) 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!

muja1913

Hi Hugo Marinho,

This worked as expected.

Thanks you for the prompt support.

Regards,
Muja :)