Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

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


View products that this article applies to.

Author:

Nirmal Sharma MVP

↑ Back to the top


COMMUNITY SOLUTIONS CONTENT DISCLAIMER

MICROSOFT CORPORATION AND/OR ITS RESPECTIVE SUPPLIERS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY, RELIABILITY, OR ACCURACY OF THE INFORMATION AND RELATED GRAPHICS CONTAINED HEREIN. ALL SUCH INFORMATION AND RELATED GRAPHICS ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT AND/OR ITS RESPECTIVE SUPPLIERS HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH REGARD TO THIS INFORMATION AND RELATED GRAPHICS, INCLUDING ALL IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, WORKMANLIKE EFFORT, TITLE AND NON-INFRINGEMENT. YOU SPECIFICALLY AGREE THAT IN NO EVENT SHALL MICROSOFT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY DIRECT, INDIRECT, PUNITIVE, INCIDENTAL, SPECIAL, CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF USE, DATA OR PROFITS, ARISING OUT OF OR IN ANY WAY CONNECTED WITH THE USE OF OR INABILITY TO USE THE INFORMATION AND RELATED GRAPHICS CONTAINED HEREIN, WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, EVEN IF MICROSOFT OR ANY OF ITS SUPPLIERS HAS BEEN ADVISED OF THE POSSIBILITY OF DAMAGES.

↑ Back to the top


SUMMARY

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

↑ Back to the top


MORE INFORMATION

To check on local 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.
 

↑ Back to the top


Keywords: KB556017, kbhowto, kbpubtypecca, kbpubmvp

↑ Back to the top

Article Info
Article ID : 556017
Revision : 6
Created on : 8/20/2020
Published on : 8/20/2020
Exists online : False
Views : 294