I need a solution
So, we're trying to do unattendend installs of the DLP Agent on various computers and depending on the computer's location we want a different primary endpoint server. I'm just trying to figure out how to do this, not whether it is or isn't a good idea as that is way above my pay grade. The script we're trying to use contains this portion of code:
msiexec /i AgentInstall64v2.msi
INSTALLDIR="%SYSTEMDRIVE%\Program Files\Manufacturer\Endpoint Agent\"
ENDPOINTSERVER="XXX.XXX.XXX.XXX;XXX.XXX.XXX.XXX"
KEY=""
UNINSTALLPASSWORDKEY=""
SERVICENAME="EDPA"
WATCHDOGNAME="WDP"
ARPSYSTEMCOMPONENT="1"
Now, as far as I can tell, this is the correct syntax and everything, but it doesn't seem to take properly. Here's what it does when I click through. Also, yes I realize I need to add the quiet switches to make it unattended.http://i.imgur.com/X82y8.png
I really appreciate any help on this because I'm pretty much at a loss at this point.