我有使用刻录创建的bootstrapper安装程序,其中包含4 msi,其中安装了3个(取决于操作系统)。
其中一个安装程序安装服务并运行它。如果我只使用这个用于卸载,则服务将被停止并从服务列表中删除。但是,如果我使用bootstrapper安装程序进行卸载,则服务仍保留在列表中并显示为正在运行(即使所有文件都已删除且服务未在实际中运行)。
有没有人知道从msi卸载和从exe引导程序(同一个msi打包)之间有什么区别?
服务安装:
<Component Id="ComponentId" Guid="someguid-4C46-832F-B3E7E063713A">
<File Id="ExeFile" Checksum="yes" KeyPath="yes" Source="service.exe" />
<ServiceInstall DisplayName="[ProductName]"
Name="myservice"
Id="ServiceInstall"
Start="auto"
ErrorControl="normal"
Type="ownProcess"
Account="[ACCOUNTUSER]"
Password="[ACCOUNTPASSWORD]" />
<ServiceControl Id="ServiceControl"
Name="myservice"
Remove="uninstall"
Wait="yes"
Start="install"
Stop="both" />
</Component>
引导程序:
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:bal="http://schemas.microsoft.com/wix/BalExtension">
<Bundle Name="MyBundle" Version="1.0.0.0" Manufacturer="Me" UpgradeCode="someguid-40da-bda2-1e46a5a55c47">
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.HyperlinkLicense">
<bal:WixStandardBootstrapperApplication LicenseUrl="" SuppressOptionsUI="yes" LogoFile="logo.bmp" SuppressRepair="yes" />
</BootstrapperApplicationRef>
<Chain>
<MsiPackage
Id="App1"
SourceFile="App1_x86.msi"
InstallCondition="NOT VersionNT64"
DisplayInternalUI="yes"
Permanent="no" />
<MsiPackage
Id="App1"
SourceFile="App1_x64.msi"
InstallCondition="VersionNT64"
DisplayInternalUI="yes"
Permanent="no" />
<MsiPackage
Id="App2"
SourceFile="App2.msi"
DisplayInternalUI="yes"
Permanent="no" />
<MsiPackage Id="Service"
SourceFile="Service.msi"
DisplayInternalUI="yes"
Permanent="no" />
</Chain>
</Bundle>
</Wix>
答案 0 :(得分:0)
我已经发现了这一点,卸载App2时可能会出现杀死所有正在运行的实例的问题。我通过更改最后两个安装包的顺序解决了这个问题,现在它删除了产品,包括停止和删除服务。