Users Guide

'*** Sub used to display the correct usage of the script
*** (Sub verwendet, um die richtige Verwendung des Skripts anzuzeigen)
Sub Usage()
Dim strMessage
strMessage = "incorrect syntax. You should run: " & vbCRLF & _
"cscript.exe//nologoSampleWuOLEnable.vbs<Systemname>"
WScript.Echo strMessage
End Sub
Service-Tag-Nummer, Systemkennnummer und BIOS-Revision abrufen
'**********************************************************************
'*** Name: SampleSystemSummary.vbs
'*** Purpose: To display asset tag, service tag, and BIOS revision of
'*** a Dell OMCI client.
'*** (Zweck: Systemkennnummer, Service-Tag-Nummer und BIOS-Revision eines
'*** Dell OMCI-Clients anzeigen.)
'*** Usage: cscript.exe //nologo SampleSystemSummary.vbs <systemname>
'*** (Verwendung: 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.
'*** (Dieses Beispielskript ist lediglich ein bereitgestelltes Beispiel und ist
'*** weder getestet noch in irgendeiner Weise von Dell garantiert; Dell lehnt
'*** jegliche Haftung in Verbindung damit ab. Dell bietet keinen technischen
'***SupportbezüglichsolcherSkriptean.WeitereInformationenüber
'*** WMI-Skripte finden Sie in der entsprechenden Microsoft-Dokumentation.)
'**********************************************************************
Option Explicit
'*** Declare variables (Variablen angeben)
Dim strNameSpace
Dim strComputerName
Dim strClassName
Dim colInstances
Dim objInstance
Dim strWQLQuery
Dim strMessage
Dim strKeyName
'*** Check that the right executable was used to run the script
'***andthatallparameterswerepassed(PrüfenSie,obdierichtige
'***ausführbareDateizurAusführungdesSkriptsverwendetwurdeund
'*** ob alle Parameter weitergegeben wurden)
If (LCase(Right(WScript.FullName, 11)) = "wscript.exe" ) Or _
(Wscript.Arguments.Count<1)Then
CallUsage()
WScript.Quit
End If
'*** Initialize variables (Variablen initialisieren)
strNameSpace = "root/Dellomci"
strComputerName = WScript.Arguments(0)
strClassName = "Dell_SystemSummary"
strKeyName = "Name"
'*** WQL Query to retrieve instances of Dell_SystemSummary
'*** (WQL-Abfrage, um Instanzen von Dell_SystemSummary abzurufen)
strWQLQuery = "SELECT * FROM " & strClassName & " WHERE " & _
strKeyName&"="&Chr(34)&strComputerName&Chr(34)
'*** Retrieve instances of Dell_Configuration class (there should only
'*** be 1 instance). (Instanzen der Dell_Configuration-Klasse abrufen
'*** [es sollte nur 1 Instanz vorhanden sein].)
Set colInstances = GetObject("WinMgmts:{impersonationLevel=impersonate}//"&_
strComputerName&"/"&strNameSpace).ExecQuery(strWQLQuery,"WQL",
NULL)
'*** Use only first instance to retrieve asset tag, service tag, and BIOS
'*** version ( Nur die erste Instanz zur Abfrage von Systemkennnummer,
'*** Service-Tag-Nummer und BIOS-Version verwenden)
For Each objInstance in colInstances
strMessage="AssetTag:"
strMessage=strMessage&objInstance.Properties_.Item
("AssetTag").Value
strMessage=strMessage&vbCRLF&"ServiceTag:"
strMessage=strMessage&objInstance.Properties_.Item
("ServiceTag").Value
strMessage=strMessage&vbCRLF&"BIOSVersion:"
strMessage=strMessage&objInstance.Properties_.Item
("BIOSVersion").Value
ExitFor
Next