Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/wix/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Wix 卸载自定义操作_Wix_Windows Installer_Installation_Uninstallation_Custom Action - Fatal编程技术网

Wix 卸载自定义操作

Wix 卸载自定义操作,wix,windows-installer,installation,uninstallation,custom-action,Wix,Windows Installer,Installation,Uninstallation,Custom Action,我的C#自定义操作应该在哪个自定义操作之后执行?我应该使用什么条件使自定义操作只能在卸载时运行 在哪个自定义操作之后,我的C# 执行自定义操作 这取决于他们做什么 我应该在什么条件下使用我的 自定义操作只能在上运行 卸载 在哪个自定义操作之后,我的C# 执行自定义操作 这取决于他们做什么 我应该在什么条件下使用我的 自定义操作只能在上运行 卸载 您需要在自定义操作调用中提供何时调用它们的条件 例如: <Custom Action="UpdateConfig" After="InstallF

我的C#自定义操作应该在哪个自定义操作之后执行?我应该使用什么条件使自定义操作只能在卸载时运行

在哪个自定义操作之后,我的C# 执行自定义操作

这取决于他们做什么

我应该在什么条件下使用我的 自定义操作只能在上运行 卸载

在哪个自定义操作之后,我的C# 执行自定义操作

这取决于他们做什么

我应该在什么条件下使用我的 自定义操作只能在上运行 卸载


您需要在自定义操作调用中提供何时调用它们的条件

例如:

<Custom Action="UpdateConfig" After="InstallFinalize">INSTALL_APPLICATION = "1"</Custom>
INSTALL\u APPLICATION=“1”

在这里,您可以看到,在安装完所有内容后,如果在安装时选择了应用程序作为功能,则将调用自定义操作UpdateConfig。

您需要在自定义操作调用中提供何时调用它们的条件

例如:

<Custom Action="UpdateConfig" After="InstallFinalize">INSTALL_APPLICATION = "1"</Custom>
INSTALL\u APPLICATION=“1”
在这里,正如您所看到的,如果在安装过程中选择了应用程序作为功能,则在安装完所有内容后将调用自定义操作UpdateConfig