有人可以提供关于如何使用批处理文件同时卸载以下两个字符串的建议吗?
MsiExec.exe /i{5577B8F7-A4A8-451E-BDE1-471E52825904}
"C:\Program Files\InstallShield Installation Information\{4D9CA1B8-5FF5-47A7-8BDF-C37D1F9F55A5}\setup.exe" -runfromtemp -l0x0009 -removeonly -uninst
答案1
如果你想同时启动它们,那么使用start
start MsiExec.exe /i{5577B8F7-A4A8-451E-BDE1-471E52825904}
start "" "C:\Program Files\InstallShield Installation Information{4D9CA1B8-5FF5-47A7-8BDF-C37D1F9F55A5}\setup.exe" -runfromtemp -l0x0009 -removeonly -uninst
但是,如果它们都是 MSI,您可能会收到一个错误,提示它无法卸载,直到另一个完成。