Win32_TapeDrive jscript 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_TapeDrive WMI class can be used in ActiveXperts Network Monitor to monitor your servers.
Description
The Win32_TapeDrive WMI class represents a tape drive on a Windows computer. Tape drives are primarily distinguished by the fact that they can be accessed only sequentially.
Sample Code
var wbemFlagReturnImmediately = 0x10; var wbemFlagForwardOnly = 0x20; var arrComputers = new Array("DELL17"); for (i = 0; i < arrComputers.length; i++) { WScript.Echo(); WScript.Echo("=========================================="); WScript.Echo("Computer: " + arrComputers[i]); WScript.Echo("=========================================="); var objWMIService = GetObject("winmgmts:\\\\" + arrComputers[i] + "\\root\\CIMV2"); var colItems = objWMIService.ExecQuery("SELECT * FROM Win32_TapeDrive", "WQL", wbemFlagReturnImmediately | wbemFlagForwardOnly); var enumItems = new Enumerator(colItems); for (; !enumItems.atEnd(); enumItems.moveNext()) { var objItem = enumItems.item(); WScript.Echo("Availability: " + objItem.Availability); try { WScript.Echo("Capabilities: " + (objItem.Capabilities.toArray()).join(",")); } catch(e) { WScript.Echo("Capabilities: null"); } try { WScript.Echo("CapabilityDescriptions: " + (objItem.CapabilityDescriptions.toArray()).join(",")); } catch(e) { WScript.Echo("CapabilityDescriptions: null"); } WScript.Echo("Caption: " + objItem.Caption); WScript.Echo("Compression: " + objItem.Compression); WScript.Echo("CompressionMethod: " + objItem.CompressionMethod); WScript.Echo("ConfigManagerErrorCode: " + objItem.ConfigManagerErrorCode); WScript.Echo("ConfigManagerUserConfig: " + objItem.ConfigManagerUserConfig); WScript.Echo("CreationClassName: " + objItem.CreationClassName); WScript.Echo("DefaultBlockSize: " + objItem.DefaultBlockSize); WScript.Echo("Description: " + objItem.Description); WScript.Echo("DeviceID: " + objItem.DeviceID); WScript.Echo("ECC: " + objItem.ECC); WScript.Echo("EOTWarningZoneSize: " + objItem.EOTWarningZoneSize); WScript.Echo("ErrorCleared: " + objItem.ErrorCleared); WScript.Echo("ErrorDescription: " + objItem.ErrorDescription); WScript.Echo("ErrorMethodology: " + objItem.ErrorMethodology); WScript.Echo("FeaturesHigh: " + objItem.FeaturesHigh); WScript.Echo("FeaturesLow: " + objItem.FeaturesLow); WScript.Echo("Id: " + objItem.Id); WScript.Echo("InstallDate: " + WMIDateStringToDate(objItem.InstallDate)); WScript.Echo("LastErrorCode: " + objItem.LastErrorCode); WScript.Echo("Manufacturer: " + objItem.Manufacturer); WScript.Echo("MaxBlockSize: " + objItem.MaxBlockSize); WScript.Echo("MaxMediaSize: " + objItem.MaxMediaSize); WScript.Echo("MaxPartitionCount: " + objItem.MaxPartitionCount); WScript.Echo("MediaType: " + objItem.MediaType); WScript.Echo("MinBlockSize: " + objItem.MinBlockSize); WScript.Echo("Name: " + objItem.Name); WScript.Echo("NeedsCleaning: " + objItem.NeedsCleaning); WScript.Echo("NumberOfMediaSupported: " + objItem.NumberOfMediaSupported); WScript.Echo("Padding: " + objItem.Padding); WScript.Echo("PNPDeviceID: " + objItem.PNPDeviceID); try { WScript.Echo("PowerManagementCapabilities: " + (objItem.PowerManagementCapabilities.toArray()).join(",")); } catch(e) { WScript.Echo("PowerManagementCapabilities: null"); } WScript.Echo("PowerManagementSupported: " + objItem.PowerManagementSupported); WScript.Echo("ReportSetMarks: " + objItem.ReportSetMarks); WScript.Echo("Status: " + objItem.Status); WScript.Echo("StatusInfo: " + objItem.StatusInfo); WScript.Echo("SystemCreationClassName: " + objItem.SystemCreationClassName); WScript.Echo("SystemName: " + objItem.SystemName); } } function WMIDateStringToDate(dtmDate) { if (dtmDate == null) { return "null date"; } var strDateTime; if (dtmDate.substr(4, 1) == 0) { strDateTime = dtmDate.substr(5, 1) + "/"; } else { strDateTime = dtmDate.substr(4, 2) + "/"; } if (dtmDate.substr(6, 1) == 0) { strDateTime = strDateTime + dtmDate.substr(7, 1) + "/"; } else { strDateTime = strDateTime + dtmDate.substr(6, 2) + "/"; } strDateTime = strDateTime + dtmDate.substr(0, 4) + " " + dtmDate.substr(8, 2) + ":" + dtmDate.substr(10, 2) + ":" + dtmDate.substr(12, 2); return(strDateTime); }