我的安装程序中有一个自定义操作,它使用 vbscript 自定义操作打开一个消息框。
<CustomAction Id="EXENotFound" Script="vbscript" Return="check">
<![CDATA[
Dim i
If session.Property("REMINDEX_SHORTCUT") = "" Then
i = MsgBox(session.Property("TextProp"), 1)
End If
]]>
</CustomAction>
如果 i = 2 的值(如果在消息框中按下取消),我想取消安装。如果我的脚本返回值 3,我想我可以取消安装,但它只返回 0。我试过这个:
Dim i
If session.Property("REMINDEX_SHORTCUT") = "" Then
i = MsgBox(session.Property("TextProp"), 1)
End If
If i = 2 Then
return 3
End If
这会引发一些关于“类型不匹配”的错误。
当我绝望时,我也试过这个:
<CustomAction Id="EXENotFound" Script="vbscript" Return="check">
<![CDATA[
Dim i
If session.Property("REMINDEX_SHORTCUT") = "" Then
i = MsgBox(session.Property("TextProp"), 1)
End If
If i = 2 Then
EXENotFound = 3
End If
]]>
</CustomAction>
我在网上进行了广泛的研究,但无法找到如何从自定义操作中取消安装,甚至无法找到如何简单地手动返回 3。
任何建议将不胜感激