VS SetUp 设置到期日期而不使用数据库

发布于 2024-11-15 08:34:59 字数 84 浏览 2 评论 0原文

我需要创建一个 msi 文件,该文件将在使用 VS 安装项目 45 天后过期。 我如何在不使用数据库的情况下实现这一点。用户将无法更改或更新任何到期设置。

I need to create a msi file which would be expire after say 45 days using VS setup Project.
How can i implement this without using the database.The user wont be able to change or update any settings of expiry.

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

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

发布评论

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

评论(2

╰沐子 2024-11-22 08:34:59

Visual Studio 安装项目中没有选项可以执行此操作。

相反,您可以在应用程序启动时从注册表/其他安全源读取值。

这是一个代码片段,介绍如何在没有数据库的情况下执行此操作

代码片段:TrialTimeManager 类

There is no option in Visual Studio Setup Project to do so.

Instead you can read the values from registry / other secure source on Application Start

Here is a code snippet on how to do it without DB

Code Snippet: TrialTimeManager class

万人眼中万个我 2024-11-22 08:34:59

Visual Studio 不支持此功能。您可以尝试选择以下解决方案之一:

  1. 使用支持产品许可的商业设置创作工具。这非常无痛,但价格昂贵。
  2. 编写您自己的许可机制并在您的应用程序中实现它。
  3. 尝试找到一个成本低于商业设置创作工具的专用解决方案。

This is not supported by Visual Studio. You can try choosing one of the following solutions:

  1. Use a commercial setup authoring tool which supports product licensing. It's pretty painless, but it's expensive.
  2. Write your own licensing mechanism and implement it in your application.
  3. Try to find a dedicated solution which costs less than a commercial setup authoring tool.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文