Ajout dela structure MDT dans Infra-LAB
This commit is contained in:
@@ -0,0 +1,83 @@
|
||||
#Define Variables
|
||||
$ts = new-object -comobject microsoft.sms.tsenvironment
|
||||
$ErrorReturnCode = $ts.value("_SMSTSLastActionSucceeded")
|
||||
$UpgradeErrorReturnCode = $ts.value("_SMSTSLastActionRetCode")
|
||||
$My_DeployRoot = $ts.value("DeployRoot")
|
||||
$Step_Lang = $ts.value("Item_Name")
|
||||
$Step_Version = $ts.value("Item_Version")
|
||||
$Computer_Name = $ts.value("MyComputer")
|
||||
$exeName = ""
|
||||
$srcDir = $My_DeployRoot + "\Scripts\BIOSUpgrade\Lenovo\"
|
||||
$localBiosFolder = "X:\bios"
|
||||
$csproduct = Get-WmiObject -Class Win32_ComputerSystemProduct -Namespace root\cimv2
|
||||
$deviceID = $csproduct.Name + '-' + $csproduct.IdentifyingNumber
|
||||
$type = $csproduct.Version.Split()[0]
|
||||
$model = $csproduct.Version.Split(' ', 2)[1]
|
||||
$osArc = (Get-WmiObject -Class Win32_OperatingSystem -Namespace root\cimv2).OSArchitecture
|
||||
$BiosCode = (Get-WmiObject -Class Win32_BIOS -Namespace root\cimv2).SMBIOSBIOSVersion.Substring(0,4)
|
||||
$log = $srcDir + 'logs\' + $deviceID + '.log'
|
||||
|
||||
#Locate and Copy BIOS Folder
|
||||
Write-Host "Locating BIOS folder"
|
||||
$folder = Get-ChildItem -Path $srcDir | ? {$_.Name -eq $BiosCode}
|
||||
if($folder -eq $null)
|
||||
{
|
||||
"Could not find folder for $deviceID. Looking for $BiosCode" | out-file $log
|
||||
Write-Host "Could not locate BIOS folder"
|
||||
Write-Host "Examine log file on the share for more information"
|
||||
return
|
||||
}
|
||||
Write-Host "Located BIOS folder"
|
||||
|
||||
Write-Host "Begin BIOS Files Copy"
|
||||
Copy-Item ($srcDir + $folder + '\*') $localBiosFolder -Recurse
|
||||
Write-Host "Completed BIOS Files Copy"
|
||||
|
||||
#Execute BIOS Flash and Reboot
|
||||
Write-Host "Executing BIOS Flash"
|
||||
If($type -eq "ThinkPad")
|
||||
{
|
||||
$exeName = if($osArc -eq "32-bit") {"WINUPTP.EXE"} else {"WINUPTP64.EXE"}
|
||||
$arg1 = "-s"
|
||||
|
||||
& .\$exeName $arg1 | Out-Null
|
||||
|
||||
If (Test-Path $localBiosFolder\winuptp.log)
|
||||
{
|
||||
Copy-Item $localBiosFolder\winuptp.log $log # Copy the log file for this device to the network share for auditing purposes.
|
||||
}
|
||||
Else
|
||||
{
|
||||
"Could not find log file for $deviceID" | out-file $log
|
||||
Write-Host "Could not locate Winuptp.log file"
|
||||
}
|
||||
Write-Host "Completing BIOS Flash..."
|
||||
Write-Host "..."
|
||||
Write-Host "Rebooting"
|
||||
& "wpeutil" reboot
|
||||
}
|
||||
ElseIf($type -eq "ThinkCentre" -or ($type -eq "ThinkStation" -and $model -like "P3*"))
|
||||
{
|
||||
& ".\Flash.cmd" /ign /sccm /quiet | Out-File $log # Check the readme.txt to ensure that each WFlash2.exe supports the /SCCM (Reboot Suppress) switch.
|
||||
Write-Host "Completing BIOS Flash..."
|
||||
Write-Host "..."
|
||||
Write-Host "Rebooting"
|
||||
& "wpeutil" shutdown # This needs to be a shutdown command, as the ThinkCentre BIOS documentation states
|
||||
# that the computer needs to reach an S5 power state to complete the update of the
|
||||
# BIOS. Computer will actually reboot.
|
||||
}
|
||||
ElseIf($type -eq "ThinkStation")
|
||||
{
|
||||
$exeName = if($osArc -eq "32-bit") {"AFUWIN.EXE"} else {"AFUWINx64.EXE"}
|
||||
$ROMName = Get-ChildItem -Path $localBiosFolder -Include "*.ROM" -Name
|
||||
& .\$exeName $ROMName /P /B /N /R /SP /RTB /FIT | Out-File $log
|
||||
Write-Host "Completing BIOS Flash..."
|
||||
Write-Host "..."
|
||||
Write-Host "Rebooting"
|
||||
& "wpeutil" reboot
|
||||
}
|
||||
Else
|
||||
{
|
||||
"Unable to determine type of machine for $deviceID" | out-file $log
|
||||
Write-Host "Unable to determine type of machine for $deviceID"
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,22 @@
|
||||
BIOSConfig 1.0
|
||||
;
|
||||
; Originally created by BIOS Configuration Utility
|
||||
; Version: 4.0.24.1
|
||||
; Date="2017/10/30" Time="14:22:11" UTC="1"
|
||||
;
|
||||
Legacy Boot Order
|
||||
Network Controller
|
||||
Hard Drive
|
||||
ATAPI CD-ROM Drive
|
||||
USB Floppy/CD
|
||||
PnP Device #1
|
||||
PnP Device #2
|
||||
PnP Device #3
|
||||
PnP Device #4
|
||||
PnP Device #5
|
||||
PnP Device #6
|
||||
PnP Device #7
|
||||
PnP Device #8
|
||||
PnP Device #9
|
||||
PnP Device #10
|
||||
PnP Device #11
|
||||
@@ -0,0 +1,23 @@
|
||||
BIOSConfig 1.0
|
||||
;
|
||||
; Originally created by BIOS Configuration Utility
|
||||
; Version: 4.0.24.1
|
||||
; Date="2017/10/30" Time="10:02:46" UTC="1"
|
||||
;
|
||||
;
|
||||
Legacy Boot Order
|
||||
Hard Drive
|
||||
Network Controller
|
||||
ATAPI CD-ROM Drive
|
||||
USB Floppy/CD
|
||||
PnP Device #1
|
||||
PnP Device #2
|
||||
PnP Device #3
|
||||
PnP Device #4
|
||||
PnP Device #5
|
||||
PnP Device #6
|
||||
PnP Device #7
|
||||
PnP Device #8
|
||||
PnP Device #9
|
||||
PnP Device #10
|
||||
PnP Device #11
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,536 @@
|
||||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:w="urn:schemas-microsoft-com:office:word"
|
||||
xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
|
||||
<meta name=ProgId content=Word.Document>
|
||||
<meta name=Generator content="Microsoft Word 11">
|
||||
<meta name=Originator content="Microsoft Word 11">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
w\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>Hewlett-Packard BIOS Flash Update</title>
|
||||
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
|
||||
name="address"/>
|
||||
<!--[if gte mso 9]><xml>
|
||||
<o:DocumentProperties>
|
||||
<o:Author> </o:Author>
|
||||
<o:LastAuthor>Scott Sanders</o:LastAuthor>
|
||||
<o:Revision>5</o:Revision>
|
||||
<o:TotalTime>9</o:TotalTime>
|
||||
<o:Created>2006-09-05T15:10:00Z</o:Created>
|
||||
<o:LastSaved>2010-05-10T15:31:00Z</o:LastSaved>
|
||||
<o:Pages>2</o:Pages>
|
||||
<o:Words>1887</o:Words>
|
||||
<o:Characters>10757</o:Characters>
|
||||
<o:Company>Hewlett-Packard</o:Company>
|
||||
<o:Lines>89</o:Lines>
|
||||
<o:Paragraphs>25</o:Paragraphs>
|
||||
<o:CharactersWithSpaces>12619</o:CharactersWithSpaces>
|
||||
<o:Version>12.00</o:Version>
|
||||
</o:DocumentProperties>
|
||||
</xml><![endif]-->
|
||||
<!--[if gte mso 9]><xml>
|
||||
<w:WordDocument>
|
||||
<w:Zoom>145</w:Zoom>
|
||||
<w:ValidateAgainstSchemas/>
|
||||
<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
|
||||
<w:IgnoreMixedContent>false</w:IgnoreMixedContent>
|
||||
<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
|
||||
<w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
|
||||
</w:WordDocument>
|
||||
</xml><![endif]--><!--[if gte mso 9]><xml>
|
||||
<w:LatentStyles DefLockedState="false" LatentStyleCount="267">
|
||||
</w:LatentStyles>
|
||||
</xml><![endif]--><!--[if !mso]><object
|
||||
classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
|
||||
<style>
|
||||
st1\:*{behavior:url(#ieooui) }
|
||||
</style>
|
||||
<![endif]-->
|
||||
<style>
|
||||
<!--
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{mso-style-parent:"";
|
||||
margin:0in;
|
||||
margin-bottom:.0001pt;
|
||||
mso-pagination:widow-orphan;
|
||||
font-size:12.0pt;
|
||||
font-family:"HP Simplified","Arial";
|
||||
mso-fareast-font-family:"HP Simplified";
|
||||
color:#000;}
|
||||
h1
|
||||
{mso-margin-top-alt:auto;
|
||||
margin-right:0in;
|
||||
mso-margin-bottom-alt:auto;
|
||||
margin-left:0in;
|
||||
mso-pagination:widow-orphan;
|
||||
mso-outline-level:1;
|
||||
font-size:30.0pt;
|
||||
font-family:"HP Simplified","Arial";
|
||||
mso-fareast-font-family:"HP Simplified";
|
||||
mso-fareast-theme-font:minor-fareast;
|
||||
color:#007dba;
|
||||
font-weight:bold;}
|
||||
h2
|
||||
{mso-margin-top-alt:auto;
|
||||
margin-right:0in;
|
||||
mso-margin-bottom-alt:auto;
|
||||
margin-left:0in;
|
||||
mso-pagination:widow-orphan;
|
||||
mso-outline-level:2;
|
||||
font-size:18.0pt;
|
||||
font-family:"HP Simplified","Arial";
|
||||
mso-fareast-font-family:"HP Simplified";
|
||||
mso-fareast-theme-font:minor-fareast;
|
||||
color:#000;
|
||||
font-weight:bold;}
|
||||
h3
|
||||
{mso-margin-top-alt:auto;
|
||||
margin-right:0in;
|
||||
mso-margin-bottom-alt:auto;
|
||||
margin-left:0in;
|
||||
mso-pagination:widow-orphan;
|
||||
mso-outline-level:3;
|
||||
font-size:13.5pt;
|
||||
font-family:"HP Simplified","Arial";
|
||||
mso-fareast-font-family:"HP Simplified";
|
||||
mso-fareast-theme-font:minor-fareast;
|
||||
color:#000;
|
||||
font-weight:bold;}
|
||||
a:link, span.MsoHyperlink
|
||||
{color:#007dba;}
|
||||
a:visited, span.MsoHyperlinkFollowed
|
||||
{color:#007dba;}
|
||||
p
|
||||
{mso-margin-top-alt:auto;
|
||||
margin-right:0in;
|
||||
mso-margin-bottom-alt:auto;
|
||||
margin-left:0in;
|
||||
mso-pagination:widow-orphan;
|
||||
font-size:12.0pt;
|
||||
font-family:"HP Simplified","Arial";
|
||||
mso-fareast-font-family:"HP Simplified";
|
||||
color:#000;}
|
||||
@page Section1
|
||||
{size:8.5in 11.0in;
|
||||
margin:1.0in 1.25in 1.0in 1.25in;
|
||||
mso-header-margin:.5in;
|
||||
mso-footer-margin:.5in;
|
||||
mso-paper-source:0;}
|
||||
div.Section1
|
||||
{page:Section1;}
|
||||
/* List Definitions */
|
||||
@list l0
|
||||
{mso-list-id:576793600;
|
||||
mso-list-template-ids:-2129070332;}
|
||||
@list l0:level1
|
||||
{mso-level-number-format:bullet;
|
||||
mso-level-text:\F0B7;
|
||||
mso-level-tab-stop:.5in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;
|
||||
mso-ansi-font-size:10.0pt;
|
||||
font-family:Symbol;}
|
||||
@list l0:level2
|
||||
{mso-level-tab-stop:1.0in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;}
|
||||
@list l0:level3
|
||||
{mso-level-tab-stop:1.5in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;}
|
||||
@list l0:level4
|
||||
{mso-level-tab-stop:2.0in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;}
|
||||
@list l0:level5
|
||||
{mso-level-tab-stop:2.5in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;}
|
||||
@list l0:level6
|
||||
{mso-level-tab-stop:3.0in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;}
|
||||
@list l0:level7
|
||||
{mso-level-tab-stop:3.5in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;}
|
||||
@list l0:level8
|
||||
{mso-level-tab-stop:4.0in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;}
|
||||
@list l0:level9
|
||||
{mso-level-tab-stop:4.5in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;}
|
||||
@list l1
|
||||
{mso-list-id:1843009106;
|
||||
mso-list-template-ids:1886153374;}
|
||||
@list l1:level1
|
||||
{mso-level-number-format:bullet;
|
||||
mso-level-text:\F0B7;
|
||||
mso-level-tab-stop:.5in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;
|
||||
mso-ansi-font-size:10.0pt;
|
||||
font-family:Symbol;}
|
||||
ol
|
||||
{margin-bottom:0in;}
|
||||
ul
|
||||
{margin-bottom:0in;}
|
||||
-->
|
||||
</style>
|
||||
<!--[if gte mso 10]>
|
||||
<style>
|
||||
/* Style Definitions */
|
||||
table.MsoNormalTable
|
||||
{mso-style-name:"Table Normal";
|
||||
mso-tstyle-rowband-size:0;
|
||||
mso-tstyle-colband-size:0;
|
||||
mso-style-noshow:yes;
|
||||
mso-style-parent:"";
|
||||
mso-padding-alt:0in 5.4pt 0in 5.4pt;
|
||||
mso-para-margin:0in;
|
||||
mso-para-margin-bottom:.0001pt;
|
||||
mso-pagination:widow-orphan;
|
||||
font-size:10.0pt;
|
||||
font-family:"HP Simplified","Arial";}
|
||||
</style>
|
||||
<![endif]--><!--[if gte mso 9]><xml>
|
||||
<o:shapedefaults v:ext="edit" spidmax="4098"/>
|
||||
</xml><![endif]--><!--[if gte mso 9]><xml>
|
||||
<o:shapelayout v:ext="edit">
|
||||
<o:idmap v:ext="edit" data="1"/>
|
||||
</o:shapelayout></xml><![endif]-->
|
||||
</head>
|
||||
|
||||
<body bgcolor=white lang=EN-US link=blue vlink=blue style='tab-interval:.5in'>
|
||||
|
||||
<div class=Section1>
|
||||
|
||||
<table class=MsoNormalTable border=0 cellpadding=0 width="100%"
|
||||
style='width:100.0%;mso-cellspacing:1.5pt;mso-yfti-tbllook:1184;mso-padding-alt:
|
||||
0in 5.4pt 0in 5.4pt'>
|
||||
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-yfti-lastrow:yes'>
|
||||
<td style='padding:.75pt .75pt .75pt .75pt'>
|
||||
<p class=MsoNormal align=center style='text-align:center'><span
|
||||
style='mso-no-proof:yes'><img width=66 height=55 id="_x0000_i1040"
|
||||
src=logo.bmp></span></p>
|
||||
</td>
|
||||
<td style='padding:.75pt .75pt .75pt .75pt'>
|
||||
<h1 align=center style='text-align:center'><span style='mso-fareast-font-family:
|
||||
"HP Simplified"'>BIOS Flash Update<o:p></o:p></span></h1>
|
||||
</td>
|
||||
<td style='padding:.75pt .75pt .75pt .75pt'>
|
||||
<p class=MsoNormal align=center style='text-align:center'><span
|
||||
style='mso-no-proof:yes'><img width=66 height=55 id="_x0000_i1039"
|
||||
src=logo.bmp></span></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<p>This BIOS Flash Update SoftPaq contains utilities and data files that can be used
|
||||
to restore or upgrade the system BIOS on Hewlett-Packard business desktops.
|
||||
Several methods for changing the BIOS firmware stored on your computer are provided
|
||||
as described below.</p>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<span style='font-size:12.0pt;font-family:"HP Simplified","Arial";mso-fareast-font-family:
|
||||
"HP Simplified";color:#007dba;mso-ansi-language:EN-US;mso-fareast-language:
|
||||
EN-US;mso-bidi-language:AR-SA'>
|
||||
|
||||
<ul type=disc>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="#HPQWIN"><u>BIOS updates
|
||||
in Microsoft Windows OS.</u></a> </li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="#F10FLSH"><u>BIOS updates
|
||||
from the (ESC) Startup Menu or (F10) BIOS Setup Utility.</u></a> </li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="#BitL"><u>BIOS updates on a system using Windows Bitlocker
|
||||
or BIOS measurements.</u></a> </li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="#UFMDOS"><u>BIOS updates
|
||||
from a DOS bootable USB storage device.</u></a> </li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="#SSM"><u>Updating the
|
||||
BIOS with the System Software Management (SSM) application.</u></a> </li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="#HPCMS"><u>Updating the
|
||||
BIOS with HP Client Manager Software (HPCMS).</u></a> </li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="#REMOTE"><u>BIOS updates
|
||||
over a Local Area Network (LAN).</u></a> </li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="#BB"><u>Updating the
|
||||
BIOS after a failed flash.</u></a> </li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="#DESCRIP"><u>Folder
|
||||
and flash methods general descriptions.</u></a> </li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="history.txt"
|
||||
target="_blank"><u>View revision history</u></a></li>
|
||||
</ul>
|
||||
<p></p>
|
||||
</span>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 align=center style='text-align:center'><a name=DESCRIP>General Descriptions</a>
|
||||
</h2>
|
||||
|
||||
<p>Utilities and appropriate BIOS images are contained in each of the
|
||||
directories as follows:</p>
|
||||
|
||||
<p><a href="#UFMDOS"><u>DOS Flash</u></a> - A DOS utility that can be used
|
||||
locally or with a Preboot eXecution Environment (PXE) management application to
|
||||
update or restore the System BIOS.</p>
|
||||
|
||||
<p><a href="#HPQWIN"><u>HPQFlash</u></a> - A utility to locally update or
|
||||
restore the System BIOS on individual PCs in the Microsoft Windows
|
||||
operating system. No backup will be made of the current System BIOS.</p>
|
||||
|
||||
<p>This Softpaq can also be used with the following methods of updating the
|
||||
System BIOS:</p>
|
||||
|
||||
<p><a href="#SSM"><u>System Software Manager (SSM)</u></a> - Use this SoftPaq
|
||||
with System Software Manager (SSM) to update the System BIOS on target PCs over
|
||||
the local area network. Place this SoftPaq in your SSM Filestore folder and then
|
||||
update the database. SSM is a free utility provided by Hewlett-Packard Company. For
|
||||
information on SSM, see <a href="http://www.hp.com/go/ssm" target="_blank"><u>http://www.hp.com/go/ssm</u></a>.</p>
|
||||
|
||||
<p><a href="#HPCMS"><u>HP Client Manager Software (HPCMS)</u></a> - Use this Softpaq
|
||||
with HP Client Manager Software (HPCMS) and Altiris Notification Server to
|
||||
remotely target, distribute, and update the System BIOS on networked PCs. Place
|
||||
this SoftPaq in your HPCMS Filestore folder and then update the database. HPCMS is
|
||||
a free management application provided by Altiris and Hewlett-Packard Company.
|
||||
For information on HPCMS, see <a href="http://www.hp.com/go/EasyDeploy"
|
||||
target="_blank"><u>http://www.hp.com/go/EasyDeploy</u></a>.</p>
|
||||
|
||||
<p>NOTE: The Business Desktops BIOS Utilities SoftPaq is also available on the web.
|
||||
It contains additional utilities to support Hewlett-Packard Company products.
|
||||
The BIOS Utilities SoftPaq will be shown when searching for software support of
|
||||
products in the category BIOS and Firmware.</p>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 align=center style='text-align:center'><a name=HPQWIN>Windows BIOS Flashing</a></h2>
|
||||
|
||||
<p>HPQFlash.exe is a utility which is designed to flash the System BIOS within a
|
||||
Microsoft Windows environment. To display the available options for this utility, enter
|
||||
[Path]\HPQFlash -? at a command prompt or local search box. If the system has a BIOS Setup
|
||||
password enabled, then HPQFlash will prompt for the password to be entered before completing
|
||||
the flash process. For more information, view <a href="HPQFlash/Readme.txt" target="_blank"><u>Readme.txt</u></a> or <a href="HPQFlash/HPQFlash.txt" target="_blank"><u>HPQFlash.txt</u></a>,
|
||||
both located in the HPQFlash folder. If you wish to update your BIOS using
|
||||
HPQFlash, click the link below. If prompted with a File Download dialog box,
|
||||
please select "Open" or "Run from current location".</p>
|
||||
|
||||
<h3 align=center style='text-align:center'><a href="HPQFlash/HPQFlash.exe"><u>Launch
|
||||
HPQFlash</u></a></h3>
|
||||
|
||||
<h3 align=left style='text-align:left'>Using a USB Device to run HPQFlash</a></h3>
|
||||
|
||||
<p>HPQFlash.exe can also be run from a USB storage device, including
|
||||
flash memory devices and external hard drives. To do this,
|
||||
insert the device and take note of the assigned drive letter. Copy
|
||||
HPQFlash.exe and ROM.CAB to the root of the drive indicated by the drive letter,
|
||||
or a folder on that drive. HPQFlash can then be executed from its location on the
|
||||
USB device. If the system has a BIOS Setup password enabled, then HPQFlash will
|
||||
prompt for the password to be entered before completing the flash process. For
|
||||
more information, view <a href="HPQFlash/Readme.txt" target="_blank"><u>Readme.txt</u></a>
|
||||
or <a href="HPQFlash/HPQFlash.txt" target="_blank"><u>HPQFlash.txt</u></a>, both
|
||||
located in the HPQFlash folder.</p>
|
||||
|
||||
<h3 align=center style='text-align:center'><a href="HPQFlash" target="_blank"><u>View
|
||||
Contents of HPQFlash Folder </u></a></h3>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 align=center style='text-align:center'><a name=F10FLSH>Startup Menu / F10
|
||||
Setup BIOS Flashing</a></h2>
|
||||
|
||||
<p>The HP Business Desktop systems provide a BIOS upgrade option through both
|
||||
the Startup Menu and the F10 Setup utility using the "Flash System ROM"
|
||||
feature. Reboot the PC and press the Escape key to display the Startup Menu.
|
||||
Use the arrow keys to select Utilities, and then select the Flash System ROM
|
||||
option. Alternatively, reboot the PC and press F10 to access the BIOS Setup
|
||||
utility. In the File menu, select Flash System ROM. Either method
|
||||
requires that removable media be present (USB storage or data CD) that contains
|
||||
the BIOS binary image file in the root directory. The binary
|
||||
image file can be found in the DOS Flash folder and is named
|
||||
<i>xxx_MMmm.bin</i> where "xxx" is the BIOS family, "MM" is
|
||||
the major version number, and "mm" is the minor version number.
|
||||
To create a CD for updating the BIOS, use a blank CD-R or CD-RW disk on a system
|
||||
with a CD-RW or DVD+RW drive, and write the binary to the disk using any CD-burning
|
||||
software (Windows 7 and Vista support burning data CDs without additional software).
|
||||
If a BIOS Setup password has been set, the password will be required before being
|
||||
able to access the "Flash System ROM" menu. The user is notified when the
|
||||
process is completed. The new BIOS code will not take effect until the PC is
|
||||
restarted.</p>
|
||||
|
||||
<p align=center style='text-align:center'><b><a href="DOS%20Flash"
|
||||
target="_blank"><u><span style='font-size:13.5pt'>View Contents of DOS Flash
|
||||
Folder</span></u></a></b></p>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 align=center style='text-align:center'><a name=UFMDOS>USB Device BIOS
|
||||
Flashing in DOS</a></h2>
|
||||
|
||||
<p>DOS Flash (DOSFlash.exe, FlshUefi.cpu) is the DOS-compatible System BIOS flash
|
||||
utility that can be used from a DOS bootable storage device (where "DOS"
|
||||
refers to any of a number of compatible operating systems such as FreeDOS, MS-DOS
|
||||
or DR-DOS). FlshUefi.cpu is the required driver for DOSFlash.exe. To flash the System
|
||||
BIOS from a bootable USB storage device, you will need to copy the contents of the
|
||||
DOS Flash folder to the USB device, boot the PC from the USB device, and execute
|
||||
the DOSFlash application. To see a more complete description of the DOS flash
|
||||
utilities, view <a href="DOS%20Flash/DOSFlash.txt" target="_blank"><u>DOSFlash.txt</u></a>
|
||||
located in the DOS Flash folder. This folder also contains the required binary image
|
||||
of the BIOS. The binary image file is named <i>xxx_MMmm.bin</i> where "xxx"
|
||||
is the BIOS family, "MM" is the major version number, and "mm"
|
||||
is the minor version number. This file can be copied to the root directory of
|
||||
any USB removable medium for use with the F10 setup "Flash System ROM"
|
||||
option or <a href="#BB"><u>BootBlock Emergency Recovery Mode</u></a>.</p>
|
||||
|
||||
<h3 align=center style='text-align:center'><a href="DOS%20Flash" target="_blank"><u>View
|
||||
Contents of DOS Flash Folder</u></a></h3>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 align=center style='text-align:center'><a name=SSM>System Software
|
||||
Management (SSM) BIOS Flashing</a></h2>
|
||||
|
||||
<p>Use this SoftPaq with System Software Manager (SSM) to update the System
|
||||
BIOS on target PCs on a network. Place this SoftPaq in your SSM Filestore folder
|
||||
and then update the database. SSM is a free utility provided by Hewlett-Packard
|
||||
Company. For information on SSM, see <a href="http://www.hp.com/go/ssm"
|
||||
target="_blank"><u>http://www.hp.com/go/ssm</u></a></p>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 align=center style='text-align:center'><a name=HPCMS>HP Client Manager
|
||||
Software (HPCMS) BIOS Flashing</a></h2>
|
||||
|
||||
<p>Use this Softpaq with HP Client Manager Software (HPCMS) and Altiris
|
||||
Notification Server to remotely target, distribute, and update the System BIOS
|
||||
on network PCs. Place this SoftPaq in your HPCMS Filestore folder and then update
|
||||
the database. HPCMS is a free managment application provided by Altiris and
|
||||
Hewlett-Packard Company. For more information, see <a
|
||||
href="http://www.hp.com/go/EasyDeploy" target="_blank"><u>http://www.hp.com/go/EasyDeploy</u></a></p>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 align=center style='text-align:center'><a name=Remote>Network BIOS Flashing</a></h2>
|
||||
|
||||
<p>The DOS Flash utility has been designed to support System BIOS flashing via a remote
|
||||
network boot using PXE. DOS Flash uses a small memory footprint that is compatible
|
||||
with the limited DOS memory available and the DOS extended environment that may exist while
|
||||
running Altiris eXpress. To see a more complete description of the network BIOS flashing
|
||||
utilities, view the <a href="DOS%20Flash/DOSFlash.txt"
|
||||
target="_blank"><u>DOSFlash.txt</u></a> file located in the DOS Flash folder.</p>
|
||||
|
||||
<h3 align=center style='text-align:center'><a href="DOS%20Flash" target="_blank"><u>View
|
||||
Contents of DOS Flash Folder</u></a></h3>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 align=center style='text-align:center'><a name=BitL>BitLocker Drive Encryption / BIOS Measurements</a></h2>
|
||||
|
||||
<p>If you have Windows BitLocker Drive Encryption (BDE) enabled on your system, it is recommended that BDE be suspended temporarily before the BIOS is updated.
|
||||
You should also obtain your BDE recovery password or recovery PIN before suspending BDE. After the BIOS is flashed, BDE can be resumed.</p>
|
||||
|
||||
<p>To make a change to BDE, select Start > Control Panel > BitLocker Drive Encryption, click 'Suspend Protection' or 'Resume Protection' and then click 'Yes'.</p>
|
||||
|
||||
<p>As a general rule, updating the BIOS will modify measurement values stored in the Platform Configuration Registers (PCRs) of the system's security module.
|
||||
Technologies that use these PCR values to ascertain platform health (BDE is one such example) should be temporarily disabled prior to flashing the BIOS. Once the BIOS is updated, the functions should be re-enabled and the system should be restarted so that new measurements can be taken.</p>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 align=center style='text-align:center'><a name=BB>BootBlock Emergency
|
||||
Recovery Mode</a></h2>
|
||||
|
||||
<p>In the event of a failed BIOS update (for example if power is lost while updating),
|
||||
the System BIOS may become corrupted. BootBlock Emergency Recovery Mode
|
||||
detects this condition and will automatically search the root directory of the
|
||||
hard drive and any USB media sources (hard drive, flash drive, etc) for a compatible binary image.
|
||||
The binary (.bin) file in the <a href="DOS%20Flash" target="_blank"><u>DOS Flash folder</u></a>
|
||||
should be copied to the root of the desired storage device, and the system powered on. Once the binary image is located, the BIOS recovery process will be attempted.
|
||||
The automatic recovery will continue until the BIOS is successfully updated or restored.
|
||||
If the system has a BIOS Setup password, you may be required to use the Startup Menu / Utilities submenu to flash the BIOS manually after providing the password.
|
||||
Sometimes there are restrictions on which BIOS versions are allowed to be installed on a platform. If the BIOS that was on
|
||||
the system had restrictions, then only allowable BIOS versions may be used for recovery.</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<p align=center style='text-align:center'>Copyright (c) 2011-2015 Hewlett-Packard Development Company, L.P. All Rights Reserved.<br>
|
||||
Product names mentioned herein may be trademarks and/or registered trademarks
|
||||
of their respective companies.</p>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Binary file not shown.
@@ -0,0 +1,167 @@
|
||||
=========================================================
|
||||
|
||||
DOSFLASH.EXE version 1.15.01
|
||||
|
||||
=========================================================
|
||||
|
||||
|
||||
The DOS Flash utility is designed to update the computer system firmware
|
||||
(BIOS) from a DOS, FreeDOS, or similar environment. Windows command line
|
||||
is not supported.
|
||||
|
||||
The DOS Flash utility consists of the executable file (DOSFlash.exe) and a
|
||||
driver file (FlshUefi.cpu) specific to updating the system BIOS. They must be
|
||||
present in the same directory. DOS Flash also supports updating the initial
|
||||
graphics display logo to a custom image.
|
||||
|
||||
|
||||
|
||||
BIOS VERSION UPDATE:
|
||||
____________________
|
||||
|
||||
DOS Flash requires a BIOS binary image file included in a BIOS SoftPaq
|
||||
release in order to update the System BIOS. See the DOS Flash folder for the
|
||||
correct files. Not all HP Desktop systems are compatible with this version of
|
||||
the DOS Flash utility. If the utility is run on a system that does not
|
||||
support it, an error message will say so. The BIOS SoftPaq release package
|
||||
for that system will include the correct DOS Flash tool (typically,
|
||||
Flashbin.exe and flsh.cpu).
|
||||
|
||||
DOS Flash can update a system BIOS without requiring the administrator to
|
||||
enter a Setup password if the unit has not already been assigned a Setup
|
||||
password. However if a Setup password is set on the target PC, then DOS Flash
|
||||
will require password verification before allowing a BIOS update, or the
|
||||
process will report an error. The Setup password must be provided in the
|
||||
command line when the DOS Flash utility is executed, using the /p option.
|
||||
See below for syntax description.
|
||||
|
||||
|
||||
|
||||
CUSTOM LOGO IMAGE UPDATE:
|
||||
_________________________
|
||||
|
||||
DOS Flash allows replacing the standard HP logo image with a custom image
|
||||
provided by the user. Valid image files are JPEG or uncompressed BMP (bitmap)
|
||||
images up to 1024 x 768 resolution. Also, the maximum file size differs from
|
||||
system to system, but will be between 22KB and 32KB. The command line switch
|
||||
"/I " followed by the image filename will write the custom logo to the BIOS.
|
||||
When using DOS Flash to change the logo, the System BIOS is not updated at the
|
||||
same time. The custom image can be deleted (restoring the standard HP logo)
|
||||
with the "/I delete" option.
|
||||
|
||||
|
||||
|
||||
COMMAND LINE SYNTAX:
|
||||
____________________
|
||||
|
||||
|
||||
UPDATE SYSTEM BIOS:
|
||||
|
||||
|
||||
dosflash [/p <password>] [/f flshuefi.cpu <BIOS family>]
|
||||
|
||||
|
||||
DOS Flash will search the current directory for the System BIOS binary. If
|
||||
more than one are present, the latest BIOS image file (highest version number)
|
||||
compatible with the target PC will be used.
|
||||
|
||||
The /f option is used when needing to suppress any user prompts, for instance
|
||||
when automating a mass deployment using Altiris. BIOS family is listed in BIOS
|
||||
Setup / System Information / System BIOS before the version number (e.g. K01),
|
||||
and is also the first part of the binary filename.
|
||||
|
||||
|
||||
UPDATE STARTUP IMAGE:
|
||||
|
||||
|
||||
dosflash /I {<imagefile> | delete}
|
||||
|
||||
|
||||
If the imagefile file size exceeds the maximum for the target PC, a File Too
|
||||
Large error is reported, along with the maximum file size supported for the
|
||||
system.
|
||||
|
||||
|
||||
|
||||
USE CASES:
|
||||
__________
|
||||
|
||||
|
||||
dosflash
|
||||
This will attempt to update the System BIOS. Assumes no BIOS Setup password
|
||||
is set.
|
||||
|
||||
|
||||
dosflash /p Admin123
|
||||
This will attempt to update the System BIOS using “Admin123” as the BIOS
|
||||
Setup password for authentication.
|
||||
|
||||
|
||||
dosflash /p Admin123 /I hplogo.jpg
|
||||
This will update the system startup logo using “hplogo.jpg” as the image,
|
||||
and uses “Admin123” to authenticate the BIOS Setup password.
|
||||
|
||||
|
||||
dosflash /Image custom.jpg
|
||||
This will update the system startup logo using “custom.jpg” as the image.
|
||||
This syntax implies that there is no BIOS Setup password set.
|
||||
|
||||
|
||||
dosflash /I delete
|
||||
This will delete a custom startup logo from the system. The default HP logo
|
||||
will be used after reboot. This syntax implies that there is no BIOS
|
||||
Setup password set.
|
||||
|
||||
|
||||
dosflash /I DELETE /P Admin123
|
||||
This will delete a custom startup logo from the system. The default HP logo
|
||||
will be used after reboot. Uses “Admin123” as the BIOS Setup password
|
||||
for authentication.
|
||||
|
||||
|
||||
dosflash /f flshuefi.cpu K01
|
||||
This will update the System BIOS with the binary in the current directory
|
||||
without pausing for user input.
|
||||
|
||||
|
||||
dosflash /I custom.jpg /p Admin123 /f flshuefi.cpu K01
|
||||
This will update the system startup logo using "custom.jpg" as the image,
|
||||
authenticating with a BIOS Setup password of "Admin123" and suppressing
|
||||
prompts.
|
||||
|
||||
|
||||
|
||||
ERROR LEVELS:
|
||||
_____________
|
||||
|
||||
0 - No errors
|
||||
|
||||
4 - Could not open input file
|
||||
|
||||
16 - Unsupported system type
|
||||
|
||||
44 - Could not open flshuefi.cpu
|
||||
|
||||
45 - All other errors: wrong password, file size too big, image dimensions
|
||||
too large
|
||||
|
||||
|
||||
CHANGE HISTORY:
|
||||
_______________
|
||||
|
||||
Version 1.15.01
|
||||
- Fixed slow DOSFLASH response with certain USB Drives
|
||||
|
||||
Version 1.15.00
|
||||
- Added Support for new ROM Families (i.e. K01)
|
||||
|
||||
Version 1.14.00
|
||||
- Initial version
|
||||
|
||||
|
||||
_____________________________________________________________________________
|
||||
|
||||
Copyright (c) 2011-2015 Hewlett-Packard Development Company, L.P.
|
||||
|
||||
Product names mentioned herein may be trademarks and/or registered trademarks
|
||||
of their respective companies.
|
||||
Binary file not shown.
@@ -0,0 +1,3 @@
|
||||
Filename: K01_0299.bin
|
||||
|
||||
MD5 : b37d2c9e39be53625b12329da6183a08
|
||||
@@ -0,0 +1,30 @@
|
||||
|
||||
DOS Flash Utility
|
||||
=================
|
||||
|
||||
DOSFlash.exe - Use locally or with a Preboot eXecution Environment (PXE)
|
||||
management application (e.g. Altiris eXpress) to update or
|
||||
restore the System BIOS.
|
||||
|
||||
|
||||
NOTE: A BIOS update may be done using these utilities from a USB hard drive
|
||||
or a USB flash media device. Copy all the files in this folder to a DOS
|
||||
bootable medium. Make sure that the device you want to boot from is connected
|
||||
to the computer to be upgraded and power cycle the computer. When the system
|
||||
boots to the USB device, the BIOS update may then be performed.
|
||||
See DOSFlash.txt for syntax.
|
||||
|
||||
|
||||
Files included in this folder:
|
||||
|
||||
BIOS image binary file (ex: K01_0299.bin)
|
||||
DOSFlash.exe
|
||||
DOSFlash.txt
|
||||
FlshUefi.cpu
|
||||
README.TXT (this file)
|
||||
|
||||
Copyright (c) 2015 Hewlett-Packard Development Company, L.P.
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
Filename: K01_0299.bin
|
||||
|
||||
SHA-256 : 499e8cd414470b42b8f0b3676324c6a7
|
||||
1f7bf0dfba4d10b83a5b54eed7037579
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,56 @@
|
||||
11/06/2017 11:06:22.814
|
||||
11/06/2017 11:06:22.895 --- START NEW HPQFLASH SESSION, HPQFLASH version 4.40.1.1 ---
|
||||
11/06/2017 11:06:22.915 Command line =
|
||||
11/06/2017 11:06:25.994
|
||||
11/06/2017 11:06:26.025 --- START NEW HPQFLASH SESSION, HPQFLASH version 4.40.1.1 ---
|
||||
11/06/2017 11:06:26.048 Command line =
|
||||
11/06/2017 11:06:26.146 System name = HP COMPAQ PRO 6300 SFF
|
||||
11/06/2017 11:06:26.166 System ID = 0x339A
|
||||
11/06/2017 11:06:26.182 System Serial Number = CZC34052S3
|
||||
11/06/2017 11:06:26.198 AT-p supported = 0 (0: not supported, 1 supported)
|
||||
11/06/2017 11:06:26.212 Version of BIOS in system:
|
||||
11/06/2017 11:06:26.228 Family = K01
|
||||
11/06/2017 11:06:26.251 Major version = 0x2, Minor Version = 0x5A
|
||||
11/06/2017 11:06:26.268 Release Date = 07/16/2013
|
||||
11/06/2017 11:06:28.049 The binary to create HP_TOOLS partition is not present: '\\172.16.1.252\DeploymentShare$\Scripts\BIOSUpgrade\HP\HP 6300 SFF Bios 2.99\HPQFlash\Installer.exe'
|
||||
11/06/2017 11:06:29.604 System name = HP COMPAQ PRO 6300 SFF
|
||||
11/06/2017 11:06:29.623 System ID = 0x339A
|
||||
11/06/2017 11:06:29.654 System Serial Number = CZC34052SH
|
||||
11/06/2017 11:06:29.673 AT-p supported = 0 (0: not supported, 1 supported)
|
||||
11/06/2017 11:06:29.694 Version of BIOS in system:
|
||||
11/06/2017 11:06:29.728 Family = K01
|
||||
11/06/2017 11:06:29.771 Major version = 0x2, Minor Version = 0x5A
|
||||
11/06/2017 11:06:29.804 Release Date = 07/16/2013
|
||||
11/06/2017 11:06:33.482 The binary to create HP_TOOLS partition is not present: '\\172.16.1.252\DeploymentShare$\Scripts\BIOSUpgrade\HP\HP 6300 SFF Bios 2.99\HPQFlash\Installer.exe'
|
||||
11/06/2017 11:06:53.531 Version of BIOS in ROM update (in CAB file):
|
||||
11/06/2017 11:06:53.548 Family = K01
|
||||
11/06/2017 11:06:53.570 Version = 2.99
|
||||
11/06/2017 11:06:53.590 Release Date = 09/15/2015
|
||||
11/06/2017 11:07:07.155 Version of BIOS in ROM update (in CAB file):
|
||||
11/06/2017 11:07:07.175 Family = K01
|
||||
11/06/2017 11:07:07.196 Version = 2.99
|
||||
11/06/2017 11:07:07.219 Release Date = 09/15/2015
|
||||
11/06/2017 11:07:08.505 Don't need to Backup BIOS files. Either system is not a laptop or BIOS does not support backup from USB device.
|
||||
11/06/2017 11:07:09.526 ***** Start FLASHING *****
|
||||
11/06/2017 11:07:09.581 Start Saving Original BIOS Contents
|
||||
11/06/2017 11:07:09.269 Don't need to Backup BIOS files. Either system is not a laptop or BIOS does not support backup from USB device.
|
||||
11/06/2017 11:07:10.292 ***** Start FLASHING *****
|
||||
11/06/2017 11:07:10.348 Start Saving Original BIOS Contents
|
||||
11/06/2017 11:11:57.850 End Saving Original BIOS Contents
|
||||
11/06/2017 11:11:57.862 Start flashing (Write) Attempt #1
|
||||
11/06/2017 11:11:57.885 Start Flash Rom Image (Write)
|
||||
11/06/2017 11:11:57.409 End Saving Original BIOS Contents
|
||||
11/06/2017 11:11:57.661 Start flashing (Write) Attempt #1
|
||||
11/06/2017 11:11:57.698 Start Flash Rom Image (Write)
|
||||
11/06/2017 11:13:16.524 End Flash Rom Image (Write), bStatus = 1
|
||||
11/06/2017 11:13:16.544 End flashing (Write) Attempt #1
|
||||
11/06/2017 11:13:16.575 ***** END FLASHING PROCESS *****
|
||||
11/06/2017 11:13:18.523 End Flash Rom Image (Write), bStatus = 1
|
||||
11/06/2017 11:13:20.050 End flashing (Write) Attempt #1
|
||||
11/06/2017 11:13:20.083 ***** END FLASHING PROCESS *****
|
||||
11/06/2017 11:14:06.128 Flash has completed. System will be restarted automatically
|
||||
11/06/2017 11:14:06.194 Exit hpqFlash: Return Code = 0x0
|
||||
11/06/2017 11:14:06.214 --- END HPQFLASH SESSION ---
|
||||
11/06/2017 11:14:05.083 Flash has completed. System will be restarted automatically
|
||||
11/06/2017 11:14:05.151 Exit hpqFlash: Return Code = 0x0
|
||||
11/06/2017 11:14:05.186 --- END HPQFLASH SESSION ---
|
||||
@@ -0,0 +1,58 @@
|
||||
HPQFlash.TXT
|
||||
|
||||
HPQFlash.exe is a utility which is designed to update the system BIOS through
|
||||
a Windows environment.
|
||||
|
||||
NOTES:
|
||||
1. [Path]\HPQFlash -? will display the available options for this utility.
|
||||
|
||||
2. If the system has a F10-Setup password enabled, then HPQFlash will prompt
|
||||
for the password to be entered before completing the flash process.
|
||||
|
||||
USAGE:
|
||||
|
||||
1. Close all other applications before launching HPQFlash.
|
||||
|
||||
2. On the Windows Task Bar select Start, then Run, and enter
|
||||
the following on the command line:
|
||||
[Path]\HPQFlash
|
||||
|
||||
3. HPQFlash will inform the user that a BIOS flash is about to occur.
|
||||
|
||||
4. The version of the BIOS image in the ROM.CAB file and the version of the
|
||||
current system BIOS are displayed. Once OK is selected the flash
|
||||
process begins.
|
||||
|
||||
5. Upon completion, the user is notified that the BIOS Flash was
|
||||
successful. Select Shutdown.
|
||||
|
||||
6. Turn the unit back on using the power button.
|
||||
|
||||
7. The system BIOS update is complete.
|
||||
|
||||
ADVANCED USAGE:
|
||||
|
||||
1. Close all other applications before launching HPQFlash.
|
||||
|
||||
2. On the Windows Task Bar select Start, then Run, and enter
|
||||
the following on the command line:
|
||||
[Path]\HPQFlash -f[Name].CAB
|
||||
|
||||
3. HPQFlash will inform the user that a BIOS Flash is about to occur.
|
||||
|
||||
4. The version of the BIOSimage in the [Name].cab file and the version of the
|
||||
current system BIOS are displayed. Once OK is selected the flash
|
||||
process begins.
|
||||
|
||||
5. Upon completion, the user is notified that the BIOS Flash was
|
||||
successful. Select Shutdown.
|
||||
|
||||
6. Turn the unit back on using the power button.
|
||||
|
||||
7. The system BIOS update is complete.
|
||||
|
||||
HPQFlash.exe version 4.40 Rev. A Pass 1
|
||||
|
||||
Copyright (c) 2010-2015 Hewlett-Packard Development Company, L.P.
|
||||
|
||||
|
||||
@@ -0,0 +1,69 @@
|
||||
HPQ Password Utility
|
||||
|
||||
HPQ Password Utility is an application which allows the user (typically a
|
||||
system administrator) to create an encrypted password file which can be used
|
||||
with with the /p option of the HPQFlash application. This option is usually
|
||||
used along with the /s option to perform a silent mode update of the system
|
||||
BIOS on HP computers which have a BIOS Setup password set.
|
||||
|
||||
|
||||
HOW TO RUN
|
||||
1. Run the HPQPswd.exe executable and enter the information requested:
|
||||
a. BIOS Setup password of target machines
|
||||
b. Location of encrypted password file to be created
|
||||
NOTE:
|
||||
- Please save the password file with a ".bin" extension.
|
||||
- This password file only works with hpqFlash application version 4.20 B5 and later.
|
||||
|
||||
|
||||
2. Click on OK.
|
||||
3. The entered password will be encrypted and stored in the specified location.
|
||||
|
||||
|
||||
CHANGE HISTORY
|
||||
|
||||
Version 3.0 B3, 4/11/2011
|
||||
- Added command line support
|
||||
|
||||
Version 3.0 A2, 5/13/2008
|
||||
- Rebuilt with "Use MFC in a Static Library" option to be able to run in non-English OS.
|
||||
|
||||
Version 2.0 C1, 10/04/06
|
||||
- Fixed Issue with saving bin file on Windows Vista OS
|
||||
|
||||
Version 2.0 B1, 07/27/05
|
||||
- Added Password Confirmation Edit Box Support
|
||||
|
||||
Version 2.0 A3, 04/26/05
|
||||
- Fixed issue where upper case alphabet letter Could not be entered
|
||||
in BIOS Password field to encrypt in the HPQ Password Utility.
|
||||
|
||||
Version 2.0 A2, 04/21/05
|
||||
- Fixed issue where in the HPQ Password Utility was not storing a 32 byte password
|
||||
in the bin file.
|
||||
|
||||
Version 2.0 A1, 04/07/05
|
||||
-Added Support to Change HPQ Password Utility to support case sensitive BIOS Setup Passwords.
|
||||
-The default installation directory is changed from c:\program files \ HPQ\ HPQ Password utility
|
||||
to c:\swsetup \ SPXXXXX.exe.
|
||||
|
||||
Version 1.0 B1, 02/06/03
|
||||
- Added changes to remove Compaq Bitmap from the UI.
|
||||
|
||||
Version 1.0 A3, 01/15/03
|
||||
- Added correct Version to the About page
|
||||
- The installation directory is changed from c:\program files \ Compaq \ Compaq password utility
|
||||
to c:\program files \ HPQ\ HPQ Password utility.
|
||||
|
||||
Version 1.0 A2, 7/15/02
|
||||
- Renamed utility to HPQPswd
|
||||
|
||||
Version 1.0 A1, 7/1/02
|
||||
- Original version
|
||||
|
||||
|
||||
Copyright (c) 2002-2015 Hewlett-Packard Company. All Rights Reserved.
|
||||
Compaq and the Compaq logo are trademarks of the Hewlett-Packard Company in the
|
||||
U.S. and other countries.
|
||||
All other product names mentioned herein may be trademarks of their respective
|
||||
companies.
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,33 @@
|
||||
HPQFlash and HPQ Password
|
||||
=========================
|
||||
|
||||
HPQFlash.exe - A utility to locally update or restore the system BIOS on
|
||||
individual PCs using the Microsoft Windows operating system.
|
||||
See HPQFlash.txt
|
||||
|
||||
HPQ Password Utility - A utility to create an encrypted password file which
|
||||
can be used with the /p option of the HPQFlash application.
|
||||
This option is typically used along with the /s option to
|
||||
perform a silent mode update of the system BIOS on HP systems
|
||||
which have a BIOS Setup password set.
|
||||
See HPQPswd.txt
|
||||
|
||||
The BIOS update process can also be done from a USB flash media device by
|
||||
copying the files from this folder to the USB drive and executing HPQFlash.exe
|
||||
from the device in Microsoft Windows.
|
||||
|
||||
|
||||
Files included in this folder:
|
||||
|
||||
HPQFlash.exe
|
||||
HPQFlash.txt
|
||||
HPQPswd.exe
|
||||
HPQPswd.txt
|
||||
Readme.txt (this file)
|
||||
ROM.CAB (BIOS image file)
|
||||
|
||||
|
||||
Copyright (c) 2010-2015 Hewlett-Packard Development Company, L.P.
|
||||
|
||||
Product names mentioned herein may be trademarks and/or registered trademarks
|
||||
of their respective companies.
|
||||
Binary file not shown.
@@ -0,0 +1,80 @@
|
||||
Revision History
|
||||
K01 ROM Family
|
||||
|
||||
|
||||
Models Supported: HP Compaq 8300 Elite Convertible Mini Tower (CMT) Desktop PC
|
||||
HP Compaq 8300 Elite All in One (AiO) Desktop PC
|
||||
HP Compaq 8300 Elite Small Form Factor Desktop PC
|
||||
HP Compaq 8300 Elite Ultra-Slim Desktop (USDT) PC
|
||||
HP Compaq 6300 Pro All in One (AiO) Desktop PC
|
||||
HP Compaq 6300 Pro Small Form Factor Desktop PC
|
||||
|
||||
Version 2.99 - This allows the customer to flash to the next Major Version v3.xx.
|
||||
|
||||
ALERT: This BIOS is to be used to allow the customer to flash to the next
|
||||
Major Version of the BIOS, v3.xx. The customer cannot flash from
|
||||
previous versions, v2.98 or earlier to v3.xx, without first flashing
|
||||
v2.99 onto the system. If the customer needs to flash back from v3.xx
|
||||
to an earlier v2.xx, this can occur. However, to flash to v3.xx,
|
||||
v2.99 MUST be flashed first, as previously stated.
|
||||
|
||||
PCR 0 : 8ce2f75bfaf697897c87814c178f538d76fea107
|
||||
|
||||
|
||||
Version 2.98 - Flash Back Restrictions to previous BIOS versions.
|
||||
|
||||
ALERT: This BIOS includes critical updates. Once the system is updated to this
|
||||
version, rollback to previous versions is restricted. This restriction
|
||||
also applies to BIOS recovery files.
|
||||
|
||||
- Added UEFI and UEFI Variables security update.
|
||||
- Fixed for AMT Watchdog Timers when disabled in F-10 the timers are no longer active.
|
||||
- Fixed the Boot Order status and sequence listed in CPQSetup.txt to be the same as in
|
||||
F10 Menu, Setup.
|
||||
- Fixed the possible TXT/TPM issue in F10 Menu where both TXT and TPM options could be
|
||||
greyed-out in the F10 Setup.
|
||||
- Fixed intermittent S3 hang during the resume cycle.
|
||||
- Fixed the Boot Order displaying incorrectly in F10=Setup when the Network Controller
|
||||
is Disabled.
|
||||
- Fixed the TPM1.2 device not being accessible in Device Manager and TPM.MSC after
|
||||
resetting the TPM.
|
||||
|
||||
PCR 0 : 271d2681082bd604e3ae1e0770996c757d143136
|
||||
|
||||
Version 2.85 - Fixed an issue with OS activation when downgrading to Windows 7 using HP System Software
|
||||
Restore Disks.
|
||||
- Fixed an issue where the Advanced Diagnostics could report 'not supported' for a few
|
||||
subtests.
|
||||
|
||||
Version 2.83 - Initial BIOS version for Windows 8 systems. BIOS version numbers less than 2.80 do not
|
||||
include support for Windows 8 features.
|
||||
|
||||
* NOTE: Downgrading the BIOS to versions before v2.83 is not allowed if Secure Boot is enabled.
|
||||
Windows 8 new BIOS features such as Legacy Support disable, Secure Boot and Fast Boot
|
||||
are not supported on lower numbered BIOS versions. *
|
||||
|
||||
Version 2.56 - Added support for Stringent Password option (Windows 7 BIOS only).
|
||||
- Added a new option ("Disable USB") to the F10 Setup / Storage Options / Removable Media Boot
|
||||
setting, which prevents booting from USB devices regardless of the boot order settings
|
||||
(Windows 7 BIOS only).
|
||||
- Fixed an issue with the F10 Setup user interface for Boot Order, where making more than one change
|
||||
at a time could cause other unexpected boot order changes.
|
||||
- Corrected the System Management BIOS type 1 data field for 'Wakeup Type' to properly display
|
||||
'Remote' when the system is powered on by a Wake-on-LAN event.
|
||||
|
||||
Version 2.53 - Adds support for models without microphone and speakers.
|
||||
- Fixes an issue with button retasking on AIO systems.
|
||||
- Fixes REPSETUP support for disabling Front USB ports on AIO systems.
|
||||
|
||||
Version 2.51 - Initial BIOS version for All-in-One (AIO) systems. Earlier BIOS versions are not supported for AIO.
|
||||
- Added non-English keyboard mapping for F10 Setup System ID strings (Asset Tag and Ownership Tag).
|
||||
- Fixed an issue where applying defaults with a setup password present incorrectly sets the
|
||||
integrated graphics to enabled, when the primary graphics is a PCI Express card. The normal setting
|
||||
is disabled, except for ultra-slim form factors.
|
||||
- Fixed an issue with AMT console connections to F10 Setup not properly initializing admin mode.
|
||||
- Corrected F10 Setup restriction on disabling features required for the Trusted Execution Technology
|
||||
(TXT) when the feature is enabled.
|
||||
- Fixed POST support for USB keyboards when USB port security locks all ports.
|
||||
|
||||
Version 2.05 - Initial system BIOS release
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
HOW TO USE:
|
||||
|
||||
This SoftPaq contains utilities that can be used to restore or update the
|
||||
System BIOS on HP business desktop models.
|
||||
|
||||
Several methods for changing the BIOS version on your computer may be chosen.
|
||||
Included are the various ways to perform the update. Each folder provided has
|
||||
self-contained files to perform the BIOS update and any unwanted folders may
|
||||
be deleted.
|
||||
|
||||
Utilities and appropriate BIOS images are contained in each of the directories as
|
||||
follows:
|
||||
|
||||
DOS Flash - A DOS utility that can be used locally or with a Preboot eXecution
|
||||
Environment (PXE) management application to update or restore the System BIOS.
|
||||
|
||||
HPQFlash - A utility to locally update or restore the System BIOS on individual PCs
|
||||
in the Microsoft Windows operating system.
|
||||
|
||||
|
||||
NOTE: The Business Desktops BIOS Utilities SoftPaq is also available on the web.
|
||||
It contains additional utilities to support Hewlett-Packard Company products. The
|
||||
BIOS Utilities SoftPaq will be shown when searching for software support of products
|
||||
in the category BIOS and Firmware.
|
||||
|
||||
Copyright (c) 2015 Hewlett-Packard Development Company, L.P.
|
||||
|
||||
Product names mentioned herein may be trademarks and/or registered trademarks
|
||||
of their respective companies.
|
||||
Binary file not shown.
@@ -0,0 +1,6 @@
|
||||
Start Extracting
|
||||
|
||||
|
||||
Finished Extracting
|
||||
No module compression used
|
||||
Not Phoenix/Dell/Insyde/EFI BIOS
|
||||
@@ -0,0 +1,120 @@
|
||||
[CVA File Information]
|
||||
CVATimeStamp=20150930T015027
|
||||
CVASyntaxVersion=2.0A1
|
||||
|
||||
[Software Title]
|
||||
US=ROM Firmware for 8300 Elite and 6300 Pro Business PCs (K01)
|
||||
|
||||
[US.Software Description]
|
||||
HP Business Desktop System BIOS Package for models with an K01 BIOS.
|
||||
|
||||
[General]
|
||||
PN=000000-000
|
||||
Version=v02.99
|
||||
Revision=A
|
||||
Pass=1
|
||||
Type=ROMPAQ
|
||||
Category=BIOS
|
||||
TargetPartition=MFG DIAGS
|
||||
SystemMustBeRebooted=1
|
||||
VendorName=HP
|
||||
VendorVersion=
|
||||
|
||||
[SupportedLanguages]
|
||||
Languages=GLOBAL
|
||||
Countries=GBL
|
||||
|
||||
[ProfessionalInnovations]
|
||||
HPPI=NO
|
||||
LearnMore=
|
||||
|
||||
[DetailFileInformation]
|
||||
K01.CAB=ROM,K01,09,15,20,15
|
||||
|
||||
[Softpaq]
|
||||
SoftpaqNumber=SP73099
|
||||
SupersededSoftpaqNumber=SP71019
|
||||
SoftPaqMD5=
|
||||
|
||||
[Operating Systems]
|
||||
W732EN=OEM
|
||||
W732HB=OEM
|
||||
W732HP=OEM
|
||||
W732PR=OEM
|
||||
W732UL=OEM
|
||||
W764EN=OEM
|
||||
W764HP=OEM
|
||||
W764PR=OEM
|
||||
W764UL=OEM
|
||||
W8.132=OEM
|
||||
W8.164=OEM
|
||||
W832=OEM
|
||||
W864=OEM
|
||||
WINXP32P=OEM
|
||||
WV32EN=OEM
|
||||
WV32HB=OEM
|
||||
WV64EN=OEM
|
||||
W732SE=OEM
|
||||
WV64HP=OEM
|
||||
WV32HP=OEM
|
||||
WT64=OEM
|
||||
|
||||
[System Information]
|
||||
SysId00=0x3396
|
||||
SysName00=HP COMPAQ ELITE 8300 CMT BUSINESS
|
||||
SysId01=0x3396
|
||||
SysName01=HP COMPAQ ELITE 8380 CMT BUSINESS
|
||||
SysId02=0x3397
|
||||
SysName02=HP COMPAQ ELITE 8300 MT BUSINESS
|
||||
SysId03=0x3397
|
||||
SysName03=HP COMPAQ ELITE 8380 MT BUSINESS
|
||||
SysId04=0x3397
|
||||
SysName04=HP COMPAQ ELITE 8300 SFF BUSINESS
|
||||
SysId05=0x3398
|
||||
SysName05=HP COMPAQ ELITE 8300 USDT BUSINESS
|
||||
SysId06=0x3399
|
||||
SysName06=HP COMPAQ ELITE 8300 BUSINESS
|
||||
SysId07=0x3399
|
||||
SysName07=HP COMPAQ ELITE 8300 TOUCH BUSINESS
|
||||
SysId08=0x339A
|
||||
SysName08=HP COMPAQ PRO 6300 MT BUSINESS
|
||||
SysId09=0x339A
|
||||
SysName09=HP COMPAQ PRO 6380 MT BUSINESS
|
||||
SysId10=0x339A
|
||||
SysName10=HP COMPAQ PRO 6300 SFF BUSINESS
|
||||
SysId11=0x339B
|
||||
SysName11=HP COMPAQ PRO 6300 BUSINESS
|
||||
|
||||
[US.Enhancements]
|
||||
- Customers MUST flash this BIOS first, before flashing to the v03.xx versions.
|
||||
- Added enhancement to allow for flashing forward to v03.xx.
|
||||
- This is the same version as v02.98.
|
||||
|
||||
|
||||
[Install Execution]
|
||||
Install=
|
||||
SilentInstall="hpqflash\hpqflash.exe" -s
|
||||
|
||||
[ReturnCode]
|
||||
3010:SUCCESS:REBOOT=A restart is required to complete the install.
|
||||
1602:FAILURE:NOREBOOT=The install cannot complete due to a dependency.
|
||||
|
||||
[Security]
|
||||
FullME_PCR00=8ce2f75bfaf697897c87814c178f538d76fea107
|
||||
|
||||
[Private]
|
||||
Private_SSMCompliant=1
|
||||
DPB_Compliant=0
|
||||
Private_ReleaseType=Critical
|
||||
Private_ProductType = Desktops, Desktops, Desktops, Desktops, Desktops, Desktops, Desktops, Desktops, Desktops, Desktops, Desktops, Desktops
|
||||
|
||||
[Private_SoftpaqInstall]
|
||||
|
||||
1. Download the file by clicking the "Download" or "Obtain Software" button and saving the file to a folder on your hard drive (make a note of the folder where the downloaded file is saved).
|
||||
|
||||
2. Double-click the downloaded file and follow the on-screen instructions (Windows Only).
|
||||
|
||||
[CVAToolDocumentStamp]
|
||||
Generated by Release CVA Tool Version 1.0 using Syntax Version 2.0 A1 on 9/30/2015
|
||||
Copyright (c) 2015 Hewlett-Packard Development Company, L.P.
|
||||
|
||||
@@ -0,0 +1,112 @@
|
||||
TITLE: ROM Firmware for 8300 Elite and 6300 Pro Business PCs (K01)
|
||||
VERSION: v02.99
|
||||
DESCRIPTION:
|
||||
This package provides the HP Business Desktop System BIOS Package for supported models running a supported operating system.
|
||||
|
||||
PURPOSE: Critical
|
||||
SoftPaq NUMBER: SP73099
|
||||
SUPERSEDES: SP71019
|
||||
EFFECTIVE DATE: 10/19/2015
|
||||
CATEGORY: BIOS
|
||||
SSM SUPPORTED: Yes
|
||||
|
||||
PRODUCT TYPE(S):
|
||||
Desktops
|
||||
|
||||
HARDWARE PRODUCT MODEL(S):
|
||||
HP Compaq Elite 8300 CMT Business PC
|
||||
HP Compaq Elite 8380 CMT Business PC
|
||||
HP Compaq Elite 8300 MT Business PC
|
||||
HP Compaq Elite 8380 MT Business PC
|
||||
HP Compaq Elite 8300 SFF Business PC
|
||||
HP Compaq Elite 8300 USDT Business PC
|
||||
HP Compaq Elite 8300 All-in-One Business PC
|
||||
HP Compaq Elite 8300 Touch All-in-One Business PC
|
||||
HP Compaq Pro 6300 MT Business PC
|
||||
HP Compaq Pro 6380 MT Business PC
|
||||
HP Compaq Pro 6300 SFF Business PC
|
||||
HP Compaq Pro 6300 All-in-One Business PC
|
||||
|
||||
OPERATING SYSTEM(S):
|
||||
Microsoft Windows 7 Enterprise 32 Edition
|
||||
Microsoft Windows 7 Home Basic 32 Edition
|
||||
Microsoft Windows 7 Home Premium 32 Edition
|
||||
Microsoft Windows 7 Professional 32 Edition
|
||||
Microsoft Windows 7 Ultimate 32 Edition
|
||||
Microsoft Windows 7 Enterprise 64 Edition
|
||||
Microsoft Windows 7 Home Premium 64 Edition
|
||||
Microsoft Windows 7 Professional 64 Edition
|
||||
Microsoft Windows 7 Ultimate 64 Edition
|
||||
Microsoft Windows 8.1 32 Bit
|
||||
Microsoft Windows 8.1 64 Bit
|
||||
Microsoft Windows 8 32 Edition
|
||||
Microsoft Windows 8 64 Edition
|
||||
Microsoft Windows XP Professional
|
||||
Microsoft Windows Vista Enterprise 32 Edition
|
||||
Microsoft Windows Vista Home Basic 32 Edition
|
||||
Microsoft Windows Vista Enterprise 64 Edition
|
||||
Microsoft Windows 7 Starter 32 Edition
|
||||
Microsoft Windows Vista Home Premium 64 Edition
|
||||
Microsoft Windows Vista Home Premium 32 Edition
|
||||
Microsoft Windows 10 64
|
||||
|
||||
LANGUAGE(S):
|
||||
English
|
||||
Arabic
|
||||
Bulgarian
|
||||
Brazilian Portuguese
|
||||
Chinese (Prc. Simplified)
|
||||
Czech
|
||||
Danish
|
||||
Estonian
|
||||
Finnish
|
||||
French
|
||||
Greek
|
||||
German
|
||||
Croatian
|
||||
Hungarian
|
||||
Hebrew
|
||||
Italian
|
||||
Japanese
|
||||
Korean
|
||||
Kazakh
|
||||
Lithuanian
|
||||
Latvian
|
||||
Dutch
|
||||
Norwegian
|
||||
Polish
|
||||
Portuguese
|
||||
Romanian
|
||||
Russian
|
||||
Swedish
|
||||
Slovakian
|
||||
Slovenian
|
||||
Spanish
|
||||
Serbian
|
||||
Thai
|
||||
Turkish
|
||||
Taiwan Chinese (Traditional)
|
||||
Hong Kong
|
||||
APJ
|
||||
Americas
|
||||
EMEA1
|
||||
EMEA2
|
||||
EMEA3
|
||||
English (UK)
|
||||
Bahasa (Indonesia)
|
||||
Latin America
|
||||
EMEA1
|
||||
EMEA1
|
||||
|
||||
ENHANCEMENTS:
|
||||
- Customers MUST flash this BIOS first, before flashing to the v03.xx versions.
|
||||
- Added enhancement to allow for flashing forward to v03.xx.
|
||||
- This is the same version as v02.98.
|
||||
|
||||
HOW TO USE:
|
||||
1. Download the file by clicking the "Download" or "Obtain Software" button and saving the file to a folder on your hard drive (make a note of the folder where the downloaded file is saved).
|
||||
|
||||
2. Double-click the downloaded file and follow the on-screen instructions (Windows Only).
|
||||
|
||||
Copyright (c) 2015 Hewlett-Packard Development Company, L.P.
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,521 @@
|
||||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:w="urn:schemas-microsoft-com:office:word"
|
||||
xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
<head>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
|
||||
<meta name=ProgId content=Word.Document>
|
||||
<meta name=Generator content="Microsoft Word 11">
|
||||
<meta name=Originator content="Microsoft Word 11">
|
||||
<!--[if !mso]>
|
||||
<style>
|
||||
v\:* {behavior:url(#default#VML);}
|
||||
o\:* {behavior:url(#default#VML);}
|
||||
w\:* {behavior:url(#default#VML);}
|
||||
.shape {behavior:url(#default#VML);}
|
||||
</style>
|
||||
<![endif]-->
|
||||
<title>Hewlett-Packard BIOS Flash Update</title>
|
||||
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
|
||||
name="address"/>
|
||||
<!--[if gte mso 9]><xml>
|
||||
<o:DocumentProperties>
|
||||
<o:Author> </o:Author>
|
||||
<o:LastAuthor>Scott Sanders</o:LastAuthor>
|
||||
<o:Revision>5</o:Revision>
|
||||
<o:TotalTime>9</o:TotalTime>
|
||||
<o:Created>2006-09-05T15:10:00Z</o:Created>
|
||||
<o:LastSaved>2010-05-10T15:31:00Z</o:LastSaved>
|
||||
<o:Pages>2</o:Pages>
|
||||
<o:Words>1887</o:Words>
|
||||
<o:Characters>10757</o:Characters>
|
||||
<o:Company>Hewlett-Packard</o:Company>
|
||||
<o:Lines>89</o:Lines>
|
||||
<o:Paragraphs>25</o:Paragraphs>
|
||||
<o:CharactersWithSpaces>12619</o:CharactersWithSpaces>
|
||||
<o:Version>12.00</o:Version>
|
||||
</o:DocumentProperties>
|
||||
</xml><![endif]-->
|
||||
<!--[if gte mso 9]><xml>
|
||||
<w:WordDocument>
|
||||
<w:Zoom>145</w:Zoom>
|
||||
<w:ValidateAgainstSchemas/>
|
||||
<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
|
||||
<w:IgnoreMixedContent>false</w:IgnoreMixedContent>
|
||||
<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
|
||||
<w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
|
||||
</w:WordDocument>
|
||||
</xml><![endif]--><!--[if gte mso 9]><xml>
|
||||
<w:LatentStyles DefLockedState="false" LatentStyleCount="267">
|
||||
</w:LatentStyles>
|
||||
</xml><![endif]--><!--[if !mso]><object
|
||||
classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
|
||||
<style>
|
||||
st1\:*{behavior:url(#ieooui) }
|
||||
</style>
|
||||
<![endif]-->
|
||||
<style>
|
||||
<!--
|
||||
/* Style Definitions */
|
||||
p.MsoNormal, li.MsoNormal, div.MsoNormal
|
||||
{mso-style-parent:"";
|
||||
margin:0in;
|
||||
margin-bottom:.0001pt;
|
||||
mso-pagination:widow-orphan;
|
||||
font-size:12.0pt;
|
||||
font-family:"HP Simplified","Arial";
|
||||
mso-fareast-font-family:"HP Simplified";
|
||||
color:#000;}
|
||||
h1
|
||||
{mso-margin-top-alt:auto;
|
||||
margin-right:0in;
|
||||
mso-margin-bottom-alt:auto;
|
||||
margin-left:0in;
|
||||
mso-pagination:widow-orphan;
|
||||
mso-outline-level:1;
|
||||
font-size:30.0pt;
|
||||
font-family:"HP Simplified","Arial";
|
||||
mso-fareast-font-family:"HP Simplified";
|
||||
mso-fareast-theme-font:minor-fareast;
|
||||
color:#007dba;
|
||||
font-weight:bold;}
|
||||
h2
|
||||
{mso-margin-top-alt:auto;
|
||||
margin-right:0in;
|
||||
mso-margin-bottom-alt:auto;
|
||||
margin-left:0in;
|
||||
mso-pagination:widow-orphan;
|
||||
mso-outline-level:2;
|
||||
font-size:18.0pt;
|
||||
font-family:"HP Simplified","Arial";
|
||||
mso-fareast-font-family:"HP Simplified";
|
||||
mso-fareast-theme-font:minor-fareast;
|
||||
color:#000;
|
||||
font-weight:bold;}
|
||||
h3
|
||||
{mso-margin-top-alt:auto;
|
||||
margin-right:0in;
|
||||
mso-margin-bottom-alt:auto;
|
||||
margin-left:0in;
|
||||
mso-pagination:widow-orphan;
|
||||
mso-outline-level:3;
|
||||
font-size:13.5pt;
|
||||
font-family:"HP Simplified","Arial";
|
||||
mso-fareast-font-family:"HP Simplified";
|
||||
mso-fareast-theme-font:minor-fareast;
|
||||
color:#000;
|
||||
font-weight:bold;}
|
||||
a:link, span.MsoHyperlink
|
||||
{color:#007dba;}
|
||||
a:visited, span.MsoHyperlinkFollowed
|
||||
{color:#007dba;}
|
||||
p
|
||||
{mso-margin-top-alt:auto;
|
||||
margin-right:0in;
|
||||
mso-margin-bottom-alt:auto;
|
||||
margin-left:0in;
|
||||
mso-pagination:widow-orphan;
|
||||
font-size:12.0pt;
|
||||
font-family:"HP Simplified","Arial";
|
||||
mso-fareast-font-family:"HP Simplified";
|
||||
color:#000;}
|
||||
@page Section1
|
||||
{size:8.5in 11.0in;
|
||||
margin:1.0in 1.25in 1.0in 1.25in;
|
||||
mso-header-margin:.5in;
|
||||
mso-footer-margin:.5in;
|
||||
mso-paper-source:0;}
|
||||
div.Section1
|
||||
{page:Section1;}
|
||||
/* List Definitions */
|
||||
@list l0
|
||||
{mso-list-id:576793600;
|
||||
mso-list-template-ids:-2129070332;}
|
||||
@list l0:level1
|
||||
{mso-level-number-format:bullet;
|
||||
mso-level-text:\F0B7;
|
||||
mso-level-tab-stop:.5in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;
|
||||
mso-ansi-font-size:10.0pt;
|
||||
font-family:Symbol;}
|
||||
@list l0:level2
|
||||
{mso-level-tab-stop:1.0in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;}
|
||||
@list l0:level3
|
||||
{mso-level-tab-stop:1.5in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;}
|
||||
@list l0:level4
|
||||
{mso-level-tab-stop:2.0in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;}
|
||||
@list l0:level5
|
||||
{mso-level-tab-stop:2.5in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;}
|
||||
@list l0:level6
|
||||
{mso-level-tab-stop:3.0in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;}
|
||||
@list l0:level7
|
||||
{mso-level-tab-stop:3.5in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;}
|
||||
@list l0:level8
|
||||
{mso-level-tab-stop:4.0in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;}
|
||||
@list l0:level9
|
||||
{mso-level-tab-stop:4.5in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;}
|
||||
@list l1
|
||||
{mso-list-id:1843009106;
|
||||
mso-list-template-ids:1886153374;}
|
||||
@list l1:level1
|
||||
{mso-level-number-format:bullet;
|
||||
mso-level-text:\F0B7;
|
||||
mso-level-tab-stop:.5in;
|
||||
mso-level-number-position:left;
|
||||
text-indent:-.25in;
|
||||
mso-ansi-font-size:10.0pt;
|
||||
font-family:Symbol;}
|
||||
ol
|
||||
{margin-bottom:0in;}
|
||||
ul
|
||||
{margin-bottom:0in;}
|
||||
-->
|
||||
</style>
|
||||
<!--[if gte mso 10]>
|
||||
<style>
|
||||
/* Style Definitions */
|
||||
table.MsoNormalTable
|
||||
{mso-style-name:"Table Normal";
|
||||
mso-tstyle-rowband-size:0;
|
||||
mso-tstyle-colband-size:0;
|
||||
mso-style-noshow:yes;
|
||||
mso-style-parent:"";
|
||||
mso-padding-alt:0in 5.4pt 0in 5.4pt;
|
||||
mso-para-margin:0in;
|
||||
mso-para-margin-bottom:.0001pt;
|
||||
mso-pagination:widow-orphan;
|
||||
font-size:10.0pt;
|
||||
font-family:"HP Simplified","Arial";}
|
||||
</style>
|
||||
<![endif]--><!--[if gte mso 9]><xml>
|
||||
<o:shapedefaults v:ext="edit" spidmax="4098"/>
|
||||
</xml><![endif]--><!--[if gte mso 9]><xml>
|
||||
<o:shapelayout v:ext="edit">
|
||||
<o:idmap v:ext="edit" data="1"/>
|
||||
</o:shapelayout></xml><![endif]-->
|
||||
</head>
|
||||
|
||||
<body bgcolor=white lang=EN-US link=blue vlink=blue style='tab-interval:.5in'>
|
||||
|
||||
<div class=Section1>
|
||||
|
||||
<table class=MsoNormalTable border=0 cellpadding=0 width="100%"
|
||||
style='width:100.0%;mso-cellspacing:1.5pt;mso-yfti-tbllook:1184;mso-padding-alt:
|
||||
0in 5.4pt 0in 5.4pt'>
|
||||
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-yfti-lastrow:yes'>
|
||||
<td style='padding:.75pt .75pt .75pt .75pt'>
|
||||
<p class=MsoNormal align=center style='text-align:center'><span
|
||||
style='mso-no-proof:yes'><img width=66 height=55 id="_x0000_i1040"
|
||||
src=logo.bmp></span></p>
|
||||
</td>
|
||||
<td style='padding:.75pt .75pt .75pt .75pt'>
|
||||
<h1 align=center style='text-align:center'><span style='mso-fareast-font-family:
|
||||
"HP Simplified"'>BIOS Flash Update<o:p></o:p></span></h1>
|
||||
</td>
|
||||
<td style='padding:.75pt .75pt .75pt .75pt'>
|
||||
<p class=MsoNormal align=center style='text-align:center'><span
|
||||
style='mso-no-proof:yes'><img width=66 height=55 id="_x0000_i1039"
|
||||
src=logo.bmp></span></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<p>This BIOS Flash Update SoftPaq contains utilities and data files that can be used
|
||||
to restore or upgrade the system BIOS on Hewlett-Packard business desktops.
|
||||
Several methods for changing the BIOS firmware stored on your computer are provided
|
||||
as described below.</p>
|
||||
|
||||
<b style='mso-bidi-font-weight:normal'><span style='color:red'><u>ALERT:</u> If upgrading
|
||||
from a v02.xx to this version, v03.xx, the user must <b>first upgrade</b> to version, v02.99, (<b>SP73099</b>).
|
||||
If not, upgrading to v03.xx will be rejected.</span></b>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<span style='font-size:12.0pt;font-family:"HP Simplified","Arial";mso-fareast-font-family:
|
||||
"HP Simplified";color:#007dba;mso-ansi-language:EN-US;mso-fareast-language:
|
||||
EN-US;mso-bidi-language:AR-SA'>
|
||||
|
||||
<ul type=disc>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="#HPQWIN"><u>BIOS updates
|
||||
in Microsoft Windows OS.</u></a> </li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="#F10FLSH"><u>BIOS updates
|
||||
from the (ESC) Startup Menu or (F10) BIOS Setup Utility.</u></a> </li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="#UFMDOS"><u>BIOS updates
|
||||
from a DOS bootable USB storage device.</u></a> </li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="#SSM"><u>Updating the
|
||||
BIOS with the System Software Management (SSM) application.</u></a> </li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="#HPCMS"><u>Updating the
|
||||
BIOS with HP Client Manager Software (HPCMS).</u></a> </li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="#REMOTE"><u>BIOS updates
|
||||
over a Local Area Network (LAN).</u></a> </li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="#BB"><u>Updating the
|
||||
BIOS after a failed flash.</u></a> </li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="#DESCRIP"><u>Folder
|
||||
and flash methods general descriptions.</u></a> </li>
|
||||
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
|
||||
mso-list:l0 level1 lfo3;tab-stops:list .5in'><a href="history.txt"
|
||||
target="_blank"><u>View revision history</u></a></li>
|
||||
</ul>
|
||||
<p></p>
|
||||
</span>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 align=center style='text-align:center'><a name=DESCRIP>General Descriptions</a>
|
||||
</h2>
|
||||
|
||||
<p>Utilities and appropriate BIOS images are contained in each of the
|
||||
directories as follows:</p>
|
||||
|
||||
<p><a href="#UFMDOS"><u>DOS Flash</u></a> - A DOS utility that can be used
|
||||
locally or with a Preboot eXecution Environment (PXE) management application to
|
||||
update or restore the System BIOS.</p>
|
||||
|
||||
<p><a href="#HPQWIN"><u>HPQFlash</u></a> - A utility to locally update or
|
||||
restore the System BIOS on individual PCs in the Microsoft Windows
|
||||
operating system. No backup will be made of the current System BIOS.</p>
|
||||
|
||||
<p>This Softpaq can also be used with the following methods of updating the
|
||||
System BIOS:</p>
|
||||
|
||||
<p><a href="#SSM"><u>System Software Manager (SSM)</u></a> - Use this SoftPaq
|
||||
with System Software Manager (SSM) to update the System BIOS on target PCs over
|
||||
the local area network. Place this SoftPaq in your SSM Filestore folder and then
|
||||
update the database. SSM is a free utility provided by Hewlett-Packard Company. For
|
||||
information on SSM, see <a href="http://www.hp.com/go/ssm" target="_blank"><u>http://www.hp.com/go/ssm</u></a>.</p>
|
||||
|
||||
<p><a href="#HPCMS"><u>HP Client Manager Software (HPCMS)</u></a> - Use this Softpaq
|
||||
with HP Client Manager Software (HPCMS) and Altiris Notification Server to
|
||||
remotely target, distribute, and update the System BIOS on networked PCs. Place
|
||||
this SoftPaq in your HPCMS Filestore folder and then update the database. HPCMS is
|
||||
a free management application provided by Altiris and Hewlett-Packard Company.
|
||||
For information on HPCMS, see <a href="http://www.hp.com/go/EasyDeploy"
|
||||
target="_blank"><u>http://www.hp.com/go/EasyDeploy</u></a>.</p>
|
||||
|
||||
<p>NOTE: The Business Desktops BIOS Utilities SoftPaq is also available on the web.
|
||||
It contains additional utilities to support Hewlett-Packard Company products.
|
||||
The BIOS Utilities SoftPaq will be shown when searching for software support of
|
||||
products in the category BIOS and Firmware.</p>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 align=center style='text-align:center'><a name=HPQWIN>Windows BIOS Flashing</a></h2>
|
||||
|
||||
<p>HPQFlash.exe is a utility which is designed to flash the System BIOS within a
|
||||
Microsoft Windows environment. To display the available options for this utility, enter
|
||||
[Path]\HPQFlash -? at a command prompt or local search box. If the system has a BIOS Setup
|
||||
password enabled, then HPQFlash will prompt for the password to be entered before completing
|
||||
the flash process. For more information, view <a href="HPQFlash/Readme.txt" target="_blank"><u>Readme.txt</u></a> or <a href="HPQFlash/HPQFlash.txt" target="_blank"><u>HPQFlash.txt</u></a>,
|
||||
both located in the HPQFlash folder. If you wish to update your BIOS using
|
||||
HPQFlash, click the link below. If prompted with a File Download dialog box,
|
||||
please select "Open" or "Run from current location".</p>
|
||||
|
||||
<h3 align=center style='text-align:center'><a href="HPQFlash/HPQFlash.exe"><u>Launch
|
||||
HPQFlash</u></a></h3>
|
||||
|
||||
<h3 align=left style='text-align:left'>Using a USB Device to run HPQFlash</a></h3>
|
||||
|
||||
<p>HPQFlash.exe can also be run from a USB storage device, including
|
||||
flash memory devices and external hard drives. To do this,
|
||||
insert the device and take note of the assigned drive letter. Copy
|
||||
HPQFlash.exe and ROM.CAB to the root of the drive indicated by the drive letter,
|
||||
or a folder on that drive. HPQFlash can then be executed from its location on the
|
||||
USB device. If the system has a BIOS Setup password enabled, then HPQFlash will
|
||||
prompt for the password to be entered before completing the flash process. For
|
||||
more information, view <a href="HPQFlash/Readme.txt" target="_blank"><u>Readme.txt</u></a>
|
||||
or <a href="HPQFlash/HPQFlash.txt" target="_blank"><u>HPQFlash.txt</u></a>, both
|
||||
located in the HPQFlash folder.</p>
|
||||
|
||||
<h3 align=center style='text-align:center'><a href="HPQFlash" target="_blank"><u>View
|
||||
Contents of HPQFlash Folder </u></a></h3>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 align=center style='text-align:center'><a name=F10FLSH>Startup Menu / F10
|
||||
Setup BIOS Flashing</a></h2>
|
||||
|
||||
<p>The HP Business Desktop systems provide a BIOS upgrade option through both
|
||||
the Startup Menu and the F10 Setup utility using the "Flash System ROM"
|
||||
feature. Reboot the PC and press the Escape key to display the Startup Menu.
|
||||
Use the arrow keys to select Utilities, and then select the Flash System ROM
|
||||
option. Alternatively, reboot the PC and press F10 to access the BIOS Setup
|
||||
utility. In the File menu, select Flash System ROM. Either method
|
||||
requires that removable media be present (USB storage or data CD) that contains
|
||||
the BIOS binary image file in the root directory. The binary
|
||||
image file can be found in the DOS Flash folder and is named
|
||||
<i>xxx_MMmm.bin</i> where "xxx" is the BIOS family, "MM" is
|
||||
the major version number, and "mm" is the minor version number.
|
||||
To create a CD for updating the BIOS, use a blank CD-R or CD-RW disk on a system
|
||||
with a CD-RW or DVD+RW drive, and write the binary to the disk using any CD-burning
|
||||
software (Windows 7 and Vista support burning data CDs without additional software).
|
||||
If a BIOS Setup password has been set, the password will be required before being
|
||||
able to access the "Flash System ROM" menu. The user is notified when the
|
||||
process is completed. The new BIOS code will not take effect until the PC is
|
||||
restarted.</p>
|
||||
|
||||
<p align=center style='text-align:center'><b><a href="DOS%20Flash"
|
||||
target="_blank"><u><span style='font-size:13.5pt'>View Contents of DOS Flash
|
||||
Folder</span></u></a></b></p>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 align=center style='text-align:center'><a name=UFMDOS>USB Device BIOS
|
||||
Flashing in DOS</a></h2>
|
||||
|
||||
<p>DOS Flash (DOSFlash.exe, FlshUefi.cpu) is the DOS-compatible System BIOS flash
|
||||
utility that can be used from a DOS bootable storage device (where "DOS"
|
||||
refers to any of a number of compatible operating systems such as FreeDOS, MS-DOS
|
||||
or DR-DOS). FlshUefi.cpu is the required driver for DOSFlash.exe. To flash the System
|
||||
BIOS from a bootable USB storage device, you will need to copy the contents of the
|
||||
DOS Flash folder to the USB device, boot the PC from the USB device, and execute
|
||||
the DOSFlash application. To see a more complete description of the DOS flash
|
||||
utilities, view <a href="DOS%20Flash/DOSFlash.txt" target="_blank"><u>DOSFlash.txt</u></a>
|
||||
located in the DOS Flash folder. This folder also contains the required binary image
|
||||
of the BIOS. The binary image file is named <i>xxx_MMmm.bin</i> where "xxx"
|
||||
is the BIOS family, "MM" is the major version number, and "mm"
|
||||
is the minor version number. This file can be copied to the root directory of
|
||||
any USB removable medium for use with the F10 setup "Flash System ROM"
|
||||
option or <a href="#BB"><u>BootBlock Emergency Recovery Mode</u></a>.</p>
|
||||
|
||||
<h3 align=center style='text-align:center'><a href="DOS%20Flash" target="_blank"><u>View
|
||||
Contents of DOS Flash Folder</u></a></h3>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 align=center style='text-align:center'><a name=SSM>System Software
|
||||
Management (SSM) BIOS Flashing</a></h2>
|
||||
|
||||
<p>Use this SoftPaq with System Software Manager (SSM) to update the System
|
||||
BIOS on target PCs on a network. Place this SoftPaq in your SSM Filestore folder
|
||||
and then update the database. SSM is a free utility provided by Hewlett-Packard
|
||||
Company. For information on SSM, see <a href="http://www.hp.com/go/ssm"
|
||||
target="_blank"><u>http://www.hp.com/go/ssm</u></a></p>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 align=center style='text-align:center'><a name=HPCMS>HP Client Manager
|
||||
Software (HPCMS) BIOS Flashing</a></h2>
|
||||
|
||||
<p>Use this Softpaq with HP Client Manager Software (HPCMS) and Altiris
|
||||
Notification Server to remotely target, distribute, and update the System BIOS
|
||||
on network PCs. Place this SoftPaq in your HPCMS Filestore folder and then update
|
||||
the database. HPCMS is a free managment application provided by Altiris and
|
||||
Hewlett-Packard Company. For more information, see <a
|
||||
href="http://www.hp.com/go/EasyDeploy" target="_blank"><u>http://www.hp.com/go/EasyDeploy</u></a></p>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 align=center style='text-align:center'><a name=Remote>Network BIOS Flashing</a></h2>
|
||||
|
||||
<p>The DOS Flash utility has been designed to support System BIOS flashing via a remote
|
||||
network boot using PXE. DOS Flash uses a small memory footprint that is compatible
|
||||
with the limited DOS memory available and the DOS extended environment that may exist while
|
||||
running Altiris eXpress. To see a more complete description of the network BIOS flashing
|
||||
utilities, view the <a href="DOS%20Flash/DOSFlash.txt"
|
||||
target="_blank"><u>DOSFlash.txt</u></a> file located in the DOS Flash folder.</p>
|
||||
|
||||
<h3 align=center style='text-align:center'><a href="DOS%20Flash" target="_blank"><u>View
|
||||
Contents of DOS Flash Folder</u></a></h3>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 align=center style='text-align:center'><a name=BB>BootBlock Emergency
|
||||
Recovery Mode</a></h2>
|
||||
|
||||
<p>In the event of a failed BIOS update (for example if power is lost while updating),
|
||||
the System BIOS may become corrupted. BootBlock Emergency Recovery Mode detects this condition and will automatically search the hard drive and any USB media sources (hard drive, flash drive, etc) for a compatible binary image.
|
||||
The original factory image will have a suitable BIOS binary for automatic recovery without user intervention. Otherwise, the binary (.bin) file in the <a href="DOS%20Flash" target="_blank"><u>DOS Flash folder</u></a>
|
||||
should be copied to the root (top level) of the desired storage device in a FAT or FAT32 partition, and the system powered on. Once the binary image is located, the BIOS will display a recovery screen and will start the recovery process. Do not power off the system until recovery is complete.</p>
|
||||
|
||||
<p>Aside from the root (top level) of a hard drive or USB device, there are two alternate paths that are searched for the recovery binary file. These can be used to configure for automatic recovery a system which has had the original hard drive image replaced or reinstalled with system software recovery media. The two valid paths for recovery other than root are "\Hewlett-Packard\BIOS\Current" and "\EFI\HP\BIOS\Current".</p>
|
||||
|
||||
<p>If the system has a BIOS Setup password, you may be required to use the Startup Menu / Utilities submenu to flash the BIOS manually after providing the password.
|
||||
Sometimes there are restrictions on which BIOS versions are allowed to be installed on a platform. If the BIOS that was on
|
||||
the system had restrictions, then only allowable BIOS versions may be used for recovery.</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<div class=MsoNormal align=center style='text-align:center'>
|
||||
|
||||
<hr size=2 width="95%" align=center>
|
||||
|
||||
</div>
|
||||
|
||||
<p align=center style='text-align:center'>Copyright (c) 2011-2016 HP Development Company, L.P. All Rights Reserved.<br>
|
||||
Product names mentioned herein may be trademarks and/or registered trademarks
|
||||
of their respective companies.</p>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Binary file not shown.
@@ -0,0 +1,167 @@
|
||||
=========================================================
|
||||
|
||||
DOSFLASH.EXE version 1.15.01
|
||||
|
||||
=========================================================
|
||||
|
||||
|
||||
The DOS Flash utility is designed to update the computer system firmware
|
||||
(BIOS) from a DOS, FreeDOS, or similar environment. Windows command line
|
||||
is not supported.
|
||||
|
||||
The DOS Flash utility consists of the executable file (DOSFlash.exe) and a
|
||||
driver file (FlshUefi.cpu) specific to updating the system BIOS. They must be
|
||||
present in the same directory. DOS Flash also supports updating the initial
|
||||
graphics display logo to a custom image.
|
||||
|
||||
|
||||
|
||||
BIOS VERSION UPDATE:
|
||||
____________________
|
||||
|
||||
DOS Flash requires a BIOS binary image file included in a BIOS SoftPaq
|
||||
release in order to update the System BIOS. See the DOS Flash folder for the
|
||||
correct files. Not all HP Desktop systems are compatible with this version of
|
||||
the DOS Flash utility. If the utility is run on a system that does not
|
||||
support it, an error message will say so. The BIOS SoftPaq release package
|
||||
for that system will include the correct DOS Flash tool (typically,
|
||||
Flashbin.exe and flsh.cpu).
|
||||
|
||||
DOS Flash can update a system BIOS without requiring the administrator to
|
||||
enter a Setup password if the unit has not already been assigned a Setup
|
||||
password. However if a Setup password is set on the target PC, then DOS Flash
|
||||
will require password verification before allowing a BIOS update, or the
|
||||
process will report an error. The Setup password must be provided in the
|
||||
command line when the DOS Flash utility is executed, using the /p option.
|
||||
See below for syntax description.
|
||||
|
||||
|
||||
|
||||
CUSTOM LOGO IMAGE UPDATE:
|
||||
_________________________
|
||||
|
||||
DOS Flash allows replacing the standard HP logo image with a custom image
|
||||
provided by the user. Valid image files are JPEG or uncompressed BMP (bitmap)
|
||||
images up to 1024 x 768 resolution. Also, the maximum file size differs from
|
||||
system to system, but will be between 22KB and 32KB. The command line switch
|
||||
"/I " followed by the image filename will write the custom logo to the BIOS.
|
||||
When using DOS Flash to change the logo, the System BIOS is not updated at the
|
||||
same time. The custom image can be deleted (restoring the standard HP logo)
|
||||
with the "/I delete" option.
|
||||
|
||||
|
||||
|
||||
COMMAND LINE SYNTAX:
|
||||
____________________
|
||||
|
||||
|
||||
UPDATE SYSTEM BIOS:
|
||||
|
||||
|
||||
dosflash [/p <password>] [/f flshuefi.cpu <BIOS family>]
|
||||
|
||||
|
||||
DOS Flash will search the current directory for the System BIOS binary. If
|
||||
more than one are present, the latest BIOS image file (highest version number)
|
||||
compatible with the target PC will be used.
|
||||
|
||||
The /f option is used when needing to suppress any user prompts, for instance
|
||||
when automating a mass deployment using Altiris. BIOS family is listed in BIOS
|
||||
Setup / System Information / System BIOS before the version number (e.g. K01),
|
||||
and is also the first part of the binary filename.
|
||||
|
||||
|
||||
UPDATE STARTUP IMAGE:
|
||||
|
||||
|
||||
dosflash /I {<imagefile> | delete}
|
||||
|
||||
|
||||
If the imagefile file size exceeds the maximum for the target PC, a File Too
|
||||
Large error is reported, along with the maximum file size supported for the
|
||||
system.
|
||||
|
||||
|
||||
|
||||
USE CASES:
|
||||
__________
|
||||
|
||||
|
||||
dosflash
|
||||
This will attempt to update the System BIOS. Assumes no BIOS Setup password
|
||||
is set.
|
||||
|
||||
|
||||
dosflash /p Admin123
|
||||
This will attempt to update the System BIOS using “Admin123” as the BIOS
|
||||
Setup password for authentication.
|
||||
|
||||
|
||||
dosflash /p Admin123 /I hplogo.jpg
|
||||
This will update the system startup logo using “hplogo.jpg” as the image,
|
||||
and uses “Admin123” to authenticate the BIOS Setup password.
|
||||
|
||||
|
||||
dosflash /Image custom.jpg
|
||||
This will update the system startup logo using “custom.jpg” as the image.
|
||||
This syntax implies that there is no BIOS Setup password set.
|
||||
|
||||
|
||||
dosflash /I delete
|
||||
This will delete a custom startup logo from the system. The default HP logo
|
||||
will be used after reboot. This syntax implies that there is no BIOS
|
||||
Setup password set.
|
||||
|
||||
|
||||
dosflash /I DELETE /P Admin123
|
||||
This will delete a custom startup logo from the system. The default HP logo
|
||||
will be used after reboot. Uses “Admin123” as the BIOS Setup password
|
||||
for authentication.
|
||||
|
||||
|
||||
dosflash /f flshuefi.cpu K01
|
||||
This will update the System BIOS with the binary in the current directory
|
||||
without pausing for user input.
|
||||
|
||||
|
||||
dosflash /I custom.jpg /p Admin123 /f flshuefi.cpu K01
|
||||
This will update the system startup logo using "custom.jpg" as the image,
|
||||
authenticating with a BIOS Setup password of "Admin123" and suppressing
|
||||
prompts.
|
||||
|
||||
|
||||
|
||||
ERROR LEVELS:
|
||||
_____________
|
||||
|
||||
0 - No errors
|
||||
|
||||
4 - Could not open input file
|
||||
|
||||
16 - Unsupported system type
|
||||
|
||||
44 - Could not open flshuefi.cpu
|
||||
|
||||
45 - All other errors: wrong password, file size too big, image dimensions
|
||||
too large
|
||||
|
||||
|
||||
CHANGE HISTORY:
|
||||
_______________
|
||||
|
||||
Version 1.15.01
|
||||
- Fixed slow DOSFLASH response with certain USB Drives
|
||||
|
||||
Version 1.15.00
|
||||
- Added Support for new ROM Families (i.e. K01)
|
||||
|
||||
Version 1.14.00
|
||||
- Initial version
|
||||
|
||||
|
||||
_____________________________________________________________________________
|
||||
|
||||
Copyright (c) 2011-2016 Hewlett-Packard Development Company, L.P.
|
||||
|
||||
Product names mentioned herein may be trademarks and/or registered trademarks
|
||||
of their respective companies.
|
||||
Binary file not shown.
@@ -0,0 +1,3 @@
|
||||
Filename: K01_0304.bin
|
||||
|
||||
MD5 : 35883c6755d1435a948b42caed2d05ab
|
||||
@@ -0,0 +1,30 @@
|
||||
|
||||
DOS Flash Utility
|
||||
=================
|
||||
|
||||
DOSFlash.exe - Use locally or with a Preboot eXecution Environment (PXE)
|
||||
management application (e.g. Altiris eXpress) to update or
|
||||
restore the System BIOS.
|
||||
|
||||
|
||||
NOTE: A BIOS update may be done using these utilities from a USB hard drive
|
||||
or a USB flash media device. Copy all the files in this folder to a DOS
|
||||
bootable medium. Make sure that the device you want to boot from is connected
|
||||
to the computer to be upgraded and power cycle the computer. When the system
|
||||
boots to the USB device, the BIOS update may then be performed.
|
||||
See DOSFlash.txt for syntax.
|
||||
|
||||
|
||||
Files included in this folder:
|
||||
|
||||
BIOS image binary file (ex: K01_0304.bin)
|
||||
DOSFlash.exe
|
||||
DOSFlash.txt
|
||||
FlshUefi.cpu
|
||||
README.TXT (this file)
|
||||
|
||||
Copyright (c) 2016 Hewlett-Packard Development Company, L.P.
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
Filename: K01_0304.bin
|
||||
|
||||
SHA-256 : 6ac49e910bf378331aea62f43e2eed3a
|
||||
9030d1f1f1a54b0f8748b8a26a25add4
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,58 @@
|
||||
HPQFlash.TXT
|
||||
|
||||
HPQFlash.exe is a utility which is designed to update the system BIOS through
|
||||
a Windows environment.
|
||||
|
||||
NOTES:
|
||||
1. [Path]\HPQFlash -? will display the available options for this utility.
|
||||
|
||||
2. If the system has a F10-Setup password enabled, then HPQFlash will prompt
|
||||
for the password to be entered before completing the flash process.
|
||||
|
||||
USAGE:
|
||||
|
||||
1. Close all other applications before launching HPQFlash.
|
||||
|
||||
2. On the Windows Task Bar select Start, then Run, and enter
|
||||
the following on the command line:
|
||||
[Path]\HPQFlash
|
||||
|
||||
3. HPQFlash will inform the user that a BIOS flash is about to occur.
|
||||
|
||||
4. The version of the BIOS image in the ROM.CAB file and the version of the
|
||||
current system BIOS are displayed. Once OK is selected the flash
|
||||
process begins.
|
||||
|
||||
5. Upon completion, the user is notified that the BIOS Flash was
|
||||
successful. Select Shutdown.
|
||||
|
||||
6. Turn the unit back on using the power button.
|
||||
|
||||
7. The system BIOS update is complete.
|
||||
|
||||
ADVANCED USAGE:
|
||||
|
||||
1. Close all other applications before launching HPQFlash.
|
||||
|
||||
2. On the Windows Task Bar select Start, then Run, and enter
|
||||
the following on the command line:
|
||||
[Path]\HPQFlash -f[Name].CAB
|
||||
|
||||
3. HPQFlash will inform the user that a BIOS Flash is about to occur.
|
||||
|
||||
4. The version of the BIOSimage in the [Name].cab file and the version of the
|
||||
current system BIOS are displayed. Once OK is selected the flash
|
||||
process begins.
|
||||
|
||||
5. Upon completion, the user is notified that the BIOS Flash was
|
||||
successful. Select Shutdown.
|
||||
|
||||
6. Turn the unit back on using the power button.
|
||||
|
||||
7. The system BIOS update is complete.
|
||||
|
||||
HPQFlash.exe version 4.40 Rev. A Pass 1
|
||||
|
||||
Copyright (c) 2010-2016 Hewlett-Packard Development Company, L.P.
|
||||
|
||||
|
||||
@@ -0,0 +1,69 @@
|
||||
HPQ Password Utility
|
||||
|
||||
HPQ Password Utility is an application which allows the user (typically a
|
||||
system administrator) to create an encrypted password file which can be used
|
||||
with with the /p option of the HPQFlash application. This option is usually
|
||||
used along with the /s option to perform a silent mode update of the system
|
||||
BIOS on HP computers which have a BIOS Setup password set.
|
||||
|
||||
|
||||
HOW TO RUN
|
||||
1. Run the HPQPswd.exe executable and enter the information requested:
|
||||
a. BIOS Setup password of target machines
|
||||
b. Location of encrypted password file to be created
|
||||
NOTE:
|
||||
- Please save the password file with a ".bin" extension.
|
||||
- This password file only works with hpqFlash application version 4.20 B5 and later.
|
||||
|
||||
|
||||
2. Click on OK.
|
||||
3. The entered password will be encrypted and stored in the specified location.
|
||||
|
||||
|
||||
CHANGE HISTORY
|
||||
|
||||
Version 3.0 B3, 4/11/2011
|
||||
- Added command line support
|
||||
|
||||
Version 3.0 A2, 5/13/2008
|
||||
- Rebuilt with "Use MFC in a Static Library" option to be able to run in non-English OS.
|
||||
|
||||
Version 2.0 C1, 10/04/06
|
||||
- Fixed Issue with saving bin file on Windows Vista OS
|
||||
|
||||
Version 2.0 B1, 07/27/05
|
||||
- Added Password Confirmation Edit Box Support
|
||||
|
||||
Version 2.0 A3, 04/26/05
|
||||
- Fixed issue where upper case alphabet letter Could not be entered
|
||||
in BIOS Password field to encrypt in the HPQ Password Utility.
|
||||
|
||||
Version 2.0 A2, 04/21/05
|
||||
- Fixed issue where in the HPQ Password Utility was not storing a 32 byte password
|
||||
in the bin file.
|
||||
|
||||
Version 2.0 A1, 04/07/05
|
||||
-Added Support to Change HPQ Password Utility to support case sensitive BIOS Setup Passwords.
|
||||
-The default installation directory is changed from c:\program files \ HPQ\ HPQ Password utility
|
||||
to c:\swsetup \ SPXXXXX.exe.
|
||||
|
||||
Version 1.0 B1, 02/06/03
|
||||
- Added changes to remove Compaq Bitmap from the UI.
|
||||
|
||||
Version 1.0 A3, 01/15/03
|
||||
- Added correct Version to the About page
|
||||
- The installation directory is changed from c:\program files \ Compaq \ Compaq password utility
|
||||
to c:\program files \ HPQ\ HPQ Password utility.
|
||||
|
||||
Version 1.0 A2, 7/15/02
|
||||
- Renamed utility to HPQPswd
|
||||
|
||||
Version 1.0 A1, 7/1/02
|
||||
- Original version
|
||||
|
||||
|
||||
Copyright (c) 2002-2016 Hewlett-Packard Company. All Rights Reserved.
|
||||
Compaq and the Compaq logo are trademarks of the Hewlett-Packard Company in the
|
||||
U.S. and other countries.
|
||||
All other product names mentioned herein may be trademarks of their respective
|
||||
companies.
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,33 @@
|
||||
HPQFlash and HPQ Password
|
||||
=========================
|
||||
|
||||
HPQFlash.exe - A utility to locally update or restore the system BIOS on
|
||||
individual PCs using the Microsoft Windows operating system.
|
||||
See HPQFlash.txt
|
||||
|
||||
HPQ Password Utility - A utility to create an encrypted password file which
|
||||
can be used with the /p option of the HPQFlash application.
|
||||
This option is typically used along with the /s option to
|
||||
perform a silent mode update of the system BIOS on HP systems
|
||||
which have a BIOS Setup password set.
|
||||
See HPQPswd.txt
|
||||
|
||||
The BIOS update process can also be done from a USB flash media device by
|
||||
copying the files from this folder to the USB drive and executing HPQFlash.exe
|
||||
from the device in Microsoft Windows.
|
||||
|
||||
|
||||
Files included in this folder:
|
||||
|
||||
HPQFlash.exe
|
||||
HPQFlash.txt
|
||||
HPQPswd.exe
|
||||
HPQPswd.txt
|
||||
Readme.txt (this file)
|
||||
ROM.CAB (BIOS image file)
|
||||
|
||||
|
||||
Copyright (c) 2010-2016 Hewlett-Packard Development Company, L.P.
|
||||
|
||||
Product names mentioned herein may be trademarks and/or registered trademarks
|
||||
of their respective companies.
|
||||
Binary file not shown.
@@ -0,0 +1,139 @@
|
||||
Revision History
|
||||
K01 ROM Family
|
||||
|
||||
|
||||
Models Supported: HP Compaq 8300 Elite Convertible Mini Tower (CMT) Desktop PC
|
||||
HP Compaq 8300 Elite All in One (AiO) Desktop PC
|
||||
HP Compaq 8300 Elite Small Form Factor Desktop PC
|
||||
HP Compaq 8300 Elite Ultra-Slim Desktop (USDT) PC
|
||||
HP Compaq 6300 Pro All in One (AiO) Desktop PC
|
||||
HP Compaq 6300 Pro Small Form Factor Desktop PC
|
||||
|
||||
Version 3.04
|
||||
*** ALERT *** ALERT *** ALERT ***
|
||||
|
||||
If upgrading from a v02.xx to this version, v03.xx, the user MUST FIRST FLASH TO v02.99.
|
||||
If not, upgrading to v03.xx will be rejected.
|
||||
|
||||
- Added Security Update.
|
||||
|
||||
PCR 0 : 187cccdffaf598b5bb71a10533415f7c6f42320d
|
||||
|
||||
|
||||
Version 3.03
|
||||
*** ALERT *** ALERT *** ALERT ***
|
||||
|
||||
If upgrading from a v02.xx to this version, v03.xx, the user MUST FIRST FLASH TO v02.99.
|
||||
If not, upgrading to v03.xx will be rejected.
|
||||
|
||||
*** ALERT *** ALERT *** ALERT ***
|
||||
|
||||
- Fixed F10 "BIOS Power On" issue where TIME was not getting saved unless cursor (focus)
|
||||
remained on TIME setting in F10 menu.
|
||||
|
||||
PCR 0 : 54b3e3ee5c61c085aab7905b395aec700576d6f3
|
||||
|
||||
Version 3.02
|
||||
*** ALERT *** ALERT *** ALERT ***
|
||||
|
||||
If upgrading from a v02.xx to this version, v03.xx, the user MUST FIRST FLASH TO v02.99.
|
||||
If not, upgrading to v03.xx will be rejected.
|
||||
|
||||
*** ALERT *** ALERT *** ALERT ***
|
||||
|
||||
- Implemented Roll Back prevention.
|
||||
- Added improved Security Updates.
|
||||
|
||||
*** ALERT ***
|
||||
|
||||
This release improved Security Updates implementation. HP strongly recommends promptly
|
||||
transitioning to this BIOS version. Due to security changes, after this BIOS
|
||||
update has been installed, previous BIOS versions cannot be reinstalled.
|
||||
|
||||
- Fixed issue where TPM was enabled without Setup Password enabled.
|
||||
– Fixed issue where AMT Enable was getting grayed in F10 when not properly provisioned.
|
||||
- Fixed Wake On LAN (usually wake by magic packet) to Disable (BIOS) Fast Boot so Remote Wakeup Boot Source will execute.
|
||||
- Fixed BiosConfigUtility in setting Legacy and UEFI Boot Sources.
|
||||
- Fixed the Master Boot Record Security in F10 Menu and to allow MBRBackup to be updated.
|
||||
- Updated the BIOS Power On support.
|
||||
- Updated USB support.
|
||||
|
||||
PCR 0 : d14e9baf581e422ab48ff65cb9c2adb185ba201b
|
||||
|
||||
Version 2.99
|
||||
- This allows the customer to flash to the next Major Version v3.xx.
|
||||
|
||||
*** ALERT ***
|
||||
This BIOS is to be used to allow the customer to flash to the next
|
||||
Major Version of the BIOS, v3.xx. The customer cannot flash from
|
||||
previous versions, v2.98 or earlier to v3.xx, without first flashing
|
||||
v2.99 onto the system. If the customer needs to flash back from v3.xx
|
||||
to an earlier v2.xx, this can occur. However, to flash to v3.xx,
|
||||
v2.99 MUST be flashed first, as previously stated.
|
||||
|
||||
PCR 0 : 8ce2f75bfaf697897c87814c178f538d76fea107
|
||||
|
||||
Version 2.98
|
||||
- Flash Back Restrictions to previous BIOS versions.
|
||||
|
||||
*** ALERT ***
|
||||
This BIOS includes critical updates. Once the system is updated to this
|
||||
version, rollback to previous versions is restricted. This restriction
|
||||
also applies to BIOS recovery files.
|
||||
|
||||
- Added UEFI and UEFI Variables security update.
|
||||
- Fixed for AMT Watchdog Timers when disabled in F-10 the timers are no longer active.
|
||||
- Fixed the Boot Order status and sequence listed in CPQSetup.txt to be the same as in
|
||||
F10 Menu, Setup.
|
||||
- Fixed the possible TXT/TPM issue in F10 Menu where both TXT and TPM options could be
|
||||
greyed-out in the F10 Setup.
|
||||
- Fixed intermittent S3 hang during the resume cycle.
|
||||
- Fixed the Boot Order displaying incorrectly in F10=Setup when the Network Controller
|
||||
is Disabled.
|
||||
- Fixed the TPM1.2 device not being accessible in Device Manager and TPM.MSC after
|
||||
resetting the TPM.
|
||||
|
||||
PCR 0 : 271d2681082bd604e3ae1e0770996c757d143136
|
||||
|
||||
Version 2.85
|
||||
- Fixed an issue with OS activation when downgrading to Windows 7 using HP System Software
|
||||
Restore Disks.
|
||||
- Fixed an issue where the Advanced Diagnostics could report 'not supported' for a few
|
||||
subtests.
|
||||
|
||||
Version 2.83
|
||||
- Initial BIOS version for Windows 8 systems. BIOS version numbers less than 2.80 do not
|
||||
include support for Windows 8 features.
|
||||
|
||||
* NOTE: Downgrading the BIOS to versions before v2.83 is not allowed if Secure Boot is enabled.
|
||||
Windows 8 new BIOS features such as Legacy Support disable, Secure Boot and Fast Boot
|
||||
are not supported on lower numbered BIOS versions. *
|
||||
|
||||
Version 2.56
|
||||
- Added support for Stringent Password option (Windows 7 BIOS only).
|
||||
- Added a new option ("Disable USB") to the F10 Setup / Storage Options / Removable Media Boot
|
||||
setting, which prevents booting from USB devices regardless of the boot order settings
|
||||
(Windows 7 BIOS only).
|
||||
- Fixed an issue with the F10 Setup user interface for Boot Order, where making more than one change
|
||||
at a time could cause other unexpected boot order changes.
|
||||
- Corrected the System Management BIOS type 1 data field for 'Wakeup Type' to properly display
|
||||
'Remote' when the system is powered on by a Wake-on-LAN event.
|
||||
|
||||
Version 2.53
|
||||
- Adds support for models without microphone and speakers.
|
||||
- Fixes an issue with button retasking on AIO systems.
|
||||
- Fixes REPSETUP support for disabling Front USB ports on AIO systems.
|
||||
|
||||
Version 2.51
|
||||
- Initial BIOS version for All-in-One (AIO) systems. Earlier BIOS versions are not supported for AIO.
|
||||
- Added non-English keyboard mapping for F10 Setup System ID strings (Asset Tag and Ownership Tag).
|
||||
- Fixed an issue where applying defaults with a setup password present incorrectly sets the
|
||||
integrated graphics to enabled, when the primary graphics is a PCI Express card. The normal setting
|
||||
is disabled, except for ultra-slim form factors.
|
||||
- Fixed an issue with AMT console connections to F10 Setup not properly initializing admin mode.
|
||||
- Corrected F10 Setup restriction on disabling features required for the Trusted Execution Technology
|
||||
(TXT) when the feature is enabled.
|
||||
- Fixed POST support for USB keyboards when USB port security locks all ports.
|
||||
|
||||
Version 2.05
|
||||
- Initial system BIOS release
|
||||
@@ -0,0 +1,29 @@
|
||||
HOW TO USE:
|
||||
|
||||
This SoftPaq contains utilities that can be used to restore or update the
|
||||
System BIOS on HP business desktop models.
|
||||
|
||||
Several methods for changing the BIOS version on your computer may be chosen.
|
||||
Included are the various ways to perform the update. Each folder provided has
|
||||
self-contained files to perform the BIOS update and any unwanted folders may
|
||||
be deleted.
|
||||
|
||||
Utilities and appropriate BIOS images are contained in each of the directories as
|
||||
follows:
|
||||
|
||||
DOS Flash - A DOS utility that can be used locally or with a Preboot eXecution
|
||||
Environment (PXE) management application to update or restore the System BIOS.
|
||||
|
||||
HPQFlash - A utility to locally update or restore the System BIOS on individual PCs
|
||||
in the Microsoft Windows operating system.
|
||||
|
||||
|
||||
NOTE: The Business Desktops BIOS Utilities SoftPaq is also available on the web.
|
||||
It contains additional utilities to support Hewlett-Packard Company products. The
|
||||
BIOS Utilities SoftPaq will be shown when searching for software support of products
|
||||
in the category BIOS and Firmware.
|
||||
|
||||
Copyright (c) 2016 Hewlett-Packard Development Company, L.P.
|
||||
|
||||
Product names mentioned herein may be trademarks and/or registered trademarks
|
||||
of their respective companies.
|
||||
Binary file not shown.
@@ -0,0 +1,6 @@
|
||||
Start Extracting
|
||||
|
||||
|
||||
Finished Extracting
|
||||
No module compression used
|
||||
Not Phoenix/Dell/Insyde/EFI BIOS
|
||||
@@ -0,0 +1,117 @@
|
||||
[CVA File Information]
|
||||
CVATimeStamp=20161011T043452
|
||||
CVASyntaxVersion=2.0A1
|
||||
|
||||
[Software Title]
|
||||
US=ROM Firmware for 8300 Elite and 6300 Pro Business PCs (K01)
|
||||
|
||||
[US.Software Description]
|
||||
HP Business Desktop System BIOS Package for models with an K01 BIOS.
|
||||
|
||||
[General]
|
||||
PN=000000-000
|
||||
Version=03.04
|
||||
Revision=A
|
||||
Pass=1
|
||||
Type=ROMPAQ
|
||||
Category=BIOS
|
||||
TargetPartition=MFG DIAGS
|
||||
SystemMustBeRebooted=1
|
||||
VendorName=HP
|
||||
VendorVersion=
|
||||
|
||||
[SupportedLanguages]
|
||||
Languages=GLOBAL
|
||||
Countries=GBL
|
||||
|
||||
[ProfessionalInnovations]
|
||||
HPPI=NO
|
||||
LearnMore=
|
||||
|
||||
[DetailFileInformation]
|
||||
K01.CAB=ROM,K01,10,05,20,16
|
||||
|
||||
[Softpaq]
|
||||
SoftpaqNumber=SP77888
|
||||
SupersededSoftpaqNumber=SP77361
|
||||
SoftPaqMD5=
|
||||
|
||||
[Operating Systems]
|
||||
W732EN=OEM
|
||||
W732HB=OEM
|
||||
W732HP=OEM
|
||||
W732PR=OEM
|
||||
W732SE=OEM
|
||||
W732UL=OEM
|
||||
W764EN=OEM
|
||||
W764HP=OEM
|
||||
W764PR=OEM
|
||||
W764UL=OEM
|
||||
W8.132=OEM
|
||||
W8.164=OEM
|
||||
W832=OEM
|
||||
W864=OEM
|
||||
WINXP32P=OEM
|
||||
WV32EN=OEM
|
||||
WV32HB=OEM
|
||||
WV32HP=OEM
|
||||
WV64EN=OEM
|
||||
WV64HP=OEM
|
||||
WT64=OEM
|
||||
|
||||
[System Information]
|
||||
SysId00=0x339A
|
||||
SysName00=HP COMPAQ PRO 6300 MT BUSINESS
|
||||
SysId01=0x339A
|
||||
SysName01=HP COMPAQ PRO 6380 MT BUSINESS
|
||||
SysId02=0x339A
|
||||
SysName02=HP COMPAQ PRO 6300 SFF BUSINESS
|
||||
SysId03=0x339B
|
||||
SysName03=HP COMPAQ PRO 6300 BUSINESS
|
||||
SysId04=0x3396
|
||||
SysName04=HP COMPAQ ELITE 8300 CMT BUSINESS
|
||||
SysId05=0x3396
|
||||
SysName05=HP COMPAQ ELITE 8380 CMT BUSINESS
|
||||
SysId06=0x3397
|
||||
SysName06=HP COMPAQ ELITE 8300 MT BUSINESS
|
||||
SysId07=0x3397
|
||||
SysName07=HP COMPAQ ELITE 8380 MT BUSINESS
|
||||
SysId08=0x3397
|
||||
SysName08=HP COMPAQ ELITE 8300 SFF BUSINESS
|
||||
SysId09=0x3398
|
||||
SysName09=HP COMPAQ ELITE 8300 USDT BUSINESS
|
||||
SysId10=0x3399
|
||||
SysName10=HP COMPAQ ELITE 8300 BUSINESS
|
||||
SysId11=0x3399
|
||||
SysName11=HP COMPAQ ELITE 8300 TOUCH BUSINESS
|
||||
|
||||
[US.Enhancements]
|
||||
- Added Security Update.
|
||||
|
||||
[Install Execution]
|
||||
Install=
|
||||
SilentInstall="hpqflash\hpqflash.exe" -s
|
||||
|
||||
[ReturnCode]
|
||||
3010:SUCCESS:REBOOT=A restart is required to complete the install.
|
||||
1602:FAILURE:NOREBOOT=The install cannot complete due to a dependency.
|
||||
|
||||
[Security]
|
||||
FullME_PCR00=187cccdffaf598b5bb71a10533415f7c6f42320d
|
||||
|
||||
[Private]
|
||||
Private_SSMCompliant=1
|
||||
DPB_Compliant=0
|
||||
Private_ReleaseType=Critical
|
||||
Private_ProductType = Desktops, Desktops, Desktops, Desktops, Desktops, Desktops, Desktops, Desktops, Desktops, Desktops, Desktops, Desktops
|
||||
|
||||
[Private_SoftpaqInstall]
|
||||
|
||||
1. Download the file by clicking the "Download" or "Obtain Software" button and saving the file to a folder on your hard drive (make a note of the folder where the downloaded file is saved).
|
||||
|
||||
2. Double-click the downloaded file and follow the on-screen instructions (Windows Only).
|
||||
|
||||
[CVAToolDocumentStamp]
|
||||
Generated by Release CVA Tool Version 1.0 using Syntax Version 2.0 A1 on 10/11/2016
|
||||
Copyright (c) 2016 HP Development Company, L.P.
|
||||
|
||||
@@ -0,0 +1,110 @@
|
||||
TITLE: ROM Firmware for 8300 Elite and 6300 Pro Business PCs (K01)
|
||||
VERSION: 03.04
|
||||
DESCRIPTION:
|
||||
This package provides the HP Business Desktop System BIOS Package for supported models running a supported operating system.
|
||||
|
||||
PURPOSE: Critical
|
||||
SoftPaq NUMBER: SP77888
|
||||
SUPERSEDES: SP77361
|
||||
EFFECTIVE DATE: 11/7/2016
|
||||
CATEGORY: BIOS
|
||||
SSM SUPPORTED: Yes
|
||||
|
||||
PRODUCT TYPE(S):
|
||||
Desktops
|
||||
|
||||
HARDWARE PRODUCT MODEL(S):
|
||||
HP Compaq Pro 6300 MT Business PC
|
||||
HP Compaq Pro 6380 MT Business PC
|
||||
HP Compaq Pro 6300 SFF Business PC
|
||||
HP Compaq Pro 6300 All-in-One Business PC
|
||||
HP Compaq Elite 8300 CMT Business PC
|
||||
HP Compaq Elite 8380 CMT Business PC
|
||||
HP Compaq Elite 8300 MT Business PC
|
||||
HP Compaq Elite 8380 MT Business PC
|
||||
HP Compaq Elite 8300 SFF Business PC
|
||||
HP Compaq Elite 8300 USDT Business PC
|
||||
HP Compaq Elite 8300 All-in-One Business PC
|
||||
HP Compaq Elite 8300 Touch All-in-One Business PC
|
||||
|
||||
OPERATING SYSTEM(S):
|
||||
Microsoft Windows 7 Enterprise 32 Edition
|
||||
Microsoft Windows 7 Home Basic 32 Edition
|
||||
Microsoft Windows 7 Home Premium 32 Edition
|
||||
Microsoft Windows 7 Professional 32 Edition
|
||||
Microsoft Windows 7 Starter 32 Edition
|
||||
Microsoft Windows 7 Ultimate 32 Edition
|
||||
Microsoft Windows 7 Enterprise 64 Edition
|
||||
Microsoft Windows 7 Home Premium 64 Edition
|
||||
Microsoft Windows 7 Professional 64 Edition
|
||||
Microsoft Windows 7 Ultimate 64 Edition
|
||||
Microsoft Windows 8.1 32 Bit
|
||||
Microsoft Windows 8.1 64 Bit
|
||||
Microsoft Windows 8 32 Edition
|
||||
Microsoft Windows 8 64 Edition
|
||||
Microsoft Windows XP Professional
|
||||
Microsoft Windows Vista Enterprise 32 Edition
|
||||
Microsoft Windows Vista Home Basic 32 Edition
|
||||
Microsoft Windows Vista Home Premium 32 Edition
|
||||
Microsoft Windows Vista Enterprise 64 Edition
|
||||
Microsoft Windows Vista Home Premium 64 Edition
|
||||
Microsoft Windows 10 64
|
||||
|
||||
LANGUAGE(S):
|
||||
English (US)
|
||||
Arabic
|
||||
Bulgarian
|
||||
Brazilian Portuguese
|
||||
Chinese (Prc. Simplified)
|
||||
Czech
|
||||
Danish
|
||||
Estonian
|
||||
Finnish
|
||||
French
|
||||
Greek
|
||||
German
|
||||
Croatian
|
||||
Hungarian
|
||||
Hebrew
|
||||
Italian
|
||||
Japanese
|
||||
Korean
|
||||
Kazakh
|
||||
Lithuanian
|
||||
Latvian
|
||||
Dutch
|
||||
Norwegian
|
||||
Polish
|
||||
Portuguese
|
||||
Romanian
|
||||
Russian
|
||||
Swedish
|
||||
Slovakian
|
||||
Slovenian
|
||||
Spanish
|
||||
Serbian
|
||||
Thai
|
||||
Turkish
|
||||
Taiwan Chinese (Traditional)
|
||||
Hong Kong
|
||||
APJ
|
||||
Americas
|
||||
EMEA1
|
||||
EMEA2
|
||||
EMEA3
|
||||
English (UK)
|
||||
Bahasa (Indonesia)
|
||||
Latin America
|
||||
EMEA1
|
||||
EMEA1
|
||||
|
||||
ENHANCEMENTS:
|
||||
- Added Security Update.
|
||||
|
||||
HOW TO USE:
|
||||
1. Download the file by clicking the "Download" or "Obtain Software" button and saving the file to a folder on your hard drive (make a note of the folder where the downloaded file is saved).
|
||||
|
||||
2. Double-click the downloaded file and follow the on-screen instructions (Windows Only).
|
||||
|
||||
Copyright (c) 2016 HP Development Company, L.P.
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
PLEASE READ CAREFULLY: THE USE OF SOFTWARE AVAILABLE AT THIS SITE IS SUBJECT TO THE TERMS AND CONDITIONS THAT FOLLOW. IF YOU AGREE TO THESE TERMS, PLEASE CHOOSE THE "I ACCEPT" OPTION LOCATED ADJACENT TO THE SCREEN WHERE THIS AGREEMENT IS DISPLAYED. IF YOU DO NOT AGREE TO THESE LICENSE TERMS, PLEASE CHOOSE THE "I DO NOT ACCEPT" OPTION AND DO NOT DOWNLOAD ANY SOFTWARE FROM THIS SITE.
|
||||
End-User License Agreement
|
||||
READ CAREFULLY BEFORE USING THIS EQUIPMENT.
|
||||
This End-User license Agreement ("EULA") is a legal agreement between (a) you (either an individual or a single entity) and (b) HP Inc. ("HP") that governs your use of any Software Product, installed on or made available by HP for use with your HP product ("HP Product"), that is not otherwise subject to a separate license agreement between you and HP or its suppliers. Other software may contain a EULA in its online documentation. The term "Software Product" means computer software and may include associated media, printed materials and "online" or electronic documentation. An amendment or addendum to this EULA may accompany the HP Product.
|
||||
RIGHTS IN THE SOFTWARE PRODUCT ARE OFFERED ONLY ON THE CONDITION THAT YOU AGREE TO ALL TERMS AND CONDITIONS OF THIS EULA. BY INSTALLING, COPYING, DOWNLOADING, OR OTHERWISE USING THE SOFTWARE PRODUCT, YOU AGREE TO BE BOUND BY THE TERMS OF THIS EULA. IF YOU DO NOT ACCEPT THESE LICENSE TERMS, YOUR SOLE REMEDY IS TO RETURN THE ENTIRE UNUSED PRODUCT (HARDWARE AND SOFTWARE) WITHIN 14 DAYS FOR A REFUND SUBJECT TO THE REFUND POLICY OF YOUR PLACE OF PURCHASE.
|
||||
1. GRANT OF LICENSE. HP grants you the following rights provided you comply with all terms and conditions of this EULA:
|
||||
a. Use. You may use the Software Product on a single computer ("Your Computer"). If the Software Product is provided to you via the internet and was originally licensed for use on more than one computer, you may install and use the Software Product only on those computers. You may not separate component parts of the Software Product for use on more than one computer. You do not have the right to distribute the Software Product. You may load the Software Product into Your Computer's temporary memory (RAM) for purposes of using the Software Product.
|
||||
b. Storage. You may copy the Software Product into the local memory or storage device of the HP Product.
|
||||
c. Copying. You may make archival or back-up copies of the Software Product, provided the copy contains all of the original Software Product's proprietary notices and that it is used only for back-up purposes.
|
||||
d. Reservation of Rights. HP and its suppliers reserve all rights not expressly granted to you in this EULA.
|
||||
e. Freeware. Notwithstanding the terms and conditions of this EULA, all or any portion of the Software Product which constitutes non-proprietary HP software or software provided under public license by third parties ("Freeware"), is licensed to you subject to the terms and conditions of the software license agreement accompanying such Freeware whether in the form of a discrete agreement, shrink wrap license or electronic license terms accepted at time of download. Use of the Freeware by you shall be governed entirely by the terms and conditions of such license.
|
||||
f. Recovery Solution. Any software recovery solution provided with/for your HP Product, whether in the form of a hard disk drive-based solution, an external media-based recovery solution (e.g. floppy disk, CD or DVD) or an equivalent solution delivered in any other form, may only be used for restoring the hard disk of the HP Product with/for which the recovery solution was originally purchased. The use of any Microsoft operating system software contained in such recovery solution shall be governed by the Microsoft License Agreement.
|
||||
2. UPGRADES. To use a Software Product identified as an upgrade, you must first be licensed for the original Software Product identified by HP as eligible for the upgrade. After upgrading, you may no longer use the original Software Product that formed the basis for your upgrade eligibility. By using the Software Product, you also agree that HP may automatically access your HP Product when connected to the internet to check the version or status of certain Software Products and may automatically download and install upgrades or updates to such Software Products on to your HP Product to provide new versions or updates required to maintain the functionality, performance, or security of the HP Software and your HP Product and facilitate the provision of support or other services provided to you. In certain cases, and depending on the type of upgrade or update, notifications will be provided to you (via pop-up or other means), which may require you to initiate the upgrade or update.
|
||||
3. ADDITIONAL SOFTWARE. This EULA applies to updates or supplements to the original Software Product provided by HP unless HP provides other terms along with the update or supplement. In case of a conflict between such terms, the other terms will prevail.
|
||||
4. TRANSFER.
|
||||
a. Third Party. The initial user of the Software Product may make a one-time transfer of the Software Product to another end user. Any transfer must include all component parts, media, printed materials, this EULA, and if applicable, the Certificate of Authenticity. The transfer may not be an indirect transfer, such as a consignment. Prior to the transfer, the end user receiving the transferred product must agree to all the EULA terms. Upon transfer of the Software Product, your license is automatically terminated.
|
||||
b. Restrictions. You may not rent, lease or lend the Software Product or use the Software Product for commercial timesharing or bureau use. You may not sublicense, assign or transfer the license or Software Product except as expressly provided in this EULA.
|
||||
5. PROPRIETARY RIGHTS. All intellectual property rights in the Software Product and user documentation are owned by HP or its suppliers and are protected by law, including but not limited to United States copyright, trade secret, and trademark law, as well as other applicable laws and international treaty provisions. You shall not remove any product identification, copyright notices or proprietary restrictions from the Software Product.
|
||||
6. LIMITATION ON REVERSE ENGINEERING. You may not reverse engineer, decompile, or disassemble the Software Product, except and only to the extent that the right to do so is mandated under applicable law notwithstanding this limitation or it is expressly provided for in this EULA.
|
||||
7. TERM. This EULA is effective unless terminated or rejected. This EULA will also terminate upon conditions set forth elsewhere in this EULA or if you fail to comply with any term or condition of this EULA.
|
||||
8. CONSENT TO COLLECTION/USE OF DATA.
|
||||
a. HP will use cookies and other web technology tools to collect anonymous technical information related to HP Software and your HP Product. This data will be used to provide the upgrades and related support or other services described in Section 2. HP will also collect personal information including your Internet Protocol address or other unique identifier information associated with your HP Product and data provided by you on registration of your HP Product. As well as providing the upgrades and related support or other services, this data will be used for sending marketing communications to you (in each case with your express consent where required by applicable law).
|
||||
To the extent permitted by applicable law, by accepting these terms and conditions you consent to the collection and use of anonymous and personal data by HP, its subsidiaries, and affiliates as described in this EULA and as further described in HP’s privacy policy http://www8.hp.com/us/en/privacy/privacy.html?jumpid=reg_r1002_usen_c-001_title_r0001
|
||||
b. Collection/Use by Third Parties. Certain software programs included in your HP Product are provided and separately licensed to you by third party providers ("Third Party Software"). Third Party Software may be installed and operational on your HP Product even if you choose not to activate/purchase such software. Third Party Software may collect and transmit technical information about your system (i.e., IP address, unique device identifier, software version installed, etc.) and other system data. This information is used by the third party to identify technical system attributes and ensure that the most current version of the software has been installed on your system. If you do not want the Third Party Software to collect this technical information or automatically send you version updates, you should uninstall the software prior to connecting to the Internet.
|
||||
9. DISCLAIMER OF WARRANTIES. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, HP AND ITS SUPPLIERS PROVIDE THE SOFTWARE PRODUCT "AS IS" AND WITH ALL FAULTS, AND HEREBY DISCLAIM ALL OTHER WARRANTIES, GUARANTEES, AND CONDITIONS, EITHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF TITLE AND NON-INFRINGEMENT, ANY IMPLIED WARRANTIES, DUTIES, GUARANTEES, OR CONDITIONS OF MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR PURPOSE, AND OF LACK OF VIRUSES ALL WITH REGARD TO THE SOFTWARE PRODUCT. Some states/jurisdictions do not allow exclusion of implied warranties or limitations on the duration of implied warranties, so the above disclaimer may not apply to you in its entirety.
|
||||
IN AUSTRALIA AND NEW ZEALAND, THE SOFTWARE COMES WITH GUARANTEES THAT CANNOT BE EXCLUDED UNDER AUSTRALIAN AND NEW ZEALAND CONSUMER LAWS. AUSTRALIAN CONSUMERS ARE ENTITLED TO A REPLACEMENT OR A REFUND FOR A MAJOR FAILURE AND COMPENSATION FOR OTHER REASONABLY FORESEEABLE LOSS OR DAMAGE. AUSTRALIAN CONSUMERS ARE ALSO ENTITLED TO HAVE THE SOFTWARE REPAIRED OR REPLACED IF IT FAILS TO BE OF ACCEPTABLE QUALITY AND THE FAILURE DOES NOT AMOUNT TO A MAJOR FAILURE. NEW ZEALAND CONSUMERS WHO ARE PURCHASING GOODS FOR PERSONAL, DOMESTIC OR HOUSEHOLD USE OR CONSUMPTION AND NOT FOR THE PURPOSE OF A BUSINESS (“NEW ZEALAND CONSUMERS”) ARE ENTITLED TO REPAIR, REPLACEMENT OR REFUND FOR A FAILURE AND COMPENSATION FOR OTHER REASONABLY FORESEEABLE LOSS OR DAMAGE.
|
||||
10. LIMITATION OF LIABILITY. Subject to local law, notwithstanding any damages that you might incur, the entire liability of HP and any of its suppliers under any provision of this EULA and your exclusive remedy for all of the foregoing shall be limited to the greater of the amount actually paid by you separately for the Software Product or U.S. $5.00. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL HP OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS OR CONFIDENTIAL OR OTHER INFORMATION, FOR BUSINESS INTERRUPTION, FOR PERSONAL INJURY, FOR LOSS OF PRIVACY ARISING OUT OF OR IN ANY WAY RELATED TO THE USE OF OR INABILITY TO USE THE SOFTWARE PRODUCT, OR OTHERWISE IN CONNECTION WITH ANY PROVISION OF THIS EULA, EVEN IF HP OR ANY SUPPLIER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND EVEN IF THE REMEDY FAILS OF ITS ESSENTIAL PURPOSE. Some states/jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so the above limitation or exclusion may not apply to you.
|
||||
11. U.S. GOVERNMENT CUSTOMERS. Consistent with FAR 12.211 and 12.212, Commercial Computer Software, Computer Software Documentation, and Technical Data for Commercial Items are licensed to the U.S. Government under HP's standard commercial license.
|
||||
12. COMPLIANCE WITH EXPORT LAWS. You shall comply with all laws and regulations of the United States and other countries ("Export Laws") to assure that the Software Product is not (1) exported, directly or indirectly, in violation of Export Laws, or (2) used for any purpose prohibited by Export Laws, including, without limitation, nuclear, chemical, or biological weapons proliferation.
|
||||
13. CAPACITY AND AUTHORITY TO CONTRACT. You represent that you are of the legal age of majority in your state of residence and, if applicable, you are duly authorized by your employer to enter into this contract.
|
||||
14. APPLICABLE LAW. This EULA is governed by the laws of the country in which the equipment was purchased.
|
||||
15. ENTIRE AGREEMENT. This EULA (including any addendum or amendment to this EULA which is included with the HP Product) is the entire agreement between you and HP relating to the Software Product and it supersedes all prior or contemporaneous oral or written communications, proposals and representations with respect to the Software Product or any other subject matter covered by this EULA. To the extent the terms of any HP policies or programs for support services conflict with the terms of this EULA, the terms of this EULA shall control.
|
||||
|
||||
|
||||
© Copyright HP Development Company, L.P.
|
||||
The information contained herein is subject to change without notice. All other product names mentioned herein may be trademarks of their respective companies. To the extent permitted by applicable law, the only warranties for HP products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. To the extent permitted by applicable law, HP shall not be liable for technical or editorial errors or omissions contained herein.
|
||||
First Edition: November 2015
|
||||
826659-001
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,6 @@
|
||||
@echo on
|
||||
IF EXIST "%programfiles(x86)%" (
|
||||
wflash2x64.exe imageM1U.rom /bb /rsmb %*
|
||||
) ELSE (
|
||||
wflash2.exe imageM1U.rom /bb /rsmb %*
|
||||
)
|
||||
@@ -0,0 +1,2 @@
|
||||
@echo off
|
||||
wflash2x64.exe imageM1U.rom /bb /rsmb %*
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,6 @@
|
||||
@echo on
|
||||
IF EXIST "%programfiles(x86)%" (
|
||||
wflash2x64.exe imageM1U.ROM /bb /rsmb /quiet /sccm %*
|
||||
) ELSE (
|
||||
wflash2.exe imageM1U.ROM /bb /rsmb /quiet /sccm %*
|
||||
)
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,144 @@
|
||||
|
||||
BIOS Changes History
|
||||
|
||||
|
||||
General Information:
|
||||
|
||||
M1UJ9xxUSA is Flash CD ROM image.
|
||||
M1UJTxxUSA is Flash in UEFI Shell zip package.
|
||||
M1UJYxxUSA is Flash in Windows utility.
|
||||
NOTE: All changes carry forward. That is, if a change is added in 01,it is also in 02, 03 etc.
|
||||
|
||||
This file will be updated from the beginning with first Production BIOS release
|
||||
CHANGES for M1UKT50A
|
||||
- Enhancement to address security vulnerability.
|
||||
- Enhance NVMe SSD detection.
|
||||
|
||||
CHANGES for M1UKT4FA
|
||||
- Enhancement to address security vulnerability.
|
||||
- Update UEFI DIAG to 4.11.
|
||||
|
||||
CHANGES for M1UKT4EA
|
||||
- Fix some TIO multi display issue for M920x.
|
||||
- Enhancement to address security vulnerability.
|
||||
- Update Setup layout.
|
||||
|
||||
CHANGES for M1UKT4BA
|
||||
- Enhancement to address security vulnerability.
|
||||
- Update CPU Microcode.
|
||||
|
||||
CHANGES for M1UKT4AA
|
||||
- Enhancement to address security vulnerability.
|
||||
- Enhance BIOS SETUP support.
|
||||
|
||||
CHANGES for M1UKT47A
|
||||
- Enhancement to address security vulnerability.
|
||||
- Enhance BIOS SETUP support.
|
||||
|
||||
CHANGES for M1UKT45A
|
||||
- Enhance Smart USB Protection support.
|
||||
- Prevents a hang in POST.
|
||||
- Fixes the IPv4/IPv6 repeating "v" messaging in F12 menu.
|
||||
- Prevents flashing to BIOS levels prior to version 44A.
|
||||
|
||||
CHANGES for M1UKT43A
|
||||
- IPV4 and IPV6 boot options improvement to fix POST hangs.
|
||||
- Update UEFI DIAG to 4.08.03.
|
||||
|
||||
CHANGES for M1UKT42A
|
||||
- Enhance WMI support.
|
||||
- Update UEFI DIAG to 4.08.
|
||||
|
||||
CHANGES for M1UKT40A
|
||||
- Enhance Intel(R) RST with Intel(R) Optane support.
|
||||
- Enhance WMI support.
|
||||
- Update Intel(R) RST Pre-OS to 17.3.0.4019.
|
||||
|
||||
CHANGES for M1UKT39A
|
||||
- [Important] Update includes security fixes
|
||||
- Enhance Intel(R) Manageability feature support.
|
||||
- Enhance Bootblock Recovery support.
|
||||
|
||||
CHANGES for M1UKT37A
|
||||
- Enhance Bootblock Recovery support.
|
||||
- Enhance TIO support.
|
||||
- Fix MEBx related issue.
|
||||
|
||||
CHANGES for M1UKT35A
|
||||
- Update CPU Microcode.
|
||||
- Fix some ME issues.
|
||||
|
||||
CHANGES for M1UKT33A
|
||||
- Add 8 Core CPU support.
|
||||
- Add new CPU mircocode M22906ED_000000AA.
|
||||
- Update RST driver to 17.0.0.1051.
|
||||
- Update GOP to 9.0.1080.
|
||||
|
||||
CHANGES for M1UKT28A
|
||||
- Fix some WMI issues.
|
||||
- Fix some BIOS SETUP issues.
|
||||
- Enhance SCCM BIOS update support.
|
||||
|
||||
CHANGES for M1UKT26A
|
||||
- Enhance customized logo support.
|
||||
- Enhance Windows UEFI firmware update support.
|
||||
|
||||
CHANGES for M1UKT23A
|
||||
- Update some BIOS SETUP issues.
|
||||
- Enhance WMI support.
|
||||
|
||||
CHANGES for M1UKT22A
|
||||
- Enhance WMI support.
|
||||
- Update UEFI DIAG to 4.05.
|
||||
|
||||
CHANGES for M1UKT21A
|
||||
- Enhance WMI support.
|
||||
- Fix event log cleared issue.
|
||||
- Update UEFI DIAG to 4.04.
|
||||
|
||||
CHANGES for M1UKT1FA
|
||||
- Fix some SMBIOS issues.
|
||||
|
||||
CHANGES for M1UKT1DA
|
||||
- Update MEBx.
|
||||
- Fix system fan may spin high after resume from suspend.
|
||||
- Enhance Thunderbolt support.
|
||||
|
||||
CHANGES for M1UKT1BA
|
||||
- Fix some BIOS SETUP layout issues.
|
||||
- Fix some SMBIOS issues.
|
||||
- Enhance Thunderbolt support.
|
||||
|
||||
CHANGES for M1UKT1AA
|
||||
- Fix some WOL issue.
|
||||
- Enhance SCCM BIOS deployment support.
|
||||
|
||||
CHANGES for M1UKT18A
|
||||
- Enhance Thunderbolt support.
|
||||
- Enhance SCCM BIOS deployment support.
|
||||
- Enhance remote BIOS update support.
|
||||
|
||||
CHANGES for M1UKT17A
|
||||
- Fix some display issues.
|
||||
- Enhance WMI support.
|
||||
- Enhance Intel(R) Manageability feature support.
|
||||
- Fix TIO touch function abnormal issue.
|
||||
|
||||
CHANGES for M1UKT16A
|
||||
- Enhance WMI support.
|
||||
- Enhance Thunderbolt support.
|
||||
- Enhance TIO support.
|
||||
- Update CPU microcode.
|
||||
|
||||
CHANGES for M1UKT12A
|
||||
- Enhance WMI support.
|
||||
- Fix some Bootblock Recovery issues.
|
||||
- Fix some firmware TPM related issues.
|
||||
|
||||
CHANGES for M1UKT11A
|
||||
- Enhance WMI support.
|
||||
- Enhance BIOS Windows Update support.
|
||||
- Enhance Thunderbolt support.
|
||||
|
||||
CHANGES for M1UKT0FA
|
||||
- Initial Production BIOS release.
|
||||
Binary file not shown.
@@ -0,0 +1,218 @@
|
||||
|
||||
--CONTENTS--
|
||||
1 - Installation Instructions
|
||||
2 - Flash under Operating System
|
||||
3 - Flash Program Options
|
||||
4 - Flashing Back to an Older Level of BIOS
|
||||
5 - Delaying Reboot in BIOS Update
|
||||
6 - AMIDEWIN - AMI SMBIOS Editor for Windows
|
||||
|
||||
|
||||
*****************************************************************************
|
||||
* 1. Installation Instructions *
|
||||
* *
|
||||
* Please print out these instructions or write them down before *
|
||||
* starting this flash update utility. *
|
||||
* *
|
||||
* This flash under operating system (32-bit/64-bit) utility provides *
|
||||
* the ability to update the system BIOS from a Windows application. *
|
||||
* *
|
||||
* The utility may be downloaded from the internet and unpacked into *
|
||||
* the default path: "C:\SWTOOLS\FLASH\M1UJYnnUSA", where "nn" *
|
||||
* represents the two-digit BIOS level. Please follow steps in *
|
||||
* section 2 to launch the Windows based flash application to update *
|
||||
* your system BIOS. *
|
||||
* *
|
||||
*****************************************************************************
|
||||
|
||||
|
||||
*****************************************************************************
|
||||
* 2. Flash Under Operating System *
|
||||
* *
|
||||
* 1. Please make note of any settings you have changed in the BIOS *
|
||||
* Setup utility. They may have to be re-entered after updating *
|
||||
* the BIOS. *
|
||||
* *
|
||||
* 2. Click on the Start button and type cmd.exe, Right-click on *
|
||||
* the cmd.exe application and select run as administrator to *
|
||||
* open the Command Prompt with Administrator privilege. *
|
||||
* *
|
||||
* 3. In the "Command Prompt" window, change to the directory where the *
|
||||
* above files were extracted. The command to go to the location is *
|
||||
* "cd C:\SWTOOLS\FLASH\M1UJYnnUSA", where "nn" represents the two *
|
||||
* digit flash level. *
|
||||
* *
|
||||
* 4. Enter the command "flash.cmd" and press the Enter key to start *
|
||||
* the flashing process. *
|
||||
* *
|
||||
* 5. You may first see a confirmation prompt "Proceed with BIOS *
|
||||
* update now?". Click "Yes" to continue. *
|
||||
* *
|
||||
* 6. You will see the prompt "Would you like to update the Serial *
|
||||
* Number?". Input "n" and press Enter. *
|
||||
* *
|
||||
* 7. Then you will see the prompt "Would you like to update the *
|
||||
* Machine Type and Model?". Input "n" and press Enter again. *
|
||||
* Then the BIOS update process will start. *
|
||||
* *
|
||||
* 8. The update may take up to 2 minutes. Do not power off or restart *
|
||||
* the system during this procedure! After the Windows update *
|
||||
* process ends, the system will automatically reboot to continue *
|
||||
* the flash process. *
|
||||
* *
|
||||
* 9. After the system reboots, the BIOS update process will continue *
|
||||
* with a simple graphic UI. When the BIOS update process ends, *
|
||||
* the system will reboot automatically. *
|
||||
* *
|
||||
* 10. The BIOS update process ends with above nine steps. *
|
||||
* *
|
||||
* Notes: *
|
||||
* - You may see a POST error "0162: Setup data integrity check *
|
||||
* failure" after step 9.Press F1 to enter BIOS Setup Utility, *
|
||||
* and then press F10 to save your settings *
|
||||
*****************************************************************************
|
||||
|
||||
|
||||
*****************************************************************************
|
||||
* 3. Flash Program Options *
|
||||
* *
|
||||
* To deploy this application, please open the Windows Command Prompt *
|
||||
* with Administrator privilege. Then run "M1UJYnnUSA.EXE -s -e" *
|
||||
* to unpack the installation files into the default path: *
|
||||
* "C:\SWTOOLS\FLASH\M1UJYnnUSA". After that, run "flash.cmd /quiet" *
|
||||
* to start the update process. If you like to customize the update *
|
||||
* options, please edit the wflash2.exe command line in the flash.cmd *
|
||||
* file to make changes to the flash program options. *
|
||||
* Note that "flash64.cmd" and wflash2x64.exe are provided to be used *
|
||||
* in an environment without WOW64 support such as Windows *
|
||||
* Preinstallation Environment (Windows PE) 64bit. *
|
||||
* *
|
||||
* Command options: *
|
||||
* *
|
||||
* wflash2.exe [option1] [option2] ... [optionX] *
|
||||
* *
|
||||
* [OPTIONS] *
|
||||
* /h Show help messages. *
|
||||
* /rsmb Preserve all SMBIOS structures. *
|
||||
* /clr Clear BIOS settings. *
|
||||
* /ign Ignore BIOS version check. *
|
||||
* /sccm Support SCCM deployment *
|
||||
* - see "Delaying Reboot in BIOS Update" below. *
|
||||
* /sn:nnnnnnn Update system serial number (up to 20 characters). *
|
||||
* /csn:nnnnnnn Update chassis serial number (up to 20 characters). *
|
||||
* /mtm:nnnnnnn Update machine type and model number (up to 25 *
|
||||
* characters). *
|
||||
* /tag:nnnnnnn Update system asset tag (up to 25 characters). *
|
||||
* /uuid The flash utility will generate an Universally *
|
||||
* Unique Identifier (UUID), replacing the one that *
|
||||
* is currently in the system. *
|
||||
* /logo:<filename> Change logo. The max supported size of logo file *
|
||||
* is displayed on the screen during the compressing. *
|
||||
* /pass:nnnnnnn Input current system password. *
|
||||
* /quiet Operating without physical presence. *
|
||||
* /autobin Used to support multiple systems from one BIOS *
|
||||
* folder. Before using this option, please copy the *
|
||||
* BIOS bin or rom files from the different BIOS *
|
||||
* packages into the one folder where the BIOS update *
|
||||
* is located. This one BIOS update folder could *
|
||||
* contain multiple BIOS images in addition to the *
|
||||
* existing flash program files including: *
|
||||
* imageFW.bin, imageFV.bin, imageM05.bin. *
|
||||
* This example would support M900, M800z, and M700 *
|
||||
* *
|
||||
* The following example shows how to update system asset tag number *
|
||||
* to "1234567" use command line: *
|
||||
* wflash2.exe /tag:1234567 *
|
||||
* *
|
||||
* The following example shows how to update bios and update system *
|
||||
* asset tag number by one command: *
|
||||
* wflash2.exe imageM1U.rom /tag:1234567 *
|
||||
* Or *
|
||||
* wflash2.exe /tag:1234567 /autobin *
|
||||
* *
|
||||
* The following example shows how to change the power-on logo. *
|
||||
* wflash2.exe /logo:myfav.bmp *
|
||||
* *
|
||||
* Notes: *
|
||||
* - A flash update image using these program options should be *
|
||||
* tested carefully before widespread usage. *
|
||||
* - wflash2x64.exe's options are the same as wflash2.exe *
|
||||
* *
|
||||
*****************************************************************************
|
||||
|
||||
|
||||
*****************************************************************************
|
||||
* 4. Flashing Back to an Older Level of BIOS *
|
||||
* *
|
||||
* In order to flash back to an older level of BIOS, the following *
|
||||
* steps should be used to insure the latest flash utility is used. *
|
||||
* *
|
||||
* 1. Obtain the older level and latest level BIOS update programs *
|
||||
* from the Lenovo website. *
|
||||
* 2. Use the method described in section 3 to unpack the program into *
|
||||
* "C:\SWTOOLS\FLASH\M1UJYnnUSA". *
|
||||
* 3. Copy imageM1U.rom from the older BIOS update program folder, *
|
||||
* paste it and replace the same file in the latest level BIOS *
|
||||
* update program folder. *
|
||||
* 4. In the latest level BIOS update program folder, run flash.cmd *
|
||||
* to flash back to an older level BIOS. *
|
||||
* *
|
||||
*****************************************************************************
|
||||
|
||||
|
||||
*****************************************************************************
|
||||
* 5. Delaying Reboot in BIOS Update *
|
||||
* *
|
||||
* The BIOS update process consists of two phases. The first phase *
|
||||
* happens in the OS. After the first flashing phase is complete, the *
|
||||
* system will automatically reboot to perform the secondary *
|
||||
* BIOS update phase. *
|
||||
* *
|
||||
* /sccm is designed for BIOS update deployment when the administrator *
|
||||
* wants to manually control the system reboot after first BIOS phase *
|
||||
* update has finished. With the parameter "/sccm", the system won't *
|
||||
* reboot immediately after applying the first phase of the BIOS update. *
|
||||
* The administrator must REBOOT/SHUTDOWN the system later to trigger *
|
||||
* the secondary phase of the BIOS update. *
|
||||
* *
|
||||
* Important Notes: *
|
||||
* *
|
||||
* 1. After the first phase of the BIOS update is complete, the *
|
||||
* administrator must REBOOT or SHUTDOWN the system to trigger the *
|
||||
* secondary phase. *
|
||||
* 2. The REBOOT mentioned in Note 1 will trigger the secondary phase *
|
||||
* immediately. *
|
||||
* 3. The SHUTDOWN mentioned in Note 1 must be an actual *
|
||||
* S5 (System Power Off). The default shutdown behavior in *
|
||||
* modern OS (WIN8/WIN8.1/WIN10 etc.) is S4 (Hibernate). To change *
|
||||
* these modern OS shutdown behavior to S5, you need to turn off *
|
||||
* the "Fast Startup" from "Control Panel -> Power options". If your *
|
||||
* deployment software supports S5 shutdown, you can send a sleep S5 *
|
||||
* command by software to trigger the secondary BIOS update phase. *
|
||||
* If the system is not shut down using the S5 shutdown, the flash *
|
||||
* process will not continue, and will need to be restarted from *
|
||||
* phase 1. *
|
||||
* 4. The REBOOT option is only supported when the system is in UEFI *
|
||||
* mode. In LEGACY mode a SHUTDOWN is required to complete the flash *
|
||||
* process. *
|
||||
* *
|
||||
* The following example shows how to use /sccm to implement first phase *
|
||||
* BIOS update with deployment software: *
|
||||
* *
|
||||
* flash.cmd /quiet /sccm *
|
||||
* *
|
||||
*****************************************************************************
|
||||
*****************************************************************************
|
||||
* 6. AMIDEWIN - AMI SMBIOS Editor for Windows *
|
||||
* *
|
||||
* AMIDEWIN.exe [option1] [option2] ... [optionX] *
|
||||
* *
|
||||
* Options: *
|
||||
* /SP "String" Update the System Machine Type and Model Number. *
|
||||
* /SS "String" Update the System Serial Number. *
|
||||
* /CS "String" Update the Chassis Serial Number. *
|
||||
* /SU auto Update the System UUID. *
|
||||
* /SV "String" update the System Brand ID. *
|
||||
* /CA "String" update the Chassis Asset Tag Number. *
|
||||
* *
|
||||
*****************************************************************************
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,6 @@
|
||||
@echo on
|
||||
IF EXIST "%programfiles(x86)%" (
|
||||
wflash2x64.exe imageM1U.rom /bb /rsmb %*
|
||||
) ELSE (
|
||||
wflash2.exe imageM1U.rom /bb /rsmb %*
|
||||
)
|
||||
@@ -0,0 +1,2 @@
|
||||
@echo off
|
||||
wflash2x64.exe imageM1U.rom /bb /rsmb %*
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,6 @@
|
||||
@echo on
|
||||
IF EXIST "%programfiles(x86)%" (
|
||||
wflash2x64.exe imageM1U.ROM /bb /rsmb /quiet /sccm %*
|
||||
) ELSE (
|
||||
wflash2.exe imageM1U.ROM /bb /rsmb /quiet /sccm %*
|
||||
)
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,144 @@
|
||||
|
||||
BIOS Changes History
|
||||
|
||||
|
||||
General Information:
|
||||
|
||||
M1UJ9xxUSA is Flash CD ROM image.
|
||||
M1UJTxxUSA is Flash in UEFI Shell zip package.
|
||||
M1UJYxxUSA is Flash in Windows utility.
|
||||
NOTE: All changes carry forward. That is, if a change is added in 01,it is also in 02, 03 etc.
|
||||
|
||||
This file will be updated from the beginning with first Production BIOS release
|
||||
CHANGES for M1UKT50A
|
||||
- Enhancement to address security vulnerability.
|
||||
- Enhance NVMe SSD detection.
|
||||
|
||||
CHANGES for M1UKT4FA
|
||||
- Enhancement to address security vulnerability.
|
||||
- Update UEFI DIAG to 4.11.
|
||||
|
||||
CHANGES for M1UKT4EA
|
||||
- Fix some TIO multi display issue for M920x.
|
||||
- Enhancement to address security vulnerability.
|
||||
- Update Setup layout.
|
||||
|
||||
CHANGES for M1UKT4BA
|
||||
- Enhancement to address security vulnerability.
|
||||
- Update CPU Microcode.
|
||||
|
||||
CHANGES for M1UKT4AA
|
||||
- Enhancement to address security vulnerability.
|
||||
- Enhance BIOS SETUP support.
|
||||
|
||||
CHANGES for M1UKT47A
|
||||
- Enhancement to address security vulnerability.
|
||||
- Enhance BIOS SETUP support.
|
||||
|
||||
CHANGES for M1UKT45A
|
||||
- Enhance Smart USB Protection support.
|
||||
- Prevents a hang in POST.
|
||||
- Fixes the IPv4/IPv6 repeating "v" messaging in F12 menu.
|
||||
- Prevents flashing to BIOS levels prior to version 44A.
|
||||
|
||||
CHANGES for M1UKT43A
|
||||
- IPV4 and IPV6 boot options improvement to fix POST hangs.
|
||||
- Update UEFI DIAG to 4.08.03.
|
||||
|
||||
CHANGES for M1UKT42A
|
||||
- Enhance WMI support.
|
||||
- Update UEFI DIAG to 4.08.
|
||||
|
||||
CHANGES for M1UKT40A
|
||||
- Enhance Intel(R) RST with Intel(R) Optane support.
|
||||
- Enhance WMI support.
|
||||
- Update Intel(R) RST Pre-OS to 17.3.0.4019.
|
||||
|
||||
CHANGES for M1UKT39A
|
||||
- [Important] Update includes security fixes
|
||||
- Enhance Intel(R) Manageability feature support.
|
||||
- Enhance Bootblock Recovery support.
|
||||
|
||||
CHANGES for M1UKT37A
|
||||
- Enhance Bootblock Recovery support.
|
||||
- Enhance TIO support.
|
||||
- Fix MEBx related issue.
|
||||
|
||||
CHANGES for M1UKT35A
|
||||
- Update CPU Microcode.
|
||||
- Fix some ME issues.
|
||||
|
||||
CHANGES for M1UKT33A
|
||||
- Add 8 Core CPU support.
|
||||
- Add new CPU mircocode M22906ED_000000AA.
|
||||
- Update RST driver to 17.0.0.1051.
|
||||
- Update GOP to 9.0.1080.
|
||||
|
||||
CHANGES for M1UKT28A
|
||||
- Fix some WMI issues.
|
||||
- Fix some BIOS SETUP issues.
|
||||
- Enhance SCCM BIOS update support.
|
||||
|
||||
CHANGES for M1UKT26A
|
||||
- Enhance customized logo support.
|
||||
- Enhance Windows UEFI firmware update support.
|
||||
|
||||
CHANGES for M1UKT23A
|
||||
- Update some BIOS SETUP issues.
|
||||
- Enhance WMI support.
|
||||
|
||||
CHANGES for M1UKT22A
|
||||
- Enhance WMI support.
|
||||
- Update UEFI DIAG to 4.05.
|
||||
|
||||
CHANGES for M1UKT21A
|
||||
- Enhance WMI support.
|
||||
- Fix event log cleared issue.
|
||||
- Update UEFI DIAG to 4.04.
|
||||
|
||||
CHANGES for M1UKT1FA
|
||||
- Fix some SMBIOS issues.
|
||||
|
||||
CHANGES for M1UKT1DA
|
||||
- Update MEBx.
|
||||
- Fix system fan may spin high after resume from suspend.
|
||||
- Enhance Thunderbolt support.
|
||||
|
||||
CHANGES for M1UKT1BA
|
||||
- Fix some BIOS SETUP layout issues.
|
||||
- Fix some SMBIOS issues.
|
||||
- Enhance Thunderbolt support.
|
||||
|
||||
CHANGES for M1UKT1AA
|
||||
- Fix some WOL issue.
|
||||
- Enhance SCCM BIOS deployment support.
|
||||
|
||||
CHANGES for M1UKT18A
|
||||
- Enhance Thunderbolt support.
|
||||
- Enhance SCCM BIOS deployment support.
|
||||
- Enhance remote BIOS update support.
|
||||
|
||||
CHANGES for M1UKT17A
|
||||
- Fix some display issues.
|
||||
- Enhance WMI support.
|
||||
- Enhance Intel(R) Manageability feature support.
|
||||
- Fix TIO touch function abnormal issue.
|
||||
|
||||
CHANGES for M1UKT16A
|
||||
- Enhance WMI support.
|
||||
- Enhance Thunderbolt support.
|
||||
- Enhance TIO support.
|
||||
- Update CPU microcode.
|
||||
|
||||
CHANGES for M1UKT12A
|
||||
- Enhance WMI support.
|
||||
- Fix some Bootblock Recovery issues.
|
||||
- Fix some firmware TPM related issues.
|
||||
|
||||
CHANGES for M1UKT11A
|
||||
- Enhance WMI support.
|
||||
- Enhance BIOS Windows Update support.
|
||||
- Enhance Thunderbolt support.
|
||||
|
||||
CHANGES for M1UKT0FA
|
||||
- Initial Production BIOS release.
|
||||
Binary file not shown.
@@ -0,0 +1,218 @@
|
||||
|
||||
--CONTENTS--
|
||||
1 - Installation Instructions
|
||||
2 - Flash under Operating System
|
||||
3 - Flash Program Options
|
||||
4 - Flashing Back to an Older Level of BIOS
|
||||
5 - Delaying Reboot in BIOS Update
|
||||
6 - AMIDEWIN - AMI SMBIOS Editor for Windows
|
||||
|
||||
|
||||
*****************************************************************************
|
||||
* 1. Installation Instructions *
|
||||
* *
|
||||
* Please print out these instructions or write them down before *
|
||||
* starting this flash update utility. *
|
||||
* *
|
||||
* This flash under operating system (32-bit/64-bit) utility provides *
|
||||
* the ability to update the system BIOS from a Windows application. *
|
||||
* *
|
||||
* The utility may be downloaded from the internet and unpacked into *
|
||||
* the default path: "C:\SWTOOLS\FLASH\M1UJYnnUSA", where "nn" *
|
||||
* represents the two-digit BIOS level. Please follow steps in *
|
||||
* section 2 to launch the Windows based flash application to update *
|
||||
* your system BIOS. *
|
||||
* *
|
||||
*****************************************************************************
|
||||
|
||||
|
||||
*****************************************************************************
|
||||
* 2. Flash Under Operating System *
|
||||
* *
|
||||
* 1. Please make note of any settings you have changed in the BIOS *
|
||||
* Setup utility. They may have to be re-entered after updating *
|
||||
* the BIOS. *
|
||||
* *
|
||||
* 2. Click on the Start button and type cmd.exe, Right-click on *
|
||||
* the cmd.exe application and select run as administrator to *
|
||||
* open the Command Prompt with Administrator privilege. *
|
||||
* *
|
||||
* 3. In the "Command Prompt" window, change to the directory where the *
|
||||
* above files were extracted. The command to go to the location is *
|
||||
* "cd C:\SWTOOLS\FLASH\M1UJYnnUSA", where "nn" represents the two *
|
||||
* digit flash level. *
|
||||
* *
|
||||
* 4. Enter the command "flash.cmd" and press the Enter key to start *
|
||||
* the flashing process. *
|
||||
* *
|
||||
* 5. You may first see a confirmation prompt "Proceed with BIOS *
|
||||
* update now?". Click "Yes" to continue. *
|
||||
* *
|
||||
* 6. You will see the prompt "Would you like to update the Serial *
|
||||
* Number?". Input "n" and press Enter. *
|
||||
* *
|
||||
* 7. Then you will see the prompt "Would you like to update the *
|
||||
* Machine Type and Model?". Input "n" and press Enter again. *
|
||||
* Then the BIOS update process will start. *
|
||||
* *
|
||||
* 8. The update may take up to 2 minutes. Do not power off or restart *
|
||||
* the system during this procedure! After the Windows update *
|
||||
* process ends, the system will automatically reboot to continue *
|
||||
* the flash process. *
|
||||
* *
|
||||
* 9. After the system reboots, the BIOS update process will continue *
|
||||
* with a simple graphic UI. When the BIOS update process ends, *
|
||||
* the system will reboot automatically. *
|
||||
* *
|
||||
* 10. The BIOS update process ends with above nine steps. *
|
||||
* *
|
||||
* Notes: *
|
||||
* - You may see a POST error "0162: Setup data integrity check *
|
||||
* failure" after step 9.Press F1 to enter BIOS Setup Utility, *
|
||||
* and then press F10 to save your settings *
|
||||
*****************************************************************************
|
||||
|
||||
|
||||
*****************************************************************************
|
||||
* 3. Flash Program Options *
|
||||
* *
|
||||
* To deploy this application, please open the Windows Command Prompt *
|
||||
* with Administrator privilege. Then run "M1UJYnnUSA.EXE -s -e" *
|
||||
* to unpack the installation files into the default path: *
|
||||
* "C:\SWTOOLS\FLASH\M1UJYnnUSA". After that, run "flash.cmd /quiet" *
|
||||
* to start the update process. If you like to customize the update *
|
||||
* options, please edit the wflash2.exe command line in the flash.cmd *
|
||||
* file to make changes to the flash program options. *
|
||||
* Note that "flash64.cmd" and wflash2x64.exe are provided to be used *
|
||||
* in an environment without WOW64 support such as Windows *
|
||||
* Preinstallation Environment (Windows PE) 64bit. *
|
||||
* *
|
||||
* Command options: *
|
||||
* *
|
||||
* wflash2.exe [option1] [option2] ... [optionX] *
|
||||
* *
|
||||
* [OPTIONS] *
|
||||
* /h Show help messages. *
|
||||
* /rsmb Preserve all SMBIOS structures. *
|
||||
* /clr Clear BIOS settings. *
|
||||
* /ign Ignore BIOS version check. *
|
||||
* /sccm Support SCCM deployment *
|
||||
* - see "Delaying Reboot in BIOS Update" below. *
|
||||
* /sn:nnnnnnn Update system serial number (up to 20 characters). *
|
||||
* /csn:nnnnnnn Update chassis serial number (up to 20 characters). *
|
||||
* /mtm:nnnnnnn Update machine type and model number (up to 25 *
|
||||
* characters). *
|
||||
* /tag:nnnnnnn Update system asset tag (up to 25 characters). *
|
||||
* /uuid The flash utility will generate an Universally *
|
||||
* Unique Identifier (UUID), replacing the one that *
|
||||
* is currently in the system. *
|
||||
* /logo:<filename> Change logo. The max supported size of logo file *
|
||||
* is displayed on the screen during the compressing. *
|
||||
* /pass:nnnnnnn Input current system password. *
|
||||
* /quiet Operating without physical presence. *
|
||||
* /autobin Used to support multiple systems from one BIOS *
|
||||
* folder. Before using this option, please copy the *
|
||||
* BIOS bin or rom files from the different BIOS *
|
||||
* packages into the one folder where the BIOS update *
|
||||
* is located. This one BIOS update folder could *
|
||||
* contain multiple BIOS images in addition to the *
|
||||
* existing flash program files including: *
|
||||
* imageFW.bin, imageFV.bin, imageM05.bin. *
|
||||
* This example would support M900, M800z, and M700 *
|
||||
* *
|
||||
* The following example shows how to update system asset tag number *
|
||||
* to "1234567" use command line: *
|
||||
* wflash2.exe /tag:1234567 *
|
||||
* *
|
||||
* The following example shows how to update bios and update system *
|
||||
* asset tag number by one command: *
|
||||
* wflash2.exe imageM1U.rom /tag:1234567 *
|
||||
* Or *
|
||||
* wflash2.exe /tag:1234567 /autobin *
|
||||
* *
|
||||
* The following example shows how to change the power-on logo. *
|
||||
* wflash2.exe /logo:myfav.bmp *
|
||||
* *
|
||||
* Notes: *
|
||||
* - A flash update image using these program options should be *
|
||||
* tested carefully before widespread usage. *
|
||||
* - wflash2x64.exe's options are the same as wflash2.exe *
|
||||
* *
|
||||
*****************************************************************************
|
||||
|
||||
|
||||
*****************************************************************************
|
||||
* 4. Flashing Back to an Older Level of BIOS *
|
||||
* *
|
||||
* In order to flash back to an older level of BIOS, the following *
|
||||
* steps should be used to insure the latest flash utility is used. *
|
||||
* *
|
||||
* 1. Obtain the older level and latest level BIOS update programs *
|
||||
* from the Lenovo website. *
|
||||
* 2. Use the method described in section 3 to unpack the program into *
|
||||
* "C:\SWTOOLS\FLASH\M1UJYnnUSA". *
|
||||
* 3. Copy imageM1U.rom from the older BIOS update program folder, *
|
||||
* paste it and replace the same file in the latest level BIOS *
|
||||
* update program folder. *
|
||||
* 4. In the latest level BIOS update program folder, run flash.cmd *
|
||||
* to flash back to an older level BIOS. *
|
||||
* *
|
||||
*****************************************************************************
|
||||
|
||||
|
||||
*****************************************************************************
|
||||
* 5. Delaying Reboot in BIOS Update *
|
||||
* *
|
||||
* The BIOS update process consists of two phases. The first phase *
|
||||
* happens in the OS. After the first flashing phase is complete, the *
|
||||
* system will automatically reboot to perform the secondary *
|
||||
* BIOS update phase. *
|
||||
* *
|
||||
* /sccm is designed for BIOS update deployment when the administrator *
|
||||
* wants to manually control the system reboot after first BIOS phase *
|
||||
* update has finished. With the parameter "/sccm", the system won't *
|
||||
* reboot immediately after applying the first phase of the BIOS update. *
|
||||
* The administrator must REBOOT/SHUTDOWN the system later to trigger *
|
||||
* the secondary phase of the BIOS update. *
|
||||
* *
|
||||
* Important Notes: *
|
||||
* *
|
||||
* 1. After the first phase of the BIOS update is complete, the *
|
||||
* administrator must REBOOT or SHUTDOWN the system to trigger the *
|
||||
* secondary phase. *
|
||||
* 2. The REBOOT mentioned in Note 1 will trigger the secondary phase *
|
||||
* immediately. *
|
||||
* 3. The SHUTDOWN mentioned in Note 1 must be an actual *
|
||||
* S5 (System Power Off). The default shutdown behavior in *
|
||||
* modern OS (WIN8/WIN8.1/WIN10 etc.) is S4 (Hibernate). To change *
|
||||
* these modern OS shutdown behavior to S5, you need to turn off *
|
||||
* the "Fast Startup" from "Control Panel -> Power options". If your *
|
||||
* deployment software supports S5 shutdown, you can send a sleep S5 *
|
||||
* command by software to trigger the secondary BIOS update phase. *
|
||||
* If the system is not shut down using the S5 shutdown, the flash *
|
||||
* process will not continue, and will need to be restarted from *
|
||||
* phase 1. *
|
||||
* 4. The REBOOT option is only supported when the system is in UEFI *
|
||||
* mode. In LEGACY mode a SHUTDOWN is required to complete the flash *
|
||||
* process. *
|
||||
* *
|
||||
* The following example shows how to use /sccm to implement first phase *
|
||||
* BIOS update with deployment software: *
|
||||
* *
|
||||
* flash.cmd /quiet /sccm *
|
||||
* *
|
||||
*****************************************************************************
|
||||
*****************************************************************************
|
||||
* 6. AMIDEWIN - AMI SMBIOS Editor for Windows *
|
||||
* *
|
||||
* AMIDEWIN.exe [option1] [option2] ... [optionX] *
|
||||
* *
|
||||
* Options: *
|
||||
* /SP "String" Update the System Machine Type and Model Number. *
|
||||
* /SS "String" Update the System Serial Number. *
|
||||
* /CS "String" Update the Chassis Serial Number. *
|
||||
* /SU auto Update the System UUID. *
|
||||
* /SV "String" update the System Brand ID. *
|
||||
* /CA "String" update the Chassis Asset Tag Number. *
|
||||
* *
|
||||
*****************************************************************************
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user