Reference for Win32_PerfFormattedData_Tcpip_IP
(Diese Seite wurde noch nicht auf das neue Layout umgestellt!)

Select by Class Type Search by Keyword
Show all classes

Category (Kategorie):

Networking

Description (Beschreibung):

The Win32_PerfFormattedData_Tcpip_IP "cooked" data performance counter class represents counters that measure the rates at which IP datagrams are sent and received by using IP protocols. It also includes counters that monitor IP protocol errors. This class is shown as the IP object in System Monitor. The WMI source of its data is the high-performance Cooked Counter Provider. This class derives its raw data from the corresponding raw class Win32_PerfRawData_Tcpip_IP. The original data source is the Tcpip performance library. This class was added for Windows XP.

Availability (Verfügbarkeit):

WMI Class NameWindows Server 2003Windows XP ProfessionalWindows 2000Windows NT 4.0Windows 98
Win32_PerfFormattedData_Tcpip_IP-Yes---

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_TCPIP_IP").objectSet
objRefresher.Refresh
For i = 1 to 5
    For Each objItem in colItems
    Wscript.Echo "Datagrams per second: " & objItem.DatagramsPerSec
    Wscript.Sleep 2000
    objRefresher.Refresh
    Next
Next

Links:

Link zur Original-Microsoft-Dokumentation