Jump to content

Recommended Posts

Posted (edited)

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!

Edited by gcue
Posted (edited)

Hi,

Give it a try :

Global $oReturn
...
$objItem.SetBiosSetting($oReturn, "Boot Order", "Diskette,Hard Drive,Network Controller,Multibay", "<kbd/>1E302E020304")
...

Br, FireFox.

Edited by FireFox
  • Moderators
Posted (edited)

Hi, gcue, can you post the original vbscript? I'm not sure where the script is pulling oReturn or objItem from. Typically, you only need to throw parenthesis around it, like this:

For $objOS in $colOperatingSystems
     $objOS.SetBiosSetting($oReturn, "Boot Order", "Diskette,Hard Drive,Network Controller,Multibay", "<kbd/>1E302E020304")
Next

Edit: Too late!

Edited by JLogan3o13

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Posted

syntax worked! thanks!

but getting an invalid paramater error.. its the what im trying to set i think - ill play with it some more

thanks again for the quick help!!!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...