Delphi 2007 之后的 WmiSet 是否有替代或更新?
我们目前使用 Online AdminWmiSet a> 在远程计算机上运行 Wmi 查询并查询注册表设置。
问题是它仅支持 Delphi 直至 RAD Studio 2007。
我们目前正在升级到 Delphi XE,需要知道是否有人知道或拥有更新版本的 WmiSet
组件或任何类似的东西。
我们已尝试联系供应商,但到目前为止,我们的任何疑问都没有得到任何回复。
We currently use WmiSet
from Online Admin to run Wmi Queries and query registry settings on remote machines.
The problem is that it only supports Delphi up to RAD Studio 2007.
We are currently in the process of upgrading to Delphi XE and need to know if anybody knows of — or has — a more recent version of the WmiSet
components or anything similar.
We have tried to contact the vendor but so far there have not been any replies on any of our queries.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Pieter,前段时间我启动了一个名为
Delphi Wmi Class Generator< 的项目/code>
该项目创建完整记录的 Object Pascal 类(与 delphi 7 到 XE 兼容)来访问 WMI。
检查此代码,它使用
TWin32_BIOS
类(由应用程序创建)来访问Win32_BIOS
远程计算机中的 wmi 类。Pieter, some time ago i start a project called
Delphi Wmi Class Generator
this project creates full documented Object Pascal classes (compatible with delphi 7 to XE) to access the WMI.check this code which uses the
TWin32_BIOS
class (created by the application) to access theWin32_BIOS
wmi class in a remote machine.将 WMISet 库转换为 Unicode Delphi 并不是太困难。我已经完成了到 Delphi 2009 和 2010 的转换,编译器会向您指出那些需要更改的代码行。如果我有时间,我会为 UniCode Delphi 准备原始代码和更改后的代码之间的“差异”并上传。
问候,
奥拉夫
converting the WMISet library to Unicode Delphi is not too difficult. I've done the conversion to Delphi 2009 and 2010, and the compiler points you towards those lines of code that need changing. If I find the time I'll prepare a "diff" between the original code and the changed one for UniCode Delphi and upload it.
Regards,
Olaf