安装前是否可以检查具体日期?

发布于 2024-12-05 01:46:11 字数 156 浏览 2 评论 0 原文

我的VS2005安装项目安装程序需要检查特定日期才能安装。我通过重写 OnBeforeInstall 以编程方式尝试了此操作,但安装在检查之前首先进行。我还在安装项目上尝试了启动条件(例如,%Date > somedate),但我找不到这方面的好例子。有人可以帮忙吗?

谢谢!

My VS2005 setup project installer needs to check a specific date before it can be installed. I tried this programatically by overriding the OnBeforeInstall but the installation proceeds first before it gets checked. I also tried the Launch Condition on the setup project (e.g., %Date > somedate) but I cannot find a good example on this. Can someone help please?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

万劫不复 2024-12-12 01:46:11

Visual Studio 不支持此功能。您需要一个设置创作工具,该工具允许您在 LaunchConditions 操作href="http://msdn.microsoft.com/en-us/library/aa369543%28VS.85%29.aspx" rel="nofollow">InstallUISequence 表。

即使这样,您也需要一个 win32 DLL 或 VBScript 自定义操作来告诉安装程序停止。例如,您可以设置用作启动条件的安装程序属性。这无法通过安装程序类操作来完成。

尝试重新检查为什么需要检查日期并提出更具体的问题。也许还有其他解决方案。

This is not supported by Visual Studio. You need a setup authoring tool which allows you to add your custom action before LaunchConditions action in InstallUISequence table.

Even then, you would need a win32 DLL or VBScript custom action to tell the installer to stop. For example, you could set an installer property which is used as a launch condition. This cannot be done with an installer class action.

Try re-examining why you need to check the date and ask a more specific question. Perhaps there are other solutions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文