添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
鬼畜的绿豆  ·  java.lang.IllegalState ...·  9 月前    · 
微笑的松球  ·  Java ...·  10 月前    · 
打盹的针织衫  ·  中国新闻网_有聊·  1 年前    · 
八块腹肌的眼镜  ·  SQL Server ...·  1 年前    · 

Hey guys im new on SCCM 2012, I read a lot and I install a SCCM following your instruction, thanks a lot.

At the moment Im stucked in my lab trying to set the BIOS supervisor password on a TS. This is the information:

Machine: Lenovo M92P/M93P ThinkCentre

OS: Win7 Pro

I got everything working nice but my department require BIOS password for all machines (more than 1000), I research on lenovo website with no success and Im looking a solution or advise if I have to use a TS or Script or a command line, something that Works!!!!.

I found this ....

(Get-WmiObject -Class Lenovo_SetBiosSetting -Namespace root\wmi -ComputerName computername -ErrorAction Stop).SetBiosSetting("After Power Loss,Power Off")

(Get-WmiObject -Class Lenovo_SaveBiosSettings -Namespace root\wmi -ComputerName computername -ErrorAction Stop).SaveBiosSettings("Password,ascii,us")

But doesn't works.

Thanks

Hello, i have done a similar Package deployment of a bios password to all our HP Machines, (2500+)

Using the below command

biosconfigutility /nspwd:"PASSWORD"

I got the tool from the HP Site, and made a query for the collection, so any new PC's that get imaged, automatically get the Bios Password instead of re-deploying

Here's the Query below

select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId where SMS_G_System_COMPUTER_SYSTEM.Model = "HP Compaq 6005 Pro MT PC" or SMS_G_System_COMPUTER_SYSTEM.Model = "HP Compaq Pro 6305 MT" or SMS_G_System_COMPUTER_SYSTEM.Model = "HP Compaq Pro6305 Microtower"

Hope that helps