我有以下WiX片段:
<Property Id="WIXUI_EXITDIAlogoPTIONALCHECKBox" Value="1" /> <CustomAction Id="StartAppOnExit" FileKey="Configurator.exe" ExeCommand="" Execute="immediate" Impersonate="yes" Return="asyncNoWait" /> <Property Id="WIXUI_EXITDIAlogoPTIONALCHECKBoxTEXT" Value="Configure initial settings" /> <UI> <Publish Dialog="ExitDialog" Control="Finish" Order="1" Event="DoAction" Value="StartAppOnExit" >WIXUI_EXITDIAlogoPTIONALCHECKBox = 1 and NOT Installed</Publish> </UI>
基本上在退出对话框中,我显示一个框,其中显示:启动应用程序.注意:此应用程序需要提升.这一切都很好,除了一个障碍.如果启用了UAC,似乎MSI会使用用户令牌进行乱码并剥离其组,因此当它尝试启动需要提升的应用程序时,它不再是一个选项.
我如何将它串联起来工作?
我尝试了一个Impersonate =“no”,但是在这一点上为时已经太迟了.
UI序列作为受限用户运行,并通过调用CreateProcess启动应用程序.如果您使用[WixShellExecTarget]之类的
WixShellExec,它将像资源管理器一样,并在目标需要提升时显示UAC提示.或者,您可以修改Configurator.exe以允许在没有提升权限的情况下启动,检测该情况,并使用提升的权限重新启动自身.
原文链接:https://www.f2er.com/windows/363616.html例如,这应该工作:
<Property Id="WIXUI_EXITDIAlogoPTIONALCHECKBox" Value="1" /> <CustomAction Id="StartAppOnExit" BinaryKey="WixCA" DllEntry="WixShellExec" Execute="immediate" Return="check" Impersonate="yes"/> <Property Id="WixShellExecTarget" Value="[#Configurator.exe]"/> <Property Id="WIXUI_EXITDIAlogoPTIONALCHECKBoxTEXT" Value="Configure initial settings" /> <UI> <Publish Dialog="ExitDialog" Control="Finish" Order="1" Event="DoAction" Value="StartAppOnExit">WIXUI_EXITDIAlogoPTIONALCHECKBox = 1 and NOT Installed</Publish> </UI>