-1

谁能帮我获取自定义脚本(即使用 Target)示例来卸载已经使用 MSBUILD 安装在服务器上的 msi 实例。

示例代码示例将更有帮助。

谢谢和问候, 桑托什·库马尔·帕特罗

4

1 回答 1

0

下面提到的 MSBUILD 脚本帮助我卸载了 msi:

<Target Name="UnInstallMSI">
    <Message  Text="UnInstallation of MSI Started..." Importance="high"></Message>
    <Exec Command='msiexec.exe /x &quot;$(MSILocation)&quot; /qn /l*vx &quot;$(LogFile)&quot;' ContinueOnError="false" />
    <Message  Text="UnInstallation of MSI Completed Successfully..." Importance="high"></Message>
  </Target>

谢谢和问候, 桑托什·库马尔·帕特罗

于 2013-09-27T15:11:24.530 回答