Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: How to write vbscript equivalent to perl

by esskar (Deacon)
on Dec 28, 2005 at 14:17 UTC ( [id://519555]=note: print w/replies, xml ) Need Help??


in reply to How to write vbscript equivalent to perl

here we are:
use strict; use Win32::OLE qw( in ); use constant wbemFlagReturnImmediately => 0x10; use constant wbemFlagForwardOnly => 0x20; my $NameSpace = "root\\cimv2"; my $Machine = shift @ARGV || "."; $Machine =~ s/^[\\\/]+//; print $Machine. "\n"; my $WMIServices = Win32::OLE->GetObject( "winmgmts:{impersonationLevel = impersonate}!\\\\$Machine\\$NameSp +ace") || die; # get TotalVisibleMemorySize, FreePhysicalMemory, TotalVirtualMemoryS +ize, FreeVirtualMemory print "Win32_OperatingSystem: "; my $col = $WMIServices->ExecQuery( "SELECT * FROM Win32_OperatingSyste +m", "WQL", wbemFlagReturnImmediately | wbemFlagForwardOnly ); foreach my $memOS (in $col) { printf "%s %ld %ld %ld %ld", $memOS->{Name}, $memOS->{TotalVisibleMemorySize}, $memOS->{FreePhysicalMemory}, $memOS->{TotalVirtualMemorySize}, $memOS->{FreeVirtualMemory}; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://519555]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (4)
As of 2024-03-29 09:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found