WiX 错误 LGHT0094:片段部分中对符号 Group:Users 的未解析引用

WiX error LGHT0094: Unresolved reference to symbol Group:Users in section Fragment

我正在尝试使用以下组件在 wix 中添加新用户

<Component Id="NewUser" Guid="">
  <CreateFolder />
  <util:User Id="CIUSER" CreateUser="yes" UpdateIfExists="no" Name="ELASTICUSER" PasswordNeverExpires="yes" Password="eur1357">
     <util:GroupRef Id="Users" />
  </util:User>
</Component>

尽管我在命令行中指定了 -ext WixUtilExtension,但当我使用 candle 编译此代码时,出现以下错误:

error LGHT0094: Unresolved reference to symbol 'Group:Users' in section 'Fragment:'

你能告诉我我错过了什么吗?

您需要添加组定义。

<util:Group Id="Users" Name="Users"/>

<Component Id="NewUser" Directory="INSTALLDIR" Guid="{0F8A5093-39EF-4F63-B7FA-A2931C21C865}">
  <CreateFolder />
  <util:User Id="CIUSER" CreateUser="yes" UpdateIfExists="no" Name="ELASTICUSER" PasswordNeverExpires="yes" Password="eur1357">
     <util:GroupRef Id="Users" />
  </util:User>
</Component>