I tried to install an MSI in a remote machine through wmic command in PowerShell.
The Command i used trigger the MSI is as below
wmic /node:192.xxx.xx.xx /user:"user" /password:"Password" product call install true,"","\\remoteIP\c$\Program Files\My_Location\My_Installation_File.msi"
But I recieve an error as mentioned below
Invalid format.
Hint: <paramlist> = <param> [, <paramlist>].
Why am i getting this error
Thanks in Advance