我是靠谱客的博主 温暖冬天,最近开发中收集的这篇文章主要介绍利用VBS脚本修改联想笔记本BIOS密码的代码分享,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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

Lenovo_SetBiosPassword_1
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


Lenovo_SetBiosPassword_2
文档下载【PDF】:montdeployguide

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

最后

以上就是温暖冬天为你收集整理的利用VBS脚本修改联想笔记本BIOS密码的代码分享的全部内容,希望文章能够帮你解决利用VBS脚本修改联想笔记本BIOS密码的代码分享所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(163)

评论列表共有 0 条评论

立即
投稿
返回
顶部