程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 更多關於編程 >> 利用VBS腳本修改聯想筆記本BIOS密碼的代碼分享

利用VBS腳本修改聯想筆記本BIOS密碼的代碼分享

編輯:更多關於編程
    這篇文章主要介紹了利用VBS腳本修改聯想筆記本BIOS密碼的實現代碼,感覺這不科學!無意中找到的一些資料,喜歡的朋友可以試試  

    這不科學!無意中找到的一些資料:

    Lenovo_SetBiosPassword_1
    vbs 代碼:

    復制代碼 代碼如下:
    strComputer = "."
    Set objWMIService = GetObject("winmgmts:" & strComputer & "rootWMI")
    ' Obtain an instance of the the class
    ' using a key property value.
    Set objShare = objWMIService.Get("Lenovo_SetBiosPassword.InstanceName='ACPIPNP0C141_0'")

    ' Obtain an InParameters object specific
    ' to the method.
    Set objInParam = objShare.Methods_("SetBiosPassword"). _
    inParameters.SpawnInstance_()

    ' Add the input parameters.
    objInParam.Properties_.Item("Parameter") = "test"

    ' Execute the method and obtain the return status.
    ' The OutParameters object in objOutParams
    ' is created by the provider.
    Set objOutParams = objWMIService.ExecMethod("Lenovo_SetBiosPassword.InstanceName='ACPIPNP0C141_0'", "SetBiosPassword", objInParam)

    ' List OutParams
    Wscript.Echo "Out Parameters: "
    Wscript.echo "Return: " & objOutParams.Return

     

    Lenovo_SetBiosPassword_2
    文檔下載【PDF】:montdeployguide

    本人來自: http://www.enun.net/?p=1497

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved