<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
		>
<channel>
	<title>Comments on: How To Find Your Computer BIOS Version In Windows</title>
	<atom:link href="http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html</link>
	<description>Computer - Internet - Technology Tips And Tutorials</description>
	<lastBuildDate>Wed, 08 Sep 2010 10:55:43 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Milan Pipersky</title>
		<link>http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-28007</link>
		<dc:creator>Milan Pipersky</dc:creator>
		<pubDate>Thu, 05 Aug 2010 23:05:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-28007</guid>
		<description>Thanks ... msinfo32.exe: exactly what I needed. Sharing is great: it helps everyone.</description>
		<content:encoded><![CDATA[<p>Thanks &#8230; msinfo32.exe: exactly what I needed. Sharing is great: it helps everyone.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Umesh Mourya</title>
		<link>http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-27552</link>
		<dc:creator>Umesh Mourya</dc:creator>
		<pubDate>Wed, 28 Jul 2010 13:56:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-27552</guid>
		<description>thank for information please add some new information</description>
		<content:encoded><![CDATA[<p>thank for information please add some new information</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Umesh Mourya</title>
		<link>http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-27553</link>
		<dc:creator>Umesh Mourya</dc:creator>
		<pubDate>Wed, 28 Jul 2010 13:56:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-27553</guid>
		<description>thank for information please add some new information</description>
		<content:encoded><![CDATA[<p>thank for information please add some new information</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david</title>
		<link>http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-26132</link>
		<dc:creator>david</dc:creator>
		<pubDate>Tue, 29 Jun 2010 17:01:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-26132</guid>
		<description>It looks like Systeminfo is only returning the first line in HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\SystemBiosVersion, which can be incomplete. 

For example, on one of our Dell Optilex 745s, that registry value is:

&quot;DELL   - 15
Phoenix ROM BIOS PLUS Version 1.10 2.6.3 
Phoenix ROM BIOS PLUS Version 1.10 2.6.3 
Phoenix ROM BIOS PLUS Version 1.10 2.6.3&quot;

Which is a multi-string value.

Systeminfo only shows &quot;DELL   - 15&quot;, which isn&#039;t very helpful.

A more complete query of BIOS information can be done via WMIC.

At the command prompt, type:

wmic bios get /format:value&#124;find &quot;SMBIOSBIOSVersion&quot;

The pipe command (&#124;, above the Enter key) redirects the output from the wmic bios get /format:value command to find, which then filters it and shows only the line(s) that match SMBIOSBIOSVersion (the find command is case aware, meaning the correct capitalization is necessary to return a match).

That last command returns the following on the Dell machine in the example above:

SMBIOSBIOSVersion=2.6.3 

To see everything in the Win32_BIOS WMI class, just remove everything after value, such as:

wmic bios get /format:value

For more information, see http://msdn.microsoft.com/en-us/library/aa394077(VS.85).aspx and http://www.dmtf.org/standards/smbios/</description>
		<content:encoded><![CDATA[<p>It looks like Systeminfo is only returning the first line in HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\SystemBiosVersion, which can be incomplete. </p>
<p>For example, on one of our Dell Optilex 745s, that registry value is:</p>
<p>&#034;DELL   &#8211; 15<br />
Phoenix ROM BIOS PLUS Version 1.10 2.6.3<br />
Phoenix ROM BIOS PLUS Version 1.10 2.6.3<br />
Phoenix ROM BIOS PLUS Version 1.10 2.6.3&#034;</p>
<p>Which is a multi-string value.</p>
<p>Systeminfo only shows &#034;DELL   &#8211; 15&#034;, which isn&#039;t very helpful.</p>
<p>A more complete query of BIOS information can be done via WMIC.</p>
<p>At the command prompt, type:</p>
<p>wmic bios get /format:value|find &#034;SMBIOSBIOSVersion&#034;</p>
<p>The pipe command (|, above the Enter key) redirects the output from the wmic bios get /format:value command to find, which then filters it and shows only the line(s) that match SMBIOSBIOSVersion (the find command is case aware, meaning the correct capitalization is necessary to return a match).</p>
<p>That last command returns the following on the Dell machine in the example above:</p>
<p>SMBIOSBIOSVersion=2.6.3 </p>
<p>To see everything in the Win32_BIOS WMI class, just remove everything after value, such as:</p>
<p>wmic bios get /format:value</p>
<p>For more information, see <a href="http://msdn.microsoft.com/en-us/library/aa394077(VS.85).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa394077(VS.85).aspx</a> and <a href="http://www.dmtf.org/standards/smbios/" rel="nofollow">http://www.dmtf.org/standards/smbios/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sander</title>
		<link>http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-24443</link>
		<dc:creator>sander</dc:creator>
		<pubDate>Tue, 27 Apr 2010 15:20:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-24443</guid>
		<description>thanks :D</description>
		<content:encoded><![CDATA[<p>thanks <img src='http://www.watchingthenet.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: roy lansom</title>
		<link>http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-22544</link>
		<dc:creator>roy lansom</dc:creator>
		<pubDate>Wed, 24 Feb 2010 14:40:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-22544</guid>
		<description>how do i get my hard drive 2 work got no how 2 BIOS 2 sort it</description>
		<content:encoded><![CDATA[<p>how do i get my hard drive 2 work got no how 2 BIOS 2 sort it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rohith</title>
		<link>http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-22441</link>
		<dc:creator>Rohith</dc:creator>
		<pubDate>Fri, 19 Feb 2010 15:30:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-22441</guid>
		<description>Thank you for the help</description>
		<content:encoded><![CDATA[<p>Thank you for the help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steph</title>
		<link>http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-21920</link>
		<dc:creator>Steph</dc:creator>
		<pubDate>Fri, 08 Jan 2010 18:43:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-21920</guid>
		<description>Worked a treat for me on my Vista laptop. Thankyou very much for this! =)</description>
		<content:encoded><![CDATA[<p>Worked a treat for me on my Vista laptop. Thankyou very much for this! =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ic@dallas</title>
		<link>http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-20810</link>
		<dc:creator>Ic@dallas</dc:creator>
		<pubDate>Fri, 23 Oct 2009 19:26:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-20810</guid>
		<description>Thanks a lot, This help me a lot.

Thank you for share = )</description>
		<content:encoded><![CDATA[<p>Thanks a lot, This help me a lot.</p>
<p>Thank you for share = )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-20686</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 16 Oct 2009 05:31:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-20686</guid>
		<description>This method does not necessarily give the current BIOS version. I just verified that with a laptop that has an unknown setup password on the BIOS and a splash screen that conceals the POST information. The way to get the best BIOS info is to go to the registry (Start &gt; Run &gt; regedit) and look at HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System. I had a bid discrepency between the two methods and the regedit method result is consistent with the mfr&#039;s BIOS offerings.</description>
		<content:encoded><![CDATA[<p>This method does not necessarily give the current BIOS version. I just verified that with a laptop that has an unknown setup password on the BIOS and a splash screen that conceals the POST information. The way to get the best BIOS info is to go to the registry (Start &gt; Run &gt; regedit) and look at HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System. I had a bid discrepency between the two methods and the regedit method result is consistent with the mfr&#039;s BIOS offerings.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MMG</title>
		<link>http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-19202</link>
		<dc:creator>MMG</dc:creator>
		<pubDate>Sun, 19 Jul 2009 05:02:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-find-your-computer-bios-version-in-windows.html#comment-19202</guid>
		<description>Thanks a lot, very useful info, I needed it
God Bless you.</description>
		<content:encoded><![CDATA[<p>Thanks a lot, very useful info, I needed it<br />
God Bless you.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
