Jump to content

converting vb script to autoit


gcue
 Share

Recommended Posts

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
Link to comment
Share on other sites

  • Moderators

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!

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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