检测目标系统中安装的 Visual Basic Power Pack?

发布于 2024-10-03 07:57:35 字数 207 浏览 2 评论 0原文

我想检测目标系统中已安装的 Visual Basic Power Pack 的版本。
如何使用注册表值(从 Win XP 到 Windows)执行此操作?
或者,如何检查 Visual Basic Power Packs 程序集的版本,例如:如何检查 Microsoft.VisualBasic.PowerPacks 程序集的版本?

I wanna detect the version of installed Visual Basic Power Packs in target system.
How can I do it with Registry values (Windows from Win XP)?
Or, How can I check the version of Visual Basic Power Packs assembly , e.g : how I can check the version of Microsoft.VisualBasic.PowerPacks assembly ?

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

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

发布评论

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

评论(1

我三岁 2024-10-10 07:57:35

我不知道安装电源组时会写入哪些注册表设置(如果有),但一个简单的查找方法是设置 进程监视器 监视系统上的所有更改,然后在其中安装电源包,您将能够看到写入的所有内容。

编辑:要获取程序集的版本,请使用 Assembly。 LoadLoadFrom 加载它,然后退出AssemblyName 使用 GetName 方法,并且 AssemblyName 有一个 版本 属性。

I don't know which, if any, registry settings gets written when the power packs gets installed, but an easy way to find out is to set up Process Monitor to monitor all changes on a system and then install the power pack on there and you'll be able to see everything that gets written.

Edit: To get the version of an assembly, use Assembly.Load or LoadFrom to load it and then get out the AssemblyName using the GetName method and the AssemblyName has a Version property.

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