我正在嘗試創建一個wix安裝程序來安裝並啓動Windows服務。
我收到以下錯誤: 「Service」()無法安裝。請確認您有足夠的權限來安裝系統服務「WIX:安裝後啓動WCF服務時出現錯誤
下面是我使用的腳本:
<File Id="filFBC5F84CB0C200C1A2F8FFB335A07753" KeyPath="yes"
Source="..\..\TestDotNet\Monarch.Server.WCF\EFI.Monarch.Server\bin\Release \EFIMonarchServer.exe" />
<ServiceInstall Id="MonarchServerServiceInstaller"
Type="ownProcess" Vital="yes" Name="EFI Monarch Server"
DisplayName="EFI Monarch Server"
Description="Testing EFI Monarch Server"
Start="auto" Account="LocalSystem"
ErrorControl="ignore" Interactive="yes" >
</ServiceInstall>
<ServiceControl Id="StartService" Start="install"
Stop="both" Remove="uninstall"
Name="DiskManagement" Wait="yes" />
您可以在安裝後手動啓動服務嗎? – 2010-07-20 14:22:35
是的,我可以手動啓動它。它僅在安裝後嘗試啓動服務時出現此錯誤。 – sid 2010-07-21 03:36:46
它的工作。我在servicecontrol元素中輸入了錯誤的名字。 – sid 2010-07-21 07:45:50