我創建了安裝Windows服務的安裝程序,但是當我卸載該服務時,服務仍然開始並且未被刪除。我已經在Wix中創建了安裝msi。在卸載WIX中創建的安裝程序時未卸下Windows服務
<DirectoryRef Id="INSTALLDIR">
<Component Id='MyComponent' Guid='CDBA9BC4-F839-4CAB-8AB0-4397EC079541'>
<File Id='LogFWService' Name='LogFWService.exe' Source="$(var.LFShared)\LogFWService.exe" KeyPath="yes" />
<ServiceInstall Id="InstallLFService" Name="LogFWService" DisplayName="OpenFramework Logging Service" Start="auto" ErrorControl="normal" Description="Captures log events and inserts the log messages into database" Type="ownProcess">
<ServiceDependency Id="MSMQ" />
</ServiceInstall>
<ServiceControl Id="sc_InstallLFService" Name="LogFWService" Start="install" Remove="uninstall" Stop="both" Wait="yes"/>
</Component>
</DirectoryRef>
即使我已經使用刪除文件屬性,但它仍然沒有刪除卸載時的Windows服務。 請幫助任何人有任何關於卸載Windows服務的知識。
我遇到了同樣的問題 有沒有人可以幫我解決這個問題? – User