大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
访问SQL Server WMI对象
福田网站建设公司创新互联,福田网站设计制作,有大型网站制作公司丰富经验。已为福田数千家提供企业网站建设服务。企业网站搭建\成都外贸网站制作要多少钱,请找那个售后服务好的福田做网站的公司定做!
1. 使用Powershell访问
get-wmiobject -list -namespace "root\Microsoft\SqlServer" get-wmiobject -list -namespace "root\Microsoft\SqlServer\ServerEvents\MSSQLSERVER" get-wmiobject -namespace "root\Microsoft\SqlServer\ComputerManagement10" -query "Select * From SqlService"
2. 使用wbemtest.exe访问
在开始、运行,输入wbemtest.exe
输入空间名:
root\Microsoft\SqlServer\ComputerManagement10
遇到的问题:
在访问wbemtest.exe时,会遇到权限问题,如下:
在开始、运行,输入wmimgmt.msc
右键WMI Control(local),点击Properties
切换到Security窗口,展开到需要访问的目录,授予DX\xucy访问权限。
参考:
https://mattsql.wordpress.com/2013/08/15/quick-tip-wmi-alerts-and-sql-server-agent-permissions/
http://stackoverflow.com/questions/2056056/access-sql-wmi-namespaces-from-remote-machine
http://www.jb51.net/article/52489.htm