How to check System BIOS Date and System BIOS Version on Remote computer

The following knowledgebase will explain the methods you can use to check the System BIOS date and BIOS Version on local and remote computer.

You can use the following methods:

  1. Connecting to Remote Registry Service
  2. Using a script

The first method is easy but includes a lot of efforts. You can navigate to the following location in registry after connecting to remote registry:

HKLM\HARDWARE\DESCRIPTION\System

The above registry includes the following values in right pane:

SystemBiosDate REG_SZ 04/30/07

SystemBiosVersion REG_MULTI_SZ LENOVO - 2130\0Phoenix FirstBIOS(tm) Notebook Pro

Version 2.0 for ThinkPad\0Ver 1.00PARTTBL\0\0

To check on a Remote Computer:

You can use the below script to check the BIOS System date and BIOS Version on a remote computer:

@echo off

Srvlist=C:\Temp\Srvlist.txt

Echo Computer Name, BIOS Date, BIOS Version >> Result.csv

SET BIOS_Date=

SET BIOS_Ver=

For /F “Tokens=*” %%a In (%srvlist%) Do (

Set Comp_name=%%a

Set RegQry=”\\%%a\HKLM\HARDWRE\Description\system”

REG.exe Query %RegQry% > CheckCC.txt

Find /i "SystemBIOSDate" < CheckCC.txt > StringCheck.txt

FOR /f “Tokens=3” %%b in (CheckCC.txt) DO SET BIOS_Date=%%b

Find /i “SystemBIOSVersion” < CheckCC.txt > StringCheck.txt

FOR /f “Tokens=3” %%b in (CheckCC.txt) DO SET BIOS_Ver=%%b

Echo %Comp_name, %BIOS_Date%, %BIOS_Ver% >> Result.csv

)

The above script will check remote computer for two registry entries for BIOS System Date and BIOS Version and the results will be saved in a CSV format file.

Published Thu, Sep 27 2007 3:37 by Nirmal
Filed under:

Comments

# re: How to check System BIOS Date and System BIOS Version on Remote computer

BSOD NVSTOR64.sys irql not less ot equal to zero, Vista Help, Windows Vista technical support questions. Legacy and new Windows Vista versions and Window ...

Thursday, September 04, 2008 12:56 PM by xffsg

# re: How to check System BIOS Date and System BIOS Version on Remote computer

Started getting IRQL not less or equal BSOD error when playing a game magic vines. ... First Look: Microsoft Windows Vista: This presentation is based on

Thursday, September 04, 2008 12:59 PM by Robin

# re: How to check System BIOS Date and System BIOS Version on Remote computer

For /F “Tokens=*” %%a In (%srvlist%) Do (

Set Comp_name=%%a

Set RegQry=”\\%%a\HKLM\HARDWRE\Description\system”

REG.exe Query %RegQry% > CheckCC.txt

Find /i "SystemBIOSDate" < CheckCC.txt > StringCheck.txt

FOR /f “Tokens=3” %%b in (CheckCC.txt) DO SET BIOS_Date=%%b

Find /i “SystemBIOSVersion” < CheckCC.txt > StringCheck.txt

FOR /f “Tokens=3” %%b in (CheckCC.txt) DO SET BIOS_Ver=%%b

Echo %Comp_name, %BIOS_Date%, %BIOS_Ver% >> Result

>>>>>>>>>>>>>>

ERROR MESSAGE AT STARTUP

Thursday, September 04, 2008 1:03 PM by Robin

# re: How to check System BIOS Date and System BIOS Version on Remote computer

Try testing scripts before you post them

Monday, September 12, 2011 11:14 AM by Yoo

Leave a Comment

(required) 
(required) 
(optional)
(required) 
If you can't read this number refresh your screen
Enter the numbers above: