I've seen multiple questions online about this exact thing:
https://community.spiceworks.com/topic/874022-msiexec-just-returns-a-pop-up
Windows installer window pops up while executing msi in silent mode
My question is the same as in these forums. When I try to run an MSI through a command line, all it does is pull up a prompt giving me a list of parameters. The other questions recommended that I type the command out myself and not copy it because the quotes might not actually be quotes and to try moving the pieces of my command around because it is in the wrong order. Here is my command:
START /WAIT msiexec.exe /i "\hostname\Departments\Technologies\Installs\Bluebeam Revu\MSIBluebeamRevu20.2.30x64\Bluebeam Revu x64 20.msi" BB_SERIALNUMBER [1623974] BB_PRODUCTKEY [56UI4-66FDZJ5]
I also tried adding transforms:
START /WAIT msiexec.exe /i "\hostname\Departments\Technologies\Installs\Bluebeam Revu\MSIBluebeamRevu20.2.30x64\Bluebeam Revu x64 20.msi" TRANSFORMS="\hostname\Departments\Technologies\Installs\Bluebeam Revu\20.0.20 Standard-Extreme\MSIBluebeamRevu20.2.30x64\Bluebeam Revu x64 20.msi" BB_SERIALNUMBER [1623974] BB_PRODUCTKEY [56UI4-66FDZJ5]
I have tried looking in task managers command line tab to view what command was being run and it exactly what I have above
Here is the task manager and what it says it ran from
I am trying to push this out to my active directory through a software called PDQ so I need this command line to work. Currently I am only testing it locally on my computer.