Vbscript / Operating System / Dell Bios View Configuration Settings
This script enumerates the BIOS configuration parameters and values of a Dell computer with OMCI installed.
strComputername = "." strNameSpace = "root/Dellomci" strClassName = "Dell_Configuration" strKeyValue = "Configuration"
Set objInstance = GetObject("WinMgmts:{impersonationLevel=impersonate}//"&_ strComputerName & "/"& strNameSpace & ":" & strClassName & "=" & _ Chr(34) & strKeyValue & Chr(34))
For Each property in objInstance.Properties_ Wscript.Echo property.name & " - " & property.value Next
Please note that a disclaimer applies to any code on this page.
|