Contact Info

Crumbtrail

ActiveXperts.com » Administration » Scripts » WMI Performance Counters » VBScript

ShortcutFile - WMI sample in VBScript

The foundations for Manageability in Windows 2019/2012/2008/ and Windows 10/8/7/Vista/XP are 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.

On this site, you can find many WMI samples.

The ShortcutFile WMI class can be used in ActiveXperts Network Monitor to monitor your servers.


ShortcutFile

Example(s)

Set objWMIService = GetObject("winmgmts:\\.\root\cimv2")

Set colItems = objWMIService.ExecQuery("Select * From Win32_ShortcutFile")

For Each objItem in colItems
	WScript.Echo "AccessMask:" & objItem.AccessMask
	WScript.Echo "Archive:" & objItem.Archive
	WScript.Echo "Caption:" & objItem.Caption
	WScript.Echo "Compressed:" & objItem.Compressed
	WScript.Echo "CompressionMethod:" & objItem.CompressionMethod
	WScript.Echo "CreationClassName:" & objItem.CreationClassName
	WScript.Echo "CreationDate:" & objItem.CreationDate
	WScript.Echo "CSCreationClassName:" & objItem.CSCreationClassName
	WScript.Echo "CSName:" & objItem.CSName
	WScript.Echo "Description:" & objItem.Description
	WScript.Echo "Drive:" & objItem.Drive
	WScript.Echo "EightDotThreeFileName:" & objItem.EightDotThreeFileName
	WScript.Echo "Encrypted:" & objItem.Encrypted
	WScript.Echo "EncryptionMethod:" & objItem.EncryptionMethod
	WScript.Echo "Extension:" & objItem.Extension
	WScript.Echo "FileName:" & objItem.FileName
	WScript.Echo "FileSize:" & objItem.FileSize
	WScript.Echo "FileType:" & objItem.FileType
	WScript.Echo "FSCreationClassName:" & objItem.FSCreationClassName
	WScript.Echo "FSName:" & objItem.FSName
	WScript.Echo "Hidden:" & objItem.Hidden
	WScript.Echo "InstallDate:" & objItem.InstallDate
	WScript.Echo "InUseCount:" & objItem.InUseCount
	WScript.Echo "LastAccessed:" & objItem.LastAccessed
	WScript.Echo "LastModified:" & objItem.LastModified
	WScript.Echo "Manufacturer:" & objItem.Manufacturer
	WScript.Echo "Name:" & objItem.Name
	WScript.Echo "Path:" & objItem.Path
	WScript.Echo "Readable:" & objItem.Readable
	WScript.Echo "Status:" & objItem.Status
	WScript.Echo "System:" & objItem.System
	WScript.Echo "Target:" & objItem.Target
	WScript.Echo "Version:" & objItem.Version
	WScript.Echo "Writeable:" & objItem.Writeable
	WScript.Echo ""
	WScript.Echo "########"
	WScript.Echo ""
Next