manoj.engineer Posted January 6, 2012 Report post Posted January 6, 2012 Is it possiable to pull the reports of client systems BIOS password is set or not in SCCM 2007? Quote Share this post Link to post Share on other sites More sharing options...
GarthMJ Posted October 17, 2012 Report post Posted October 17, 2012 Yes you can gather this information with CM07. You will need to edit the sms_def.mof to collect AdminPasswordStatus from Win32_ComputerSystem http://msdn.microsof...2(v=vs.85).aspx Quote Share this post Link to post Share on other sites More sharing options...
Mikey C Posted October 18, 2012 Report post Posted October 18, 2012 Yes you can gather this information with CM07. You will need to edit the sms_def.mof to collect AdminPasswordStatus from Win32_ComputerSystem http://msdn.microsof...2(v=vs.85).aspx hi garth thats an interesting comment - i had no idea that was recorded in WMI. I dont suppose you could tell me the alias/command to display that information in a dos window? Something along the lines of wmic csproduct get That way we could test to see how many of our devices actually report this in WMI before editing that file. Quote Share this post Link to post Share on other sites More sharing options...
GarthMJ Posted October 19, 2012 Report post Posted October 19, 2012 I’m sure that you can wmic but I use Wbemtest instead, particularly since it will allow me to connect to remote PCs. Quote Share this post Link to post Share on other sites More sharing options...
Peter33 Posted October 19, 2012 Report post Posted October 19, 2012 wmic COMPUTERSYSTEM GET AdminPasswordStatus 1 (0x1) Disabled 2 (0x2) Enabled 3 (0x3) Not Implemented 4 (0x4) Unknown Quote Share this post Link to post Share on other sites More sharing options...
Mikey C Posted October 31, 2012 Report post Posted October 31, 2012 wmic COMPUTERSYSTEM GET AdminPasswordStatus 1 (0x1) Disabled 2 (0x2) Enabled 3 (0x3) Not Implemented 4 (0x4) Unknown Thanks extremely helpful, thanks Peter I had already leveraged the additional data actually, but hadn't found out what each number had indicated. Quote Share this post Link to post Share on other sites More sharing options...