美好的一天。
我一直在使用WIX(Windows Installer XML)技术为我们的产品构建安装程序。如果在安装后选中复选框,则预期的行为是产品已启动。
这已经有一段时间了,但我们最近发现Win 7的UAC和Vista正在停止启动应用程序。我做了一些研究,有人向我建议我应该添加属性
Execute ='deferred'和Impersonate ='no'。
我做了,但后来发现要执行延迟,必须在InstallInitialize和IntallFinalize阶段之间执行CustomAction;这不是我需要的。如果选中启动复选框,我需要产品在安装完成后启动。有没有其他方法来提升权限?
任何和所有的答案,建议或共鸣将不胜感激。
答案 0 :(得分:5)
不幸的是,正如我所发现的那样,Rob提到的主题并没有真正帮助Windows Vista或7。尤其是在启用UAC的情况下。
我解决这个问题的方法是使用一个CustomAction来启动命令提示符并启动你想要的应用程序。
<CustomAction
Id="LaunchApp"
Directory="YourDirectory"
ExeCommand="[SystemFolder]cmd.exe /C app.exe" />
希望有所帮助。
雷
答案 1 :(得分:3)
WiX工具集文档有一个名为How To: Run the Installed Application After Setup的主题,介绍了如何执行此操作。
答案 2 :(得分:2)
请参阅WiX and DTF: Using a bootstrapper to force elevated privileges in Vista如何运行整个msi提升。
您可以借助GenerateBootstrapper任务在.wixproj文件中自动执行此操作。总结一下:
像这样创建一个setup.manifest:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0" processorArchitecture="X86" name="Setup" type="win32" />
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
并修改你的.wixproj文件:
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- standard PropertyGroups and ItemGroups -->
<PropertyGroup>
<WindowsSDK>$(registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows@CurrentInstallFolder)</WindowsSDK>
</PropertyGroup>
<PropertyGroup Condition="$(WindowsSDK) == ''">
<WindowsSDK>$(registry:HKEY_CURRENT_USER\SOFTWARE\Microsoft\Microsoft SDKs\Windows@CurrentInstallFolder)</WindowsSDK>
</PropertyGroup>
<PropertyGroup>
<mt_exe>$(WindowsSDK)bin\mt.exe</mt_exe>
</PropertyGroup>
<ItemGroup>
<BootstrapperFile Include="Microsoft.Windows.Installer.3.1" >
<ProductName>Windows Installer 3.1</ProductName>
</BootstrapperFile>
<!-- more BootstrapperFile items -->
</ItemGroup>
<Target Name="Bootstrapper"
Inputs="$(OutDir)$(TargetFileName)"
Outputs="$(OutDir)\Setup.exe"
Condition=" '$(OutputType)'=='package' " >
<GenerateBootstrapper ApplicationName="application name"
ApplicationFile="$(TargetFileName)"
BootstrapperItems="@(BootstrapperFile)"
ComponentsLocation="Relative"
OutputPath="$(OutputPath)"
Culture="en-US"
Path="$(WindowsSDK)\Bootstrapper" />
</Target>
<Target Name="PatchSetupExe" DependsOnTargets="Bootstrapper">
<Exec Command='"$(mt_exe)" -manifest setup.manifest -outputresource:$(OutDir)\Setup.exe;#1' IgnoreExitCode='false' />
</Target>
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WiX\v3.0\Wix.targets" />
<PropertyGroup>
<BuildDependsOn>$(BuildDependsOn);Bootstrapper;PatchSetupExe</BuildDependsOn>
</PropertyGroup>
</Project>
现在每个版本都会生成一个正常运行的setup.exe。