gpt4 book ai didi

properties - 在卸载日志中找不到 WiX 属性

转载 作者:行者123 更新时间:2023-12-02 16:59:38 24 4
gpt4 key购买 nike

UI 中的属性更改从卸载日志中消失。

如果我使用默认属性值安装我的应用程序,然后运行卸载,该属性会出现在卸载日志中。

如果我在卸载时从 UI 更改属性值,它不会出现在日志中。

这就是apppool和webapp卸载后留在IIS中的原因,默认值不是这样。

<Property Id="WEB_APP_NAME" Value="WebApp" Secure="yes" />

这是属性的样子。

这是我从 UI 控件添加一个值的地方

    <Control Id="PoolNameEdit"
Type="Edit"
X="100"
Y="45"
Width="160"
Height="17"
Property="WEB_APP_NAME"
Text="{80}"
Indirect="no" />

这就是我使用它的方式

<!-- Define the directory structure -->
<Fragment>

<!--Directory elemens hierarchy always starts with Id="TARGETDIR" Name="SourceDir"-->
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="WEB_APP_FOLDER_LOC" Name="WebInstaller">
<Directory Id="WEBFOLDER" Name ="[WEB_APP_NAME]" />
</Directory>
</Directory>
</Fragment>

<Fragment>

<!--Concatenate user input for folderpath-->
<SetDirectory Id="WEBFOLDER"
Value="[WEB_APP_FOLDER_LOC][WEB_APP_NAME]"
Sequence="both" />

<!--Create new folder-->
<DirectoryRef Id="WEBFOLDER">
<Component Id="cmp_WebDir"
Guid="{E0CE5051-1419-4997-949F-020BC814ECDA}"
KeyPath="yes">
<CreateFolder />
</Component>
</DirectoryRef>

<!--Components-->
<ComponentGroup Id="ProductComponents" Directory="WEBFOLDER">

<!--Client config-->
<Component Id="cmpWebConfig"
Guid="{1C84DF1F-2EA4-46E6-8125-C6FD410AFED9}"
KeyPath="yes">
<Condition>INCLUDECONFIGFILE="1"</Condition>
<File Source="Configuration\Web.config" />
</Component>

<!--Application pool-->
<Component Id="cmpAppPool"
Guid="{00D6ABB1-734F-4788-ADB8-12A30056C513}"
KeyPath="yes">

<iis:WebAppPool Id="MyAppPool"
Name="[WEB_APP_NAME]"
ManagedRuntimeVersion="v4.0"
ManagedPipelineMode="integrated"
Identity="applicationPoolIdentity" />
</Component>

<!--Website-->
<Component Id="cmpMyWebsite"
Guid="{ECD42015-C067-44F3-94D9-5E713BCB586D}"
KeyPath="yes">

<iis:WebSite Id="website_MyWebsite"
Description="[WEB_APP_NAME]"
Directory="WEBFOLDER"
ConfigureIfExists="no">

<iis:WebApplication Id="webapplication_MyWebsite"
Name="[WEB_APP_NAME]"
WebAppPool="MyAppPool" />

<iis:WebAddress Id="webaddress_MyWebsite"
Port="[WEB_APP_PORT]" />
</iis:WebSite>
</Component>

我希望在 UI 中更改 WEB_APP_NAME 后,卸载程序能够找到它,从而从 IIS 中删除 appool 和 webapp。

Property(S): VirtualMemory = 3353
Property(S): UpgradeCode = {A4F9CA9E-4135-4D6F-AF58-FADA49E265DA}
Property(S): ConfigureIIs7Exec = **********
Property(S): StartIIS7ConfigTransaction = **********
Property(S): RollbackIIS7ConfigTransaction = **********
Property(S): CommitIIS7ConfigTransaction = **********
Property(S): WriteIIS7ConfigChanges = **********
Property(S): NETFRAMEWORK45 = #461808
Property(S): WEBFOLDER= C:\inetpub\WebApp\
Property(S): WEB_APP_FOLDER_LOC = C:\inetpub\
Property(S): WEB_APP_NAME = WebApp
Property(S): WEB_APP_PORT = 8080
Property(S): WEB_APP_USERNAME = ******
Property(S): WEB_APP_DOMAIN_NAME = ******
Property(S): WEB_APP_SQLSERVER_NAME = ******
Property(S): INCLUDECONFIGFILE = 1

这就是默认卸载日志的样子,如果我将 WEB_APP_NAME 更改为其他内容,那么在上面可以看到的卸载日志中找不到 WEB_APP_NAME?

感谢任何可以解决此问题的想法!

最佳答案

这里要理解的关键是 Windows Installer 不保存属性值。用户输入的值(通过 UI 或命令行参数)在修复、升级或卸载期间将不可用。您可能会想,它在卸载期间可用,这是一个简单的请求,但这就是 Windows 安装程序的工作方式。绕过此问题的最简单解决方案是读取属性,然后将其写入注册表。在修复/卸载/升级期间执行注册表搜索并使用基于注册表内容的值。

至于为什么在卸载时保留默认值,那是因为初始/默认值被添加到MSI Property table .并且在卸载期间也会从属性表中使用相同的值。

关于properties - 在卸载日志中找不到 WiX 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54710379/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com