Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Monitor Active Directory Database PerformanceContent of Monitor Active Directory Database Performance.vbsMD5 Hash: 3D7165CE0803D6A97233566A68CA5525 |
||
' Description: Uses cooked performance counters to monitor the performance of the Active Directory database on a domain controller.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colDatabases = objWMIService.ExecQuery _ ("Select * from Win32_PerfFormattedData_Esent_Database " _ & "Where Name = 'NT Directory'") For Each objADDatabase in colDatabases Wscript.Echo "Database cache hit percent: " & _ objADDatabase.DatabaseCachePercentHit Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |