Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use VBS script to modify BIOS password of Lenovo Notebook

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly introduces how to use VBS script to modify the BIOS password of Lenovo notebook, the article is very detailed, has a certain reference value, interested friends must read it!

Some information found by accident:

Vbs Code:

The copy code is as follows:

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\ 1room0'")

'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\ 1room0'", "SetBiosPassword", objInParam)

'List OutParams

Wscript.Echo "Out Parameters:"

Wscript.echo "Return:" & objOutParams.Return

The above is all the contents of the article "how to use the VBS script to change the BIOS password of Lenovo notebook". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report