Reference Guide

'======================================================================
====
' End
'======================================================================
====
System summary
Below is a sample VBScript that contains details of the system summary.
'**********************************************************************
'*** Name: SampleSystemSummary.vbs
'*** Purpose: To check for BIOS Admin/Boot Password on a Dell OMCI client.
'*** Usage: cscript.exe //nologo SampleSystemSummary.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.
'**********************************************************************
Option Explicit
'*** Declare variables
Dim strNameSpace
Dim strComputerName
Dim strClassName
Dim strClassNameBIOS
Dim strKeyValueChassis
Dim objInstance
Dim ColSystem
Dim objWMIService
Dim strMessage
364