comparison _test/wmi.pl @ 22:da5bc24b3d3c

wmi tests
author Sergey
date Wed, 30 Sep 2009 17:41:32 +0400
parents
children 16ada169ca75
comparison
equal deleted inserted replaced
20:267460284fb3 22:da5bc24b3d3c
1 #!/usr/bin/perl -w
2 use strict;
3
4 use Win32::OLE;
5
6 my $wmi = Win32::OLE->GetObject("winmgmts:{impersonationLevel=impersonate}!\\\\.\\root\\cimv2");
7
8 my $colServices = $wmi->ExecQuery("select * from Win32_NetworkAdapterSetting");
9
10 print $_->Element,"\t",$_->Setting,"\n" foreach in $colServices;
11
12