使用 WMIC 在远程机器上安装 MSI

Installing an MSI in remote machine using WMIC

我试图通过 PowerShell 中的 wmic 命令在远程机器上安装 MSI。

我使用的触发MSI的命令如下

 wmic /node:192.xxx.xx.xx /user:"user" /password:"Password" product call install true,"","\remoteIP\c$\Program Files\My_Location\My_Installation_File.msi"

但我收到如下所述的错误

Invalid format.
Hint: <paramlist> = <param> [, <paramlist>].

为什么我会收到此错误

提前致谢

如果您在命令提示符下尝试相同的操作,您将完成它...