用户界面中的属性更改从卸载日志中消失。
如果我使用默认属性值安装我的应用,然后运行卸载,则该属性会显示在卸载日志中。
如果我在卸载时通过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?
赞赏能解决此问题的任何想法!
答案 0 :(得分:3)
这里要理解的关键是Windows Installer不会保存属性值。用户输入的值(通过UI或命令行参数)在修复,升级或卸载期间将不可用。您会想象,它在卸载期间可用,这很简单,但这就是Windows Installer的工作方式。绕过此问题的最简单解决方案是读取属性,然后将其写入注册表。在修复/卸载/升级过程中,请执行RegistrySearch并根据注册表中的值使用该值。
关于在卸载过程中保留默认值的原因,这是因为初始值/默认值已添加到MSI Property table。并且在卸载期间也会从属性表中使用相同的值。
答案 1 :(得分:1)
注意 :请至少防止在卸载过程中更改属性。我认为您只应在 全新安装?还是重大升级?否则,解析的目录名称与安装的目录名称不匹配(与您原来遇到的问题相同)。
持久属性 :当您允许在设置GUI或通过命令行显示和更改相关属性时,您需要保留相关属性。否则,当解析为目录或应用程序名称-或在设置中使用它们的任何容量时,这些属性将为空白。持久MSI属性不是Windows Installer内置的功能(只有一些系统属性会自动保留)。通常是MSI反模式,但事实就是如此。
“记住模式”示例 :对于常规的PUBLIC属性(大写属性),您可以使用Rob Mensching's remember pattern保存和检索属性值以进行修复,修改,卸载和其他维护操作。这里有一个使用此属性持久性模式的小样本:WIX UI for multiple target directories(记住正在使用的模式)。
安装模式 :进行设置时要检查的安装模式有很多: fresh install
, { {1}} , repair
, modify
, self-repair
, uninstall
, major upgrade uninstall
, patching
, rollback
(重新启动和其他原因),等等...我将至少测试前6种类型-以确保分辨率正常工作。