在WiX设置中安装期间模拟不同的用户

时间:2013-04-22 09:36:58

标签: asp.net authentication iis-7 wix impersonation

我刚刚创建了一个WiX v3.5安装程序来将我的Web应用程序安装到IIS7。我有自定义操作,允许用户选择他们想要的网站和应用程序池,并通过对话框命名虚拟目录。

但现在我来认证了,我很难过。我正在尝试启用模拟并允许用户输入他们的模拟登录名和密码。我在Visual Studion 2010安装项目中工作正常,所以现在我需要在WiX中复制它。

显然,这可以通过appcmd按照这个问题来完成:Is setting "ASP.NET Impersonation" possible using WiX 3.x with IISExtension?但我似乎无法让这个工作。我可以在product.wxs中添加它并将其包装在自定义操作中吗?任何人的想法?任何帮助将不胜感激?

appcmd set config /commit:WEBROOT/section:identity /impersonate:true

1 个答案:

答案 0 :(得分:2)

您好我自己设法让这个工作,所以如果其他人有同样的问题,我通过在安装期间修改我的web.config来解决这个问题:

为此,我将以下代码添加到我的product.wsx中以编辑我的web.config,使用我在新对话框中分配给文本框的属性,以允许用户在安装时输入模拟用户名和密码: / p>

<Component Id="Web.config" Guid="2ED81B77-F153-4003-9006-4770D789D4B6">
        <File Id="Web.config" Name="Web.config" Source="$(var.SolutionDir)MyWebApp\Web.config" DiskId="1" KeyPath="yes" />
        <util:XmlFile Id="system.webidentity" File="[INSTALLLOCATION]Web.config" Action="createElement" ElementPath="/configuration/system.web" Name="identity" Sequence="1" />
        <util:XmlFile Id="system.webIdentityAttribute" Action="setValue" File="[INSTALLLOCATION]Web.config" ElementPath="/configuration/system.web/identity" Name="impersonate" Value="true" Sequence="2" />
        <util:XmlFile Id="system.webIdentityAttribute2" Action="setValue" File="[INSTALLLOCATION]Web.config" ElementPath="/configuration/system.web/identity" Name="password" Value="[IMPERSONATIONUSERPASSWORD]" Sequence="3" />
        <util:XmlFile Id="system.webIdentityAttribute3" Action="setValue" File="[INSTALLLOCATION]Web.config" ElementPath="/configuration/system.web/identity" Name="userName" Value="[IMPERSONATIONUSER]" Sequence="4" />

请注意,如果您使用msbuild和heat自动将文件添加到Wix项目中,则必须确保您不在此处复制web.config,或者如果您正在复制您的web.config您的目标设置。否则你会遇到重复错误。

<Target Name="BeforeBuild">
<MSBuild Projects="%(ProjectReference.FullPath)" Targets="Package" Properties="Configuration=$(Configuration);Platform=AnyCPU" Condition="'%(ProjectReference.PackageThisProject)'=='True'" />
<Delete Files="%(ProjectReference.RootDir)%(ProjectReference.Directory)obj\$(Configuration)\Package\PackageTmp\web.config">
</Delete>
<PropertyGroup>
  <LinkerBaseInputPaths>%(ProjectReference.RootDir)%(ProjectReference.Directory)obj\$(Configuration)\Package\PackageTmp\</LinkerBaseInputPaths>
</PropertyGroup>
<HeatDirectory OutputFile="%(ProjectReference.Filename).wxs" Directory="%(ProjectReference.RootDir)%(ProjectReference.Directory)obj\$(Configuration)\Package\PackageTmp\" DirectoryRefId="INSTALLLOCATION" ComponentGroupName="%(ProjectReference.Filename)_Project" SuppressCom="true" SuppressFragments="true" SuppressRegistry="true" SuppressRootDirectory="true" AutoGenerateGuids="false" GenerateGuidsNow="true" ToolPath="$(WixToolPath)" Condition="'%(ProjectReference.PackageThisProject)'=='True'" />   </Target>