Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Check if my computer has bios password (via VB / C#)

Im doing a checklist in my domain. I was wondering if there's a way to obtain the BIOS status of Computer, particularly BIOS Password status, I want to know if a Computer has BIOS password or not without shutting down.

like image 215
jeansilva Avatar asked Oct 31 '14 14:10

jeansilva


1 Answers

for dell computers its possible to check if there is a password.

objInstance.Properties_.Item("Password").Value

have a look here and here

like image 130
gantners Avatar answered Sep 21 '22 16:09

gantners