没有足够的权限来安装服务

时间:2012-03-06 16:40:50

标签: service wix windows-installer

我有以下服务声明:

<ServiceControl Id="ServiceStartStop"
                Name="[name]"
                Start="install"
                Stop="both"
                Remove="both"
                Wait="no"/>
<ServiceInstall Id="ServiceRegister"
                Name="[name]"
                DisplayName="[displayname]"
                Description="[description]"
                Account="LocalSystem"
                Arguments="-start"
                ErrorControl="critical"
                Interactive="yes"
                Start="auto"
                Type="ownProcess"
                Vital="yes" >
  <util:PermissionEx  User="Authenticated Users"
                      ServiceChangeConfig = "yes"
                      ServiceEnumerateDependents = "yes"
                      ServiceInterrogate = "yes"
                      ServicePauseContinue = "yes"
                      ServiceQueryConfig = "yes"
                      ServiceQueryStatus = "yes"
                      ServiceStart = "yes"
                      ServiceStop = "yes"
                      ServiceUserDefinedControl = "yes" />
</ServiceInstall>

此编译和链接没有任何错误或警告。使用exe正确指定了服务KeyPath="yes"。当我运行我的msi时,它无法超越'Starting Service ...'。我收到一条错误消息,如下所示:

enter image description here

当我点击“安装”时会显示UAC,那么出了什么问题?

8 个答案:

答案 0 :(得分:12)

它应该在没有WiX util扩展的情况下工作。这是我的完整测试安装程序。创建自己的测试项目,并将我的安装程序复制并复制到.wxs文件中。然后用您自己的服务替换File,ServiceInstall和ServiceControl路径和名称。如果您仍然收到相同的错误消息,可能是您实际上没有权限在您的计算机上进行安装吗?

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="TestServiceInstaller" Language="1033" Version="1.0.0.0" Manufacturer="test" UpgradeCode="d2b63c57-ca50-4f6a-8019-e826cac3d788">
    <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" InstallPrivileges="elevated" />

    <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
    <MediaTemplate />

    <Feature Id="ProductFeature" Title="TestServiceInstaller" Level="1">
        <ComponentGroupRef Id="ProductComponents" />
    </Feature>
</Product>

<Fragment>
    <Directory Id="TARGETDIR" Name="SourceDir">
        <Directory Id="ProgramFilesFolder">
            <Directory Id="INSTALLFOLDER" Name="TestServiceInstaller" />
        </Directory>
    </Directory>
</Fragment>

<Fragment>
    <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
  <Component Id="TestService.exe" Guid="196BB5E5-F157-4CA2-B740-0A68E1539B7C">
    <File Id="TestService.exe" Source="C:\Users\bryan.johnston\Documents\visual studio 2010\Projects\TestService\TestService\bin\Debug\TestService.exe" KeyPath="yes" />
    <ServiceInstall Id="TestService.exe" Name="TestService.exe" Account="LocalSystem" Arguments="-start" Start="auto" Interactive="yes" Type="ownProcess" Vital="yes" ErrorControl="critical" />
    <ServiceControl Id="TestService.exe" Name="TestService.exe" Stop="both" Start="install" Remove="uninstall" Wait="no" />
  </Component>
    </ComponentGroup>
</Fragment>
    </Wix>

答案 1 :(得分:8)

ServiceInstall帐户必须完全合格,如下:

<ServiceInstall ... Account="NT AUTHORITY\LocalService" />

如果只是这样指定它可能会失败:

<ServiceInstall ... Account="LocalService" />

答案 2 :(得分:3)

您可能需要为您的服务设置权限,例如:

<ServiceInstall Id="YourServiceID" Name="ServiceName" DisplayName="DisplayName"
    Description="Description"   
 Arguments="service start arguments" 
 Start="demand" Type="ownProcess" ErrorControl="ignore">
    <util:PermissionEx User="Authenticated Users" 
ServiceStart="yes" 
ServiceStop="yes" 
ServicePauseContinue="yes" 
ServiceInterrogate="yes" 
ServiceChangeConfig="yes" 
ServiceEnumerateDependents="yes" 
ServiceQueryConfig="yes" 
ServiceQueryStatus="yes" 
ServiceUserDefinedControl="yes" />
</ServiceInstall>
<ServiceControl Id="SvcControlID" Name="ServiceName" Stop="both" 
    Remove="uninstall" Wait="yes" />

并且不要忘记包含UtilExtension:     的xmlns:UTIL = “http://schemas.microsoft.com/wix/UtilExtension”

还有另一种方式(但不推荐:) 您可以尝试使用自定义操作安装它:

<Property Id="CMD" Secure="yes"><![CDATA[cmd.exe]]></Property>
<CustomAction Id="InstallService32" Property="CMD" ExeCommand="/c &quot;&quot;[INSTALLLOCATION][ServiceName]&quot; /i [ServiceName] &quot;/c [SVC_CONFIG]&quot;&quot;" Execute="deferred" Impersonate="no" Return="ignore" />
<CustomAction Id="InstallService64" Property="CMD" ExeCommand="/c &quot;&quot;[INSTALLLOCATION][ServiceName]&quot; /i [ServiceName] &quot;/c [SVC_CONFIG]&quot;&quot;" Execute="deferred" Impersonate="no" Return="ignore" />    
<CustomAction Id="StartService" Property="CMD" ExeCommand="/c &quot;NET START [ServiceName]&quot;" Execute="deferred" Impersonate="no" Return="ignore" />
<CustomAction Id="StopService" Property="CMD" ExeCommand="/c &quot;NET STOP [ServiceName]&quot;" Execute="deferred" Impersonate="no" Return="ignore" />

这段代码的问题在于你需要没有空格的安装位置(我有空格问题,无法解决问题,可能你会更幸运)。

答案 3 :(得分:3)

我遇到了同样的问题,这是由早期版本的服务仍在系统上运行引起的。要修复此启动,请提升命令行提示符并键入:

 SC delete NameOfService

答案 4 :(得分:2)

错误消息具有误导性。只要服务无法启动,您就会收到该错误消息,但它可能与权限无关。

  1. 打开visual studio命令提示符并手动安装:

    installutil <name_of_service.exe>
    
  2. 然后尝试在您的计算机上手动启动服务(通过services.msc)。
  3. 如果您的服务失败,则表示您的服务存在问题,而不是安装程序。

答案 5 :(得分:1)

当服务文件名(在我的情况下为.exe)错误时,也会发生这种情况。我设法通过将正确的文件(可执行文件)放在文件列表中的第一位来工作,如:

              

可以在事件查看器中查看服务文件名的名称 - 服务安装的事件ID是7045

此致 托马斯

答案 6 :(得分:0)

引发此常见错误的另一个原因:

如果ServiceConfig元素下方有无效的ServiceInstall元素。

这很可能适用于ServiceInstall的任何无效子元素。

答案 7 :(得分:0)

经过多次失败的尝试,在我看来,删除 ServiceInstall 标记中的Account="LocalSystem"后一切正常(默认情况下,Windows将服务安装为 LocalSystem