欢迎来到入门教程网!

vb

当前位置:主页 > 软件编程 > vb >

利用VBS脚本修改联想笔记本BIOS密码的代码分享

来源:本站原创|时间:2020-01-10|栏目:vb|点击:

这不科学!无意中找到的一些资料:


vbs 代码:

复制代码 代码如下:

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



文档下载【PDF】:montdeployguide

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

上一篇:VBS 提取狗狗影视中的ED2K连接的实现代码

栏    目:vb

下一篇:VBS 加解密 For MS Script Encode

本文标题:利用VBS脚本修改联想笔记本BIOS密码的代码分享

本文地址:https://www.xiuzhanwang.com/a1/vb/7308.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有