Support Forum: Get Support for Patch My PC Products and Services

Commercial Products: Support for Our Enterprise Product for Microsoft ConfigMgr and Intune => Commercial/Paid Products: Support and General Questions (ConfigMgr and Intune) => Topic started by: muja1913 on January 23, 2024, 01:15:18 AM

Title: PL/SQL Developer 15 Installation with Additional Arguments
Post by: muja1913 on January 23, 2024, 01:15:18 AM
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
Title: Re: PL/SQL Developer 15 Installation with Additional Arguments
Post by: Hugo Marinho (Patch My PC) on January 26, 2024, 05:37:58 AM
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!
Title: Re: PL/SQL Developer 15 Installation with Additional Arguments
Post by: muja1913 on January 31, 2024, 02:41:46 AM
Hi Hugo Marinho,

This worked as expected.

Thanks you for the prompt support.

Regards,
Muja :)