Uses cooked performance counters to monitor File Replication Service performance on a domain controller
strComputer = "."Set objWMIService = GetObject("winmgmts:" _& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")Set colFRSSet = objWMIService.ExecQuery _("Select * from Win32_PerfFormattedData_FileReplicaConn_FileReplicaConn")For Each objFRSInstance in colFRSSetWscript.Echo "Remote change orders received: " & _objFRSInstance.RemoteChangeOrdersReceivedWscript.Echo "Remote change orders sent: " & _objFRSInstance.RemoteChangeOrdersSentWscript.Echo "Packets sent: " & objFRSInstance.PacketsSentNext
This is a VB Script, this can be used by saving the file in .vbs file