Win32_FileSpecification vbscript sample code
The foundations for Manageability in Windows is 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. The Win32_FileSpecification WMI class can be used in ActiveXperts Network Monitor to monitor your servers.
Description
The Win32_FileSpecification WMI class represents a source file with its various attributes, ordered by a unique, non-localized identifier. For uncompressed files, the File property is ignored, and the FileName property is used for both source and destination file name. You must set the Uncompressed bit of the Attributes property for any file that is not compressed in a cabinet.
Sample Code
On Error Resume Next strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery("Select * from Win32_FileSpecification",,48) For Each objItem in colItems Wscript.Echo "Attributes: " & objItem.Attributes Wscript.Echo "Caption: " & objItem.Caption Wscript.Echo "CheckID: " & objItem.CheckID Wscript.Echo "CheckMode: " & objItem.CheckMode Wscript.Echo "CheckSum: " & objItem.CheckSum Wscript.Echo "CRC1: " & objItem.CRC1 Wscript.Echo "CRC2: " & objItem.CRC2 Wscript.Echo "CreateTimeStamp: " & objItem.CreateTimeStamp Wscript.Echo "Description: " & objItem.Description Wscript.Echo "FileID: " & objItem.FileID Wscript.Echo "FileSize: " & objItem.FileSize Wscript.Echo "Language: " & objItem.Language Wscript.Echo "MD5Checksum: " & objItem.MD5Checksum Wscript.Echo "Name: " & objItem.Name Wscript.Echo "Sequence: " & objItem.Sequence Wscript.Echo "SoftwareElementID: " & objItem.SoftwareElementID Wscript.Echo "SoftwareElementState: " & objItem.SoftwareElementState Wscript.Echo "TargetOperatingSystem: " & objItem.TargetOperatingSystem Wscript.Echo "Version: " & objItem.Version Next