Contact Info

Crumbtrail

ActiveXperts.com » Administration » Scripts » WMI Performance Counters » Perl

NetTeredoConfiguration - WMI sample in Perl

The foundations for Manageability in Windows 2019/2012/2008/ and Windows 10/8/7/Vista/XP are Windows Management Instrumentation (WMI; formerly WBEM) and WMI extensions for Windows Driver Model (WDM).

ActiveXperts Network Monitor provides the ability to build monitor check routines based on WMI. ActiveXperts has collected more than a hundred WMI samples. You can use these samples as a base for new check routines you can write yourself.

On this site, you can find many WMI samples.

The NetTeredoConfiguration WMI class can be used in ActiveXperts Network Monitor to monitor your servers.


NetTeredoConfiguration

Example(s)

use Win32::OLE('in');

my $computer = ".";

my $objWMIService = Win32::OLE->GetObject("winmgmts:\\\\$computer\\root\\StandardCimv2") or die "WMI connection failed.\n";
my $colItems = $objWMIService->ExecQuery("SELECT * FROM MSFT_NetTeredoConfiguration", "WQL");

foreach my $objItem (in $colItems) {
	print "Caption: $objItem->{Caption}\n";
	print "ClientPort: $objItem->{ClientPort}\n";
	print "DefaultQualified: $objItem->{DefaultQualified}\n";
	print "Description: $objItem->{Description}\n";
	print "ElementName: $objItem->{ElementName}\n";
	print "InstanceID: $objItem->{InstanceID}\n";
	print "PolicyStore: $objItem->{PolicyStore}\n";
	print "RefreshInterval: $objItem->{RefreshInterval}\n";
	print "ServerName: $objItem->{ServerName}\n";
	print "ServerShunt: $objItem->{ServerShunt}\n";
	print "ServerVirtualIP: $objItem->{ServerVirtualIP}\n";
	print "Type: $objItem->{Type}\n";
	print "\n";
	print "########\n";
	print "\n";
}