hello world.
so ive converted part of it as there are hundreds of examples in this forum to go by
$objWMIService = ObjGet("winmgmts:{impersonationLevel = impersonate}!" & $asset & "rootHPInstrumentedBios")
$colOperatingSystems = $objWMIService.ExecQuery("Select * from HP_BIOSSettingInterface")
If IsObj($colOperatingSystems) Then
For $objOS In $colOperatingSystems
;
Next
EndIf
but i am unsure how to convert this (which is supposed to make the change and return a success/fail value):
For each objOS in colOperatingSystems
objItem.SetBiosSetting oReturn, "Boot Order", "Diskette,Hard Drive,Network Controller,Multibay", "<kbd/>1E302E020304"
Next
thanks in advance!