在安装期间,我正在使用 ServiceInstall 和 ServiceControl 标签安装我的服务。但是,我的服务没有运行。我收到错误消息“请检查您是否有足够的权限来启动服务”。但是,我在管理员组中。我正在使用 Wix 3.0 版。
代码片段在这里,
<File Id='myexe' Name='myexe.exe' DiskId='1'
Source='myexe.exe' Vital='yes'>
</File>
<ServiceInstall Id='myService' DisplayName='MySampleService'
Name='MySampleService'
ErrorControl='normal' Start='auto'
Type='ownProcess' Vital='yes' />
<ServiceControl Id="StartService"
Name="MySampleService" Start="install" Wait="yes" />
<ServiceControl Id="StopService" Name="MySampleService"
Stop="both" Wait="yes" Remove="uninstall" />
请帮我。