如何在安装过程中在 installscript 中执行以下命令?
netsh.exe advfirewall firewall show rule name="PowerSI (Release ASI 16.64)" || NETSH.EXE advfirewall firewall add rule name="PowerSI (Release ASI 16.64)" dir=in action=allow program="d:\Cadence\HIM_asi1664\ASI\Update4\SpeedXP\SpeedXP Suite x64\PowerSI.exe" enable=yes profile=any description="d:\Cadence\HIM_asi1664\ASI\Update4\SpeedXP\SpeedXP Suite x64\PowerSI.exe"
请注意,上面的命令包含可执行文件名称,即netsh.exe
两次,这就是问题所在。我首先尝试LaunchAppAndWait
使用整个命令作为可执行文件的名称并将空字符串作为参数传递。接下来我尝试将第一个 netsh.exe 作为程序名称传递,其余文本作为参数传递。这两种方法都不起作用。