Activity overview
Latest activity by wkrouth
Looks like that was the fix! I appreciate it! / comments
Looks like that was the fix! I appreciate it!
Hey Alex, thanks for responding! My current version of the script, with unfortunately the same result; # Step 1 - Create Arguments List - See Documentation Page for Possible Values to Configure # $MSIArguments = @( "/i", "SQLMonitor_BaseMonitor.msi", "I_AGREE_TO_THE_EULA=yes", "SERVICETYPE=local", "SERVICERPCPORTNUM=7399", "DATACONNECTION='Data Source=**********,3342;Initial Catalog=**********;User ID=**********;Password=**********;Max Pool Size=500;Connect Timeout=15;Encrypt=True;Trust Server Certificate=False;Packet Size=8000'", "/quiet", "/norestart", "/l*v .\Logs\SQLMonitor-Base-$DateStamp-log.txt" ) # Step 2 - Change Directory to Web.msi Directory # Set-Location "C:\Program Files\Red Gate\SQL Monitor\Automation\Downloads\Base" Write-Host "Installing Base Monitor Service" Start-Process "msiexec.exe" -ArgumentList $MSIArguments -Wait -NoNewWindow / comments
Hey Alex, thanks for responding!My current version of the script, with unfortunately the same result;# Step 1 - Create Arguments List - See Documentation Page for Possible Values to Configure # $MS...
Automation Issue
I've been trying to following the updateautomation guide for the most part. I'm not too savvy with powershell, but I've got the web msi installation part to work, just not the base msi. Anyone have...