Reference Guide

' End
'======================================================================
====
Sample Get RAID status
Below is a sample VBScript that contains details of the sample GetRAID status.
'**********************************************************************
'*** Name: SampleGetRAIDStatus.vbs
'*** Purpose: To get the current list of BIOS Settings on a Dell OMCI 8.2.1 client.
'*** Usage: cscript.exe /nologo SampleGetRAIDStatus.vbs <systemname>
'*** This sample script is provided as an example only, and has not been
'*** tested, nor is warranted in any way by Dell; Dell disclaims any
'*** liability in connection therewith. Dell provides no technical
'*** support with regard to such scripting. For more information on WMI
'*** scripting, refer to applicable Microsoft documentation.
'**********************************************************************
'***Declare variables
Dim objWMIService
Dim strComputerName
Dim strNameSpace
Dim strClassName
Dim ColSystem
Dim fso
Dim txtfile
Dim outString
Dim iTKVal
Dim ArrayItem
Dim objInstance
372