gcue Posted October 25, 2012 Posted October 25, 2012 (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 October 25, 2012 by gcue
FireFox Posted October 25, 2012 Posted October 25, 2012 (edited) Hi, Give it a try : Global $oReturn ... $objItem.SetBiosSetting($oReturn, "Boot Order", "Diskette,Hard Drive,Network Controller,Multibay", "<kbd/>1E302E020304") ... Br, FireFox. Edited October 25, 2012 by FireFox
Moderators JLogan3o13 Posted October 25, 2012 Moderators Posted October 25, 2012 (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 October 25, 2012 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!
gcue Posted October 25, 2012 Author Posted October 25, 2012 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!!!
gcue Posted October 25, 2012 Author Posted October 25, 2012 got it working.. was just hitting the wrong field name awesome awesome thank you again guys
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now