Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Page File UseContent of List Page File Use.ps1MD5 Hash: BA48714382D83BC3B6BF01903F0FB1E2 |
||
$strComputer = "."
$colItems = get-wmiobject -class "Win32_PageFileUsage" -namespace "root\CIMV2" ` -computername $strComputer foreach ($objItem in $colItems) { write-host "Allocated Base Size: " $objItem.AllocatedBaseSize write-host "Caption: " $objItem.Caption write-host "Current Usage: " $objItem.CurrentUsage write-host "Description: " $objItem.Description write-host "Installation Date: " $objItem.InstallDate write-host "Name: " $objItem.Name write-host "Peak Usage: " $objItem.PeakUsage write-host "Status: " $objItem.Status write-host "Temporary Page File: " $objItem.TempPageFile write-host } | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |