如何以编程方式更改 WMI 设置而不是使用 wmimgmt.msc snappin?

发布于 2024-10-30 06:11:53 字数 1126 浏览 0 评论 0原文

通常你会这样:

  • 开始 ->运行
  • 输入 wmimgmt.msc 并按 Enter
  • 键单击“WMI Control”节点 -> 安全选项卡上的属性
  • 单击按钮安全
  • 为您刚刚添加的用户添加新用户
  • 允许“远程 以

如何 编程方式完成此操作(C# 或 vbs)? 我在网上搜索并找到了一些关于使用 WMIC 来做到这一点的信息,但我不明白如何做到这一点。 如果对您有帮助的话,这是链接。 http://msdn.microsoft.com/en -us/library/aa393613%28v=vs.85%29.aspx
http://msdn.microsoft.com/en -us/library/aa393611%28v=vs.85%29.aspx
http://msdn.microsoft.com/en -us/library/aa822575%28v=vs.85%29.aspx
http://msdn.microsoft.com/en -us/library/aa822576%28v=vs.85%29.aspx
http://msdn.microsoft.com/en -us/library/aa394531%28v=VS.85%29.aspx

非常感谢

Normally you go this way:

  • start -> run
  • enter wmimgmt.msc and press enter
  • riht click on "WMI Control" node ->
    properties
  • on security tab click button security
  • add new user
  • for user you just add allow "Remote
    enable"

How can this be done programmatically(C# or vbs) ?
I searched the web and found sometning about doing it by using WMIC, but I don't understand how to do it.
Here are the links if they helps you.
http://msdn.microsoft.com/en-us/library/aa393613%28v=vs.85%29.aspx
http://msdn.microsoft.com/en-us/library/aa393611%28v=vs.85%29.aspx
http://msdn.microsoft.com/en-us/library/aa822575%28v=vs.85%29.aspx
http://msdn.microsoft.com/en-us/library/aa822576%28v=vs.85%29.aspx
http://msdn.microsoft.com/en-us/library/aa394531%28v=VS.85%29.aspx

Thank you very much

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

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

发布评论

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

评论(2

四叶草在未来唯美盛开 2024-11-06 06:11:53

我不会确切地解释如何执行此操作,但由于您正在做的事情需要对 Windows、编程和管理有一定的了解,所以我将简单地为您提供一个源代码链接,您可以将其改编到您的项目中以管理 WMI安全性:

http://www.codeproject.com/KB/system/WmiSecurity.aspx

基本上您应该注意的是以下段落:

因此,在这一点上,一些示例应该足以说明该实用程序的使用。假设您要将域 HelpDesk 组添加到 S223001 计算机上的 CIMV2 和后续命名空间。此外,假设该组应该具有远程连接和读取 WMI 对象的能力。为此:

WmiSecurity /C=S223001 /A /N=Root\CimV2 /M=MyDomain\HelpDesk:REMOTEACCESS /R

希望它能有所帮助。

干杯。

I won't explain exactly how to do this, but since you are doing something that involves some good understanding of windows, programming and administering I will simply give you a link to the source code that you can adapt into your project to manage the WMI security:

http://www.codeproject.com/KB/system/WmiSecurity.aspx

Basically what you should note is the following paragraph:

So at this point, some examples should suffice to illustrate the use of the utility. Suppose you wanted to add the domain HelpDesk group to the CIMV2 and subsequent namespaces on the S223001 computer. Further, suppose this group should have the ability to remotely connect and read WMI objects. To do this:

WmiSecurity /C=S223001 /A /N=Root\CimV2 /M=MyDomain\HelpDesk:REMOTEACCESS /R

Hope that it can help.

Cheers.

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