I am trying to install an MSI via PowerShell using the following code:
msiexec /a [MSI File] /qn
According to the Event Log, the software was installed successfully, but does not appear in either Add/Remove Programs nor inside the registry key. I am on a laptop that does not have Admin control, which is why I'm using /a
instead of /i
. I have also tried the following code to same results as before:
msiexec /a [MSI File] ALLUSER=2 ARPSYSTEMCOMPONENT=0 /qn
Any clue as to why this is happening, and how I can fix this so the software can be properly installed?