任何人都可以帮助我获取自定义脚本(即使用Target)示例来卸载已使用MSBUILD安装在服务器上的msi实例。
示例代码示例将更有帮助。
谢谢&问候, Santosh Kumar Patro
答案 0 :(得分:0)
下面提到的MSBUILD脚本帮我卸载了msi:
<Target Name="UnInstallMSI">
<Message Text="UnInstallation of MSI Started..." Importance="high"></Message>
<Exec Command='msiexec.exe /x "$(MSILocation)" /qn /l*vx "$(LogFile)"' ContinueOnError="false" />
<Message Text="UnInstallation of MSI Completed Successfully..." Importance="high"></Message>
</Target>
谢谢&amp;问候, Santosh Kumar Patro