我正在尝试根据
Windows版本运行自定义操作(删除某个文件).
我知道如何检查Windows版本:
我知道如何检查Windows版本:
<Condition Message="Windows version xxx required..."> <![CDATA[Installed OR (VersionNT >= 600)]]> </Condition>
您需要在
Custom element中指定运行自定义操作的条件. (这允许您在序列中的不同位置多次运行自定义操作,并且每次根据需要使用不同的条件).
原文链接:https://www.f2er.com/windows/363411.html例:
<InstallExecuteSequence> <Custom Action="CreateRegistryEntries" After="CostInitialize"> NOT Installed AND NOT PATCH </Custom> </InstallExecuteSequence>