How do you use cloud databases? Take the survey.
Options

SQL Monitor Automation Guidance

Hello,

I have been attempting to automate the upgrades and consistently no matter how its formatted I get an error stating i must accept the EULA. I have extracted the web msi from the webinstaller with the switch and extracted the base msi using lessmsi and extracting that with the/IAgreeToTheEULA switch.

I have tried using =1, different quotes and tried /IAgreeToTheEULA which fails before attempting to install.

I have attempted to use SCCM and encountered it there as well from the event viewer. 

PS Snippet - 

 $MSIArguments = @(

    "/i web.msi",

    "/quiet"

    "I_AGREE_TO_THE_EULA=yes",

    "INSTALLDIR=`"C:\Program Files\Red Gate\SQL Monitor\WebMonitor\`"",

    "SERVICETYPE=local",

    "SERVICERPCPORTNUM=7399",

    "/norestart",

    "/l*v `"$smWebMSILocation\Logs\SQLMonitor-Web-$DateStamp-log.txt`""



Same thing, but a snippet install from SCCM Program field:

msiexec /i "web.msi" /q  I_AGREE_TO_THE_EULA="yes" SERVICETYPE="local" INSTALLDIR="C:\Program Files\Red Gate\SQL Monitor\Web\" SERVICERPCPORTNUM="7399" 


Any guidance would be great!

Comments

Sign In or Register to comment.