Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Page File PropertiesContent of List Page File Properties.vbsMD5 Hash: E91F8E5AE1B44CC2F5FE19CBA09C9B54 |
||
' Description: Lists the properties of all the page files on a computer.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colPageFiles = objWMIService.ExecQuery("Select * from Win32_PageFile") For Each objPageFile in colPageFiles Wscript.Echo "Creation Date: " & objPageFile.CreationDate Wscript.Echo "Description: " & objPageFile.Description Wscript.Echo "Drive: " & objPageFile.Drive Wscript.Echo "File Name: " & objPageFile.FileName Wscript.Echo "File Size: " & objPageFile.FileSize Wscript.Echo "Initial Size: " & objPageFile.InitialSize Wscript.Echo "Install Date: " & objPageFile.InstallDate Wscript.Echo "Maximum Size: " & objPageFile.MaximumSize Wscript.Echo "Name: " & objPageFile.Name Wscript.Echo "Path: " & objPageFile.Path Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |