欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

利用VBS腳本修改聯(lián)想筆記本BIOS密碼的代碼分享

 更新時(shí)間:2013年07月28日 18:37:44   作者:  
這篇文章主要介紹了利用VBS腳本修改聯(lián)想筆記本BIOS密碼的實(shí)現(xiàn)代碼,感覺(jué)這不科學(xué)!無(wú)意中找到的一些資料,喜歡的朋友可以試試

這不科學(xué)!無(wú)意中找到的一些資料:

Lenovo_SetBiosPassword_1
vbs 代碼:

復(fù)制代碼 代碼如下:

strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\WMI")
' Obtain an instance of the the class
' using a key property value.
Set objShare = objWMIService.Get("Lenovo_SetBiosPassword.InstanceName='ACPI\PNP0C14\1_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='ACPI\PNP0C14\1_0'", "SetBiosPassword", objInParam)

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


Lenovo_SetBiosPassword_2
文檔下載【PDF】:montdeployguide

本人來(lái)自: http://www.enun.net/?p=1497

相關(guān)文章

最新評(píng)論