使用 WMI VBScript 获取工作组中的计算机列表
我需要获取工作组中所有计算机的列表。我尝试了
Dim objComputers
设置 objComputers = GetObject("WinNT://WORKGROUP")
但它是Active Directory 对象。有没有办法让计算机没有WinNT://
?
I need get list of all computers in a WORKGROUP. I tried the
Dim objComputers
Set objComputers = GetObject("WinNT://WORKGROUP")
But it is Active Directory object. Is there any way to get the computers without WinNT://
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用完整 LDAP 路径连接到组对象。
您可以使用以下
内容进行枚举:参考项目:
编辑:现在我重新阅读它,我对您的问题感到困惑,问题是什么,您可以使用 winnt:// 绑定到域或计算机吗?
Connect to the group object by using the full LDAP path.
You can enumerate after with something like:
Refer to items by:
EDIT: I'm confused by your question now that I reread it, what is the problem, you can use winnt:// to bind to either the domain or a machine?