Reference for Win32_PerfFormattedData_Tcpip_NBTConnection
|
|
Category (Kategorie): Networking
Description (Beschreibung): The Win32_PerfFormattedData_Tcpip_NBTConnection "cooked" data performance counter class represents counters that measure the rates at which bytes are sent and received over the NetBIOS over TCP/IP (NBT) connection between the local computer and a remote computer. The connection is identified by the name of the remote computer.
This class is shown as the NBT Connection object in System Monitor. The WMI source of its data is the high-performance Cooked Counter Provider. It derives its raw data from the corresponding raw class Win32_PerfRawData_Tcpip_NBTConnection. The original data source is the Tcpip performance library. This class was added for Windows XP.
Availability (Verfügbarkeit):
Sample Code (Beispiel):
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
set objRefresher = CreateObject("WbemScripting.SWbemRefresher")
Set colItems = objRefresher.AddEnum _
(objWMIService, "Win32_PerfFormattedData_TCP_NBTConnection").objectSet
objRefresher.Refresh
For i = 1 to 5
For Each objItem in colItems
Wscript.Echo "Bytes sent per second: " & objItem.BytesSentPerSec
Wscript.Sleep 2000
objRefresher.Refresh
Next
Next
Links:
Link zur Original-Microsoft-Dokumentation
www.IT-Visions.de, (C) Dr. Holger Schwichtenberg
|