我们在Wix中有一个安装脚本,其中包含片段,组件和一些自定义操作:
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util='http://schemas.microsoft.com/wix/UtilExtension' >
<Product Id="*" Name="Installation" Language="1033" Version="1.0.0.0">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine">
</Package>
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<Media Id="1" Cabinet="cab1.cab" EmbedCab="yes" />
<Feature Id="ProductFeature" Title="MyInstallation" Level="1">
<ComponentGroupRef Id="ProductComponents" />
<ComponentGroupRef Id="MyComponents" />
</Feature>
<util:Group Id="Users" Name="Users"/>
<CustomAction Id="InstallMyService"
Directory="INSTALLFOLDER"
ExeCommand="[INSTALLFOLDER]bin\my-service.bat install"
Execute="deferred"
Impersonate="no"
Return="check"/>
<CustomAction Id="SetEnvironmentVariable" BinaryKey="ActionLib" DllEntry="SetEnvironmentVariableForNewUser" />
<Binary Id='ActionLib' SourceFile='..\InstallerActionLibrary\bin\Release\InstallerActionLibrary.CA.dll' />
<CustomAction Id="StartMyService"
Directory="INSTALLFOLDER"
ExeCommand="[INSTALLFOLDER]bin\my-service.bat start"
Execute="deferred"
Impersonate="no"
Return="asyncWait"/>
<InstallExecuteSequence>
<Custom Action="InstallMyService" After="InstallFiles"/>
<Custom Action="SetEnvironmentVariable" After="InstallMyService"/>
<Custom Action="StartMyService" After="SetEnvironmentVariable"/>
</InstallExecuteSequence>
</Product>
<Fragment>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="CommonAppDataFolder">
<Directory Id="Company" Name="Company">
<Directory Id="App" Name="Product">
<Directory Id="INSTALLFOLDER" Name="Service" />
</Directory>
</Directory>
</Directory>
</Directory>
</Fragment>
<Fragment>
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
<Component Id="NewUser" Guid="{12345678-ABCD-1234-ABCD-987654321FED}">
<CreateFolder />
<util:User Id="CIUSER" CreateUser="yes" UpdateIfExists="no" Name="SERVICEUSER" PasswordNeverExpires="yes" Password="********">
<util:GroupRef Id="Users" />
</util:User>
</Component>
</ComponentGroup>
</Fragment>
</Wix>
但是,在设置用户之后,需要在文件底部的片段中运行其中一个自定义操作SetEnvironmentVariable
。这不会发生。 SetEnvironmentVariable
失败,因为找不到用户。
InstallExecuteSequence
中给出的序列在InstallFiles
发生后开始。我试图使用给定here的列表找到一个更合适的地方来启动序列。我尝试了PublishProduct
,结果是一样的。
有没有办法在自定义操作运行之前添加用户?
答案 0 :(得分:1)
来自@ zett42的建议很好。但是,它仍然没有解决问题。
解决方案是Execute="deferred"
的错误使用。应将所有自定义操作的执行设置为:
Execute="commit"
<强>提交强>
表示在成功完成安装脚本后(在安装结束时)将运行自定义操作。
将Execute类型更改为commit并且它有效。
答案 1 :(得分:0)
我没有直接的答案,但应该帮助你自己解决这个问题:
InstallExecuteSequence
表。 Action
标识符。After
的{{1}}属性。答案 2 :(得分:0)
我同意@ zett42。 有一些wix标准动作应该在msi编辑器中检查, 如果您需要知道他们何时被调用。我们通常不会为此类行动提供大量文档。
检查msi是否在msi中具有SchedSecureObjects_x64或SchedSecureObjects自定义操作。在该操作之后安排SetEnvironmentVariable自定义操作。