General Discussions ForumDiscuss any general issues with the add-in, or topics that are not covered by any of the other forums© 2009 Microsoft Corporation. All rights reserved.Wed, 25 Nov 2009 20:29:14 Zbd093d98-2a41-4ee4-915f-0b5d2423a729http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/38cd943b-a225-495c-9dd8-8b6f2ce5782fhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/38cd943b-a225-495c-9dd8-8b6f2ce5782fblinkkev101http://social.microsoft.com/Profile/en-US/?user=blinkkev101windows 7 screen/display problems (video included)i need a little help with this the screen keep like flickering or flashing whatever you want to call it i just installed did a clean install of windows 7 i upgraded from windows XP now this keep happening any suggestions???<br/>NVIDIA GeFORCE 6100 <br/><a href="http://www.youtube.com/watch?v=41vuSJtINaQ">http://www.youtube.com/watch?v=41vuSJtINaQ</a>Mon, 02 Nov 2009 02:11:43 Z2009-11-25T20:29:13Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/44d5bd12-67c9-4194-b4b7-406c29898aachttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/44d5bd12-67c9-4194-b4b7-406c29898aacSculleyhttp://social.microsoft.com/Profile/en-US/?user=SculleyComputer not working right after W7 upgrade. Please help!Word is acting exactly like it did on my old machine before I purchased my new PC three months ago....I use Office 2003.....the Thesaurus won't work, when I click Page Setup it says Not Responding for some time before it finally pops up the Page Setup box, and other things like that where it says not responding.  I am getting frustrated.  I bought a new computer and ever since the W7 upgrade, I've only had problems.  The printer in QB won't work, and other annoying things.  Everything takes longer than it used too....just opening My docs and clicking on a folder takes too long...it pauses for awhile before opening.<br/> <br/> Forgot to mention....called HP and they had me do updates.  Now Syncback back up won't work (and it was working fine before updates) and now when the computer goes to sleep, I have to click my mouse and enter button about 20 times before the monitor will show anything and then it says I entered the wrong PW for my login.<br/> <br/> Outlook gives me problems too -- not opening sometimes, etc.<br/> <br/> Now IE isn't working!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  Won't open says Not Responding.Tue, 24 Nov 2009 03:22:56 Z2009-11-25T20:27:00Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/412519e3-488c-49c9-91cf-73b62f63dd85http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/412519e3-488c-49c9-91cf-73b62f63dd85ck_windowshttp://social.microsoft.com/Profile/en-US/?user=ck_windowsWindows 7 install on USB driveHi,<br/>      I am not sure if this is right forum to post. Is it possible to install Windows 7 on an external USB drive?  I can't find any answer for this. I tried installing to an USB drive and got error message saying Windows 7 cannot be installed on USB drive. <br/> <br/> Thanks in advance,<br/> CK. <br/>Sun, 12 Apr 2009 18:28:26 Z2009-11-18T23:25:08Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/52370b4e-050f-414b-95b5-9112c5e0a24fhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/52370b4e-050f-414b-95b5-9112c5e0a24fBadgerHelpmehttp://social.microsoft.com/Profile/en-US/?user=BadgerHelpmeVBA runtime error 91 working and not at the same time!?<p> </p> <p>Hi,</p> <p>This is the first time I've asked a question on here.  This is a bit of a long one!</p> <p> I'm working on a workbook that has quite a few macros etc in it.   I'm a bit confused as I have some code which is run when a pivot chart calculates andformats the chart's appearance.  This seems to work fine when I click on the various charts. </p> <p>However  I have another bit of code which is making a copy of the workbook, saves it on the desktop, looks at the active sheet (which is seperate to the pivot chart ones) removes formulas/replaces with values and then deletes all but the active sheet.  This second bit of code works fine if the wook is opened and the copying macro run straight away (or just without looking at the chart sheets).  However, if I open the book, look at a sheet with one of the pivotcharts (so runs the formatting macro - which works) and then move to the other sheet and run the copying macro - then I get the runtime 91 error... </p> <p>This is the formatting code:</p> <p>Sub ColourFormatPChartsTrafficLight()<br/>'<br/>    Dim i As Integer<br/>    Dim a As Integer<br/>    <br/>    a = ActiveChart.SeriesCollection.Count<br/>    <br/>    For i = 1 To a<br/>    Select Case ActiveChart.SeriesCollection(i).Name<br/>    Case &quot;Amber&quot;<br/>        ActiveChart.SeriesCollection(i).Select<br/>        With Selection.Border<br/>        .Weight = xlThin<br/>        .LineStyle = xlAutomatic<br/>         End With<br/>         Selection.Shadow = False<br/>        Selection.InvertIfNegative = False<br/>        With Selection.Interior<br/>        .Pattern = xlSolid<br/>        .ColorIndex = 45<br/>        End With<br/>         ActiveChart.SeriesCollection(i).ApplyDataLabels AutoText:=True, LegendKey:= _<br/>        False, ShowSeriesName:=False, ShowCategoryName:=False, ShowValue:=True, _<br/>        ShowPercentage:=False, ShowBubbleSize:=False<br/>        <br/>    Case &quot;Green&quot;<br/>        ActiveChart.SeriesCollection(i).Select<br/>        With Selection.Border<br/>        .Weight = xlThin<br/>        .LineStyle = xlAutomatic<br/>        End With<br/>        Selection.Shadow = False<br/>        Selection.InvertIfNegative = False<br/>        With Selection.Interior<br/>        .Pattern = xlSolid<br/>        .ColorIndex = 43<br/>         End With<br/>         ActiveChart.SeriesCollection(i).ApplyDataLabels AutoText:=True, LegendKey:= _<br/>        False, ShowSeriesName:=False, ShowCategoryName:=False, ShowValue:=True, _<br/>        ShowPercentage:=False, ShowBubbleSize:=False<br/>        <br/>    Case &quot;Red&quot;<br/>        ActiveChart.SeriesCollection(i).Select<br/>            With Selection.Border<br/>        .Weight = xlThin<br/>        .LineStyle = xlAutomatic<br/>        End With<br/>        Selection.Shadow = False<br/>        Selection.InvertIfNegative = False<br/>        With Selection.Interior<br/>        .Pattern = xlSolid<br/>        .ColorIndex = 3<br/>         End With<br/>         ActiveChart.SeriesCollection(i).ApplyDataLabels AutoText:=True, LegendKey:= _<br/>        False, ShowSeriesName:=False, ShowCategoryName:=False, ShowValue:=True, _<br/>        ShowPercentage:=False, ShowBubbleSize:=False<br/>        <br/>    Case &quot;NA&quot;<br/>        ActiveChart.SeriesCollection(i).Select<br/>        With Selection.Border<br/>        .Weight = xlThin<br/>        .LineStyle = xlAutomatic<br/>        End With<br/>        Selection.Shadow = False<br/>        Selection.InvertIfNegative = False<br/>        With Selection.Interior<br/>        .Pattern = xlSolid<br/>        .ColorIndex = 15<br/>         End With<br/>        ActiveChart.SeriesCollection(i).ApplyDataLabels AutoText:=True, LegendKey:= _<br/>        False, ShowSeriesName:=False, ShowCategoryName:=False, ShowValue:=True, _<br/>        ShowPercentage:=False, ShowBubbleSize:=False<br/>        <br/>    Case Else<br/>        Exit Sub<br/>        <br/>    End Select<br/>Next i<br/>    <br/>End Sub</p> <p><br/>Its the line    a = ActiveChart.SeriesCollection.Count which is highlighted when I debug. I googles for help and found something indicating there was an excel bug when doing a 'find' on cell formatting and it suggested changing around the   .Pattern = xlSolid  and  .ColorIndex = 15 lines.  I tried this even though mine isn't to do with finding but that hasn;t worked. see  <a href="http://support.microsoft.com/kb/282153">http://support.microsoft.com/kb/282153</a></p> <p>Can anybody help?</p> <p>Thanks</p> <p> </p> <p> </p> <p> </p>Wed, 11 Nov 2009 13:33:01 Z2009-11-11T13:33:02Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/838e41de-a11a-49d6-a4ab-1b92e87b9a08http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/838e41de-a11a-49d6-a4ab-1b92e87b9a08kingkarahttp://social.microsoft.com/Profile/en-US/?user=kingkarawindow 7I am having problems with my printer , it want print can you helpThu, 05 Nov 2009 10:36:49 Z2009-11-10T15:41:41Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/01fe923a-932e-4047-899a-f54bec17eee4http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/01fe923a-932e-4047-899a-f54bec17eee4robertewhttp://social.microsoft.com/Profile/en-US/?user=robertewwindows 7 will not run experience indexAfter reinstalling Windows 7, some programs will not install and the windows experience rating stops and will not give a rating.Sun, 08 Nov 2009 11:13:39 Z2009-11-10T15:39:59Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/c8751a56-da11-47c6-9a57-a8fc247ca1afhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/c8751a56-da11-47c6-9a57-a8fc247ca1afvcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 18 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">=== Remove and Reseat Wireless Adapter card. </span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please follow the steps as provided in the service manual of your Notebook model to remove and reseat the wireless adapter card. To download the service manuals, please visit the below given web link: </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10032.www1.hp.com/ctg/Manual/c01095493.pdf </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The above link is in .pdf format, to open the link acrobat reader application should be preinstalled in your system. Please download the software from the URL below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.adobe.com/products/acrobat/readstep2.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can find the instructions under &quot;Removing and Replacement&quot; category on the service manual link on page numbers 128 &amp; 129</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Remove reseat hard drive, Self test, Kill disk—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">From your E-Mail, I understand that you when you are trying to restore your Notebook to its factory shipped settings using the recovery discs, you are unable to proceed further as the Notebook turns off and prompts you to restart the installation process.</span></p> <p class=MsoNormal><span style="font-size:10pt"></span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I regret for the inconvenience caused to you with our product.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Zach, at this point of time, to isolate the issue further, I recommend you to remove and reseat the hard drive of your notebook once and perform hard drive self test to find out whether the issue is with the hard drive or with the internal malfunction of the Notebook. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">=== Remove and reseat Hard Drive.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please follow the steps as provided in the service manual of your Notebook model to remove and reseat the Hard Drive. To download the service manuals, please visit the below given web link: </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10032.www1.hp.com/ctg/Manual/c01550108.pdf</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. Copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The above link is in .pdf format, to open the link acrobat reader application should be preinstalled in your system. Please download the software from the URL below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.adobe.com/products/acrobat/readstep2.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can find the instructions under &quot;Removing and Replacement&quot; category on the service manual link on page numbers 62 to 64.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After you have removed and reseated the Hard drive, please follow the steps below to test the hard drive of the Notebook using the HP Hard Drive Self Test: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Procedure to perform Hard Disk Self Test:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Hard Disk Self Test, checks the status of your hard disk. I request you to perform Hard Disk Self Test.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Plug the AC Adapter into the Notebook PC.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. Press and Hold the Power button for 5 Seconds to turn off the PC. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Press the F10 key (on some notebook PCs, F2 or F6). </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>   </span> Then Press the Power button to turn on the PC releasing the F10 key after text is displayed on the screen of the PC. </span></p> <p class=MsoNormal><span style="font-size:10pt">4. After the BIOS Setup Utility is displayed, use the Right Arrow key to select the Tools menu. </span></p> <p class=MsoNormal><span style="font-size:10pt">5. Select Hard Drive Self Test </span></p> <p class=MsoNormal><span style="font-size:10pt">6. Press the Enter key to start the test. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The Hard Drive Self Test will provide an Estimated test time. A Quick test a Comprehensive test and a SMART test will execute when the Enter key is pressed. Please perform both the short and comprehensive tests if needed manually. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the test status is failed then the issue is due to the defective hard drive and it needs to be replaced.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the hard drive self test status is pass, I recommend you to use the kill disk utility.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Kill Disk Uitlity: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Active@ KillDisk - Hard Drive Eraser is a powerful and compact software that allows you to destroy all data on hard and floppy drives completely, excluding any possibility of future recovery of deleted files and folders. It's a hard drive and partition eraser utility.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Using KillDisk utility:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">KillDisk utility will enable you create a bootable CD used in the process of reinstalling the OS. You can download KillDisk utility from the following web site: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.killdisk.com/downloadfree.htm </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">In the above web site, under Download KillDisk section, click on 'Download Bootable ISO Image of Active KillDisk to burn CD' to download a bootable ISO image of KillDisk available under the &quot;Bootable ISO Image for Professional version&quot; segment. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Download Bootable ISO Imageof Active@ KillDisk to burn CD. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This downloads an ISO IMAGE (not a regular file) that needs to be burned to the CD AS AN IMAGE (not as an added file). You may use any other System to burn the Killdisk CD. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Now, make CD/DVD drive, the first boot device by hitting ESC key at HP logo, insert the already created KillDisk CD, and reboot the PC. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For a graphical representation, visit the Web Sites below: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.petri.co.il/how_to_write_iso_files_to_cd.htm </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you are using NERO CD burning software, visit the Web Site below: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.bay-wolf.com/burnimage.htm </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">On restart, the KillDisk utility starts and follow the instructions to delete all the partitions. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: Please note that you have created a KillDisk CD on any other System and use that CD to delete partitions on the hard drive. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Now, all the partitions will be wiped from the Hard disk. You can now use the Windows Vista Recovery CDs to recover the notebook to factory conditions.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Note: Please backup your Important data. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt">Hope, I have thoroughly addressed your concerns. If the issue persists please get back to us with your observations and results; I will be glad to assist you further.</span></p> </div>Mon, 09 Nov 2009 13:38:00 Z2009-11-09T13:38:00Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/f2e6c385-d70f-4b0b-87ea-a120926c96achttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/f2e6c385-d70f-4b0b-87ea-a120926c96acvcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 17 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Recovery partition +<span>  </span> XP—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I would like to inform you that the latest model HP Pavilion/Compaq notebooks are not shipped with Recovery Disks. These models are featured with new Recovery process called &quot;Softthinks PC Recovery&quot;. The Recovery Partition contains the image of the operating system, applications and drivers. You can reinstall the Operating system and preinstalled applications from this recovery process. Also, when the notebook is turned on for the first time, it will prompts the user to create Recovery CD's or DVD's. If the notebook is having CD/DVD writer, you can burn the Recovery CD's or DVD's.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This Recovery Partition can be used for the following:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Creating Recovery kit for your notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Restoring factory installed application or driver.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Reinstall or repair the existing Operating System.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Restore the notebook to its Original factory settings.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The Recovery Manager examines your computer and determines how many blank CDs or DVDs the disk creation process will require.<span>  </span> The disk creation process may require up to 10 or more CD-R disks or 1-3 DVD-R or DVD+R disks.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>     </span> CAUTION:<span>  </span> The disk must be either CD-R, DVD-R, or DVD+R.<span>  </span> Do not</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>               </span> use CD-RW or DVD-RW disks because the Read/Write type</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>               </span> disks will cause the creation process to fail.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For detailed information on using the PC Recovery solution and creating recovery discs, please visit the following Web site:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00608578&amp;cc=us&amp;lc=en&amp;dlc=en&amp;dlc=en&amp;lang=en</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Recovery partition + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I would like to inform you that the latest model HP Pavilion/Compaq notebooks are not shipped with Recovery Disks. These models are featured with new Recovery process called &quot;Softthinks PC Recovery&quot;. The Recovery Partition contains the image of the operating system, applications and drivers. You can reinstall the Operating system and preinstalled applications from this recovery process. Also, when the notebook is turned on for the first time, it will prompts the user to create Recovery CD's or DVD's. If the notebook is having CD/DVD writer, you can burn the Recovery CD's or DVD's.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This Recovery Partition can be used for the following:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Creating Recovery kit for your notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Restoring factory installed application or driver.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Reinstall or repair the existing Operating System.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Restore the notebook to its Original factory settings.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The Recovery Manager examines your computer and determines how many blank CDs or DVDs the disk creation process will require.<span>  </span> The disk creation process may require up to 10 or more CD-R disks or 1-3 DVD-R or DVD+R disks.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>     </span> CAUTION:<span>  </span> The disk must be either CD-R, DVD-R, or DVD+R.<span>  </span> Do not</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>               </span> use CD-RW or DVD-RW disks because the Read/Write type</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>               </span> disks will cause the creation process to fail.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For detailed information on using the PC Recovery solution and creating recovery discs, please visit the following Web site:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00809678&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Recovery Solutions</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Using HP Recovery Manager -- Vista</span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00809678&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Using the PC Recovery Solution - XP</span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00608578&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Windows XP reinstallation---<span>  </span> XP</span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.windowsreinstall.com/winxphome/installxpcdrepair/part1.htm </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Creating Recovery Disc Set in Windows Vista</span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00882383&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Obtaining a Recovery CD or DVD set for Windows Vista </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00810334&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Restoring Files from Backup </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00854616&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Recovery Partition is Accessible to Reading and Writing Files</span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00679369&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Removing the HP Recovery Partition</span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00810279&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">HP Recovery Partition Has More Than 1GB Free Space After Out of Box Experience</span></p> <p class=MsoNormal><span style="font-size:10pt">http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?lang=en&amp;cc=us&amp;objectID=c01325164&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Repairing a Corrupted Installation Using HP Recovery Manager</span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00859585&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Errors, problems and fixes: </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">'What do you want Windows to do?' Message Appears while Creating Recovery Media</span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00679381&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Disc Inserted is a Rewritable Disc Message when Creating Recovery Media</span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00679330&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">HP Backup and Recovery Partition Patch </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en&amp;cc=us&amp;swItem=ob-53258-1&amp;jumpid=reg_R1002_USEN </span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"><span> </span> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Reinstalling Vista using recovery discs—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please follow the below provided steps to reinstall the vista operating system using recovery disks. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Please be aware that using your system's recovery discs may take two hours, and that using discs ordered directly from HP may take four to six hours and include several restarts. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Use the recovery discs to restore the PC by following the steps below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Open the disc drive door and turn off the PC.</span></p> <p class=MsoNormal><span style="font-size:10pt">2) Insert the first Recovery disc in the disc drive and close the door.</span></p> <p class=MsoNormal><span style="font-size:10pt">3) Press the power button to turn on the PC.</span></p> <p class=MsoNormal><span style="font-size:10pt">4) The HP Recovery Manager window appears during the boot process.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the HP Recovery Manager can access the hard drive, a prompt is displayed to backup the user files before continuing the recovery. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the HP Recovery Manager cannot access the hard drive to fix the system errors, the HP Recovery Manager will overwrite all the data and reconfigure the entire hard drive to its original condition. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">5) Follow the prompts to insert any additional recovery discs in the disc drive.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I recommend you to refer to the below HP support document for additional information on reinstalling the vista operating system using recovery disks.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?lc=en&amp;dlc=en&amp;cc=us&amp;docname=c00809678</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Also, I refer the below web link for mor information reinstall the vista operating system.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://support.microsoft.com/kb/918884</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the test indicates status as failed then the issue is due to the malfunction of the hard drive and it needs to be replaced.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I hope this information helps you. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please get back to us with your observations and results; I will be glad to assist you further.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">=== Remove and reseat Hard Drive.</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please follow the steps as provided in the service manual of your Notebook model to remove and reseat the Hard Drive. To download the service manuals, please visit the below given web link: </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10032.www1.hp.com/ctg/Manual/c01095493.pdf </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The above link is in .pdf format, to open the link acrobat reader application should be preinstalled in your system. Please download the software from the URL below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.adobe.com/products/acrobat/readstep2.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can find the instructions under &quot;Removing and Replacement&quot; category on the service manual link on page numbers</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">=== Remove and reseat memory module.</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">We can further isolate the issue, by removing and reseating the memory module on your notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please refer to the below Maintenance and service manual of your notebook which is in a pdf document format. This document contains pictorial representation in removing and replacement of the memory module of your notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For your convenience, I provide the link to download the service manual of your notebook model.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10032.www1.hp.com/ctg/Manual/c01035677.pdf</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The above link is in .pdf format, to open the link acrobat reader application should be preinstalled in your system. Please download the software from the URL below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.adobe.com/products/acrobat/readstep2.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Website.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can find the instructions under &quot;Removing and Replacement&quot; category on the service manual link on page numbers 128 &amp; 129</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Additionally, for a pictorial representation of remove/replace procedure, please refer the weblink below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.yoingco.com/install_laptop_memory_vista.htm</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p>Mon, 09 Nov 2009 13:37:06 Z2009-11-09T13:37:07Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/cbeb797b-c1f0-45a8-8a0d-ed1bc8f9bae6http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/cbeb797b-c1f0-45a8-8a0d-ed1bc8f9bae6vcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 16 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Rebate information - crafted—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I apologize for the inconvenience caused to you by our phone support agent.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Hussein, I regret to inform you that we at email support do not have the information regarding rebates. Hence I request you to visit the below URl's for information and assistance regarding rebates.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For information on rebates offered by HP we have the following options:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> HP Offers and Rebates Web site: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>   </span> http://www.hp.com/united-states/rebateGateway.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> HP Shopping Web site: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>   </span> http://www.shipping.hp.com</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>   </span> On the Web page that opens select &quot;mail-in rebate&quot; option from the</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>   </span> menu on the left side of your screen and then select the appropriate</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>   </span> product line.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> HP Awards Center at 1-888-385-5410 from 7:00 a.m. to 7:00 p.m. MST,</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>   </span> Monday through Friday.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please refer the email address of HP rebates: hp@web-rebates.com.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I hope you understand our limitations. If you need any further clarification, please get back to us. We will be glad to assist you further.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Recovery discs order OOW + XP—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">From your E-Mail, I understand that you have lost the XP operating system discs of your notebook and needs assistance to obtain a new set of discs.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am glad that you have forwarded us your concerns and I take great pleasure in assisting you in this regard.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Stephen, you can order the recovery discs for your notebook from the below HP weblink. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Notebook recovery disc set for Windows XP Home:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">https://warp2.external.hp.com/driver/dr_country_select.asp?Product=438970-001&amp;lang=en&amp;cc=us</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Stephen, I would be happy to ship you a new set of Recovery discs for your notebook if the notebook is under warranty. But I regret to inform that as notebook is out of warranty I am unable to do. I hope you understand my limitation in helping you to ship the recovery discs for your notebook for free of cost. I appreciate your co-operation in this regard.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After you have ordered the recovery discs for your notebook follow the steps in the given weblink below to reinstall Windows XP.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?lc=en&amp;dlc=en&amp;cc=us&amp;docname=c00608578</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please move to 'Recovering from the recovery disks' section in the above link which has the steps to reinstall using recovery discs.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Also, I would like to provide you an other weblink which has a pictorial information of reinstalling Windows XP Operating system.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.windowsreinstall.com/winxphome/installxpcdrepair/part1.htm</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Hope this information helps in addressing your concern. If you need further assistance, please reply to this message and we will be happy to assist you further.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Recovery discs-Best to serve—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, You can order recovery discs from below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.best2serve.com/</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: The URLs above will take you to non HP Web sites.HP does not control and is not responsible for information outside of the HP Web site. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Once you visit the above Web site please perform the below steps to place order for recover discs: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Select continue </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Enter &quot; RST123A#ABA&quot; in search field and select continue. (The product number of your notebook) </span></p> <p class=MsoNormal><span style="font-size:10pt">3) Select your notebook model from the search results to continue. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Enter your notebook serial number &quot;2CE456104Q&quot; without quotes in the serial number field and select continue. ( The serial # of your notebook)</span></p> <p class=MsoNormal><span style="font-size:10pt">5) Follow on-screen instructions.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Alternatively, I recommend you to visit the Web site given below for a list of available languages, locations, and phone numbers to contact HP:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://welcome.hp-ww.com/country/us/eng/wwcontact.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;, after you have ordered the recovery CDs, please refer to the below weblink for information on reinstalling operating system using recovery CDs </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?lc=en&amp;dlc=en&amp;cc=us&amp;docname=c00608578</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I hope this information helps you. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please do not hesitate to write back to us in case you have further queries. I assure you of our dedicated support at all the times.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Recovery disks shippment-reply-Escalated-UK</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Hello lorraine, </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Thank you for writing back to us with the information we requested. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">We have taken note of the details you have provided and we would initiate the process for the Recovery Cds to be dispatched to you. We would send you another email once the process has been initiated.<span>  </span> This email would contain the details of the Customer Service Order [CSO] number. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you have further question please reply to this email and we will be happy to assist you further.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For information on keeping your HP and Compaq products up and running, please visit our Web site </span></p> <p class=MsoNormal><span style="font-size:10pt">at: http://www.hp.com/go/totalcare </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Sincerely, </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Clarissa</span></p> <p class=MsoNormal><span style="font-size:10pt">HP Total Care<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, as you are unable to create recovery CDs, I have to forward your inquiry to the appropriate region to ship the recovery CDs, as the notebook service and parts vary from region to region. One of the representatives from that group will be contacting you within one local business day. This representative will become your point of contact for this issue. </span></p> <p class=MsoNormal><span style="font-size:10pt">To forward your request to appropriate region please get back to me with the below details : </span></p> <p class=MsoNormal><span style="font-size:10pt">Reason:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">E-mail Case:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Product Model:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Serial number:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Operating System:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Purchase Date:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Customer Name:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Company:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Daytime Telephone:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Evening Telephone:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">E-mail:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Address:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Country:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Best time to call:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Previous history:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Problem description:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Notes:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Thank you for your patience. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am sure that once you get back to me with the requested details and after forwarding it to the appropriate region, you will be assisted with high priority in resolving the issue with the notebook. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you need further assistance, please reply to this message and we will be happy to assist you further.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Recovery disks, Shipping info—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you do not have the recovery disks created or if you are unable to create recovery Cds, please let me know. We would be glad to ship you a set of recovery disks for you notebook. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please complete the information below so we can process your request for the shipping of recovery CDs:</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Shipping Information(USA):</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> E-mail-id:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Name(First and Last):<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Organization:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Mailing Address (No P.O. Boxes):<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Apartment/Building/Mailstop:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> City:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> State:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Zip/Postal Code:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Country:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Phone Number (including area code): </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Product Information:</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Product Model Number (ex: ZX5120us, ZD7040us etc):<span>   </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Product Number (ex: C1234A):<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Product Serial Number (ex: CND44720L9):<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Product Purchase Date:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Also, I request you to provide me the exact serial number of your notebook in order to check the model specifications and warranty status. The serial number and product number can be found on the bottom side of your Notebook. The serial number will be a 10 or 12 digit alpha numeric characters.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For example, the service tag, located on the bottom of the notebook PC, contains the following information: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Product Name:<span>  </span> Compaq Presario V6000</span></p> <p class=MsoNormal><span style="font-size:10pt">Serial Number:<span>  </span> CNF1234567 </span></p> <p class=MsoNormal><span style="font-size:10pt">Part Number:<span>  </span> RST123A#ABA </span></p> <p class=MsoNormal><span style="font-size:10pt">Model Number:<span>  </span> V6000XX </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information on finding the serial number, visit the following URL:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?lc=en&amp;cc=us&amp;docname=c00033108</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After you have received the recovery disks I recommend you to perform full system recovery.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Recovery Disks--Creation(Final)--VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I would like to inform you that the latest HP Pavilion notebook models are not shipped with Recovery Disks. These models are featured with new Recovery process called &quot;Softthinks PC Recovery&quot;. The Recovery Partition contains the image of the operating system, applications and drivers. You can reinstall the Operating system and preinstalled applications from this recovery process. Also, when the notebook is turned on for the first time, it prompts the user to create Recovery CD's or DVD's. If the notebook is having CD/DVD writer, you can burn the Recovery CD's or DVD's.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This Recovery Partition can be used for the following:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Creating Recovery kit for your notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Restoring factory installed application or driver.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Reinstall or repair the existing Operating System.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Restore the notebook to its Original factory settings.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The Recovery Manager examines your computer and determines how many blank CDs or DVDs the disk creation process will require.<span>  </span> The disk creation process may require up to 10 or more CD-R disks or 1-3 DVD-R or DVD+R disks.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>     </span> CAUTION:<span>  </span> The disk must be either CD-R, DVD-R, or DVD+R.<span>  </span> Do not</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>               </span> use CD-RW or DVD-RW disks because the Read/Write type</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>               </span> disks will cause the creation process to fail.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==Creating the Recovery disks</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==Create a set of operating system Recovery disks by following the steps below. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1.Click Start and type Recovery in the Search field. </span></p> <p class=MsoNormal><span style="font-size:10pt">2.Select Recovery Manager , and when the wizard opens, click the Advanced options button, if available. </span></p> <p class=MsoNormal><span style="font-size:10pt">3.Select Recovery disk Creation , and follow the directions provided in the wizard. </span></p> <p class=MsoNormal><span style="font-size:10pt">4.After all the recovery disks are created, label the disks and store them in a safe place.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information in creating recovery disks set for your notebook, please refer to the below HP support document:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00882383&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00809678&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, if you are unable to create the recovery discs, please provide me the below information. We will be glad to ship you a set of recovery disks for you notebook at free of cost as your notebook is under warranty:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Shipping Information(USA):</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> E-mail-id:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Name(First and Last):<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Organization:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Mailing Address (No P.O. Boxes):<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Apartment/Building/Mailstop:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> City:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> State:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Zip/Postal Code:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Country:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Phone Number (including area code): </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Product Information:</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Product Model Number (ex: ZX5120us, ZD7040us etc):<span>   </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Product Number (ex: C1234A):<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Product Serial Number (ex: CND44720L9):<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Product Purchase Date:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please get back to us with the requested information in case you are unable to create the recovery discs; I will be glad to assist you further.</span></p>Mon, 09 Nov 2009 13:36:23 Z2009-11-09T13:36:23Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/593ce6ba-2141-451e-893d-d298adfa1f07http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/593ce6ba-2141-451e-893d-d298adfa1f07vcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 15 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Power drain—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The problem you are experiencing could be due to Static Charges present in the notebook. To explain this, I would like to inform you that, due to regular usage of the notebook, some static charges tend to stay in the computer Mother Board, this sometimes results in not allowing the computer to function properly.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">In order to isolate the issue, I request you to perform Power Drain to discharge the static charges from the notebook capacitors: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please follow the power drain procedure to confirm the same:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Disconnect the AC Adapter.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. Remove the Battery.</span></p> <p class=MsoNormal><span style="font-size:10pt">3. Hold the Power button down for 45 seconds to 1 minute.</span></p> <p class=MsoNormal><span style="font-size:10pt">4. Reconnect the AC adapter.</span></p> <p class=MsoNormal><span style="font-size:10pt">5. Turn on the Notebook power.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Try restarting the computer only with the AC power, without the battery &amp; vice-versa. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== OR ==</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">===Power Drain Procedure=== </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Disconnect the AC Adapter. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Remove the Battery. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Hold the Power button down for 30 seconds to 1 minute. </span></p> <p class=MsoNormal><span style="font-size:10pt">4. Reconnect the AC adapter. </span></p> <p class=MsoNormal><span style="font-size:10pt">5. Turn on the Notebook power. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After performing the power drain procedure perform the steps below: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Remove battery and AC adapter </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Press and hold power button for at least 30 seconds (That's the power drain procedure I mentioned). </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Hold down Func-B-Q keys simultaneously *while plugging AC power back in.* </span></p> <p class=MsoNormal><span style="font-size:10pt">4. Continue holding the keys down for a few seconds after plugging in. </span></p> <p class=MsoNormal><span style="font-size:10pt">5. Release keys and then hit power button. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This should start the notebook. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== OR ==</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Power drain:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Try doing power drain by taking out the battery &amp; keep holding down the power button for complete one minute to drain out the power from the computer components. Restart the computer after putting the battery in. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Power drain process:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1.<span>  </span> Shut the computer down.</span></p> <p class=MsoNormal><span style="font-size:10pt">2.<span>  </span> Disconnect the AC adapter and remove the battery.</span></p> <p class=MsoNormal><span style="font-size:10pt">3.<span>  </span> Press the power button down for about 30-60 seconds.</span></p> <p class=MsoNormal><span style="font-size:10pt">4.<span>  </span> Reconnect the AC adapter and the battery.</span></p> <p class=MsoNormal><span style="font-size:10pt">5.<span>  </span> Restart the computer.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Try restarting the computer only with the AC power, without the battery &amp; vice-versa. </span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">=== Reinstalling Power Management In Windows VISTA ===</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To reinstall Power Management in Windows VISTA, follow these steps: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Click Start button</span></p> <p class=MsoNormal><span style="font-size:10pt">2. From Start menu Click Control panel</span></p> <p class=MsoNormal><span style="font-size:10pt">3. In Control Panel Click the &quot;System&quot; icon</span></p> <p class=MsoNormal><span style="font-size:10pt">4. In the System Window look on the Left hand side of the window and you will see a list of options. Click on the &quot;Advanced System Settings&quot; option</span></p> <p class=MsoNormal><span style="font-size:10pt">5. Because Computer management requires administrative privileges you may find the User Account Control will pop up. If it does then enter the required information (if you are not the administrator) or, if you are the administrator, click the Continue button. The System properties window will open.</span></p> <p class=MsoNormal><span style="font-size:10pt">6. Click on &quot;Hardware&quot; tab and &quot;click on Device Manager&quot;</span></p> <p class=MsoNormal><span style="font-size:10pt">7. In Device Manager, click the plus sign (+) next to System Devices. </span></p> <p class=MsoNormal><span style="font-size:10pt">8. Right-click the &quot;ACPI Fixed Features button&quot; and select Uninstall. </span></p> <p class=MsoNormal><span style="font-size:10pt">9. Click on &quot;OK&quot; and Restart the notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">On restarting the notebook, Windows will automatically detects and installs Power Management on the computer.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I recommend you to visit the below weblink for information on understanding power management in Vista:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00825528&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">----------------------------------------------------------------</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To restore the default power management settings in the registry (VISTA): </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en&amp;cc=us&amp;swItem=ob-46019-1&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">=== Reinstalling Power Management In Windows XP ===</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To reinstall Power Management in Windows XP, follow these steps: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1.<span>  </span> Click Start, select Control Panel, and then choose Performance and Maintenance. </span></p> <p class=MsoNormal><span style="font-size:10pt">2.<span>  </span> Click the &quot;System icon&quot; to open the System properties window. </span></p> <p class=MsoNormal><span style="font-size:10pt">3.<span>  </span> Select the &quot;Hardware&quot; tab and click &quot;Device Manager&quot;. </span></p> <p class=MsoNormal><span style="font-size:10pt">4.<span>  </span> Click the plus (+) sign next to System Devices. </span></p> <p class=MsoNormal><span style="font-size:10pt">5.<span>  </span> Right-click the ACPI Fixed Features button and select Uninstall. </span></p> <p class=MsoNormal><span style="font-size:10pt">6.<span>  </span> Restart the system. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">On restarting the system, Windows will automatically detect and install Power Management on the computer.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==OR==</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Here is an other approach to Reinstalling Power Management In Windows XP </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">=== Reinstalling Power Management In Windows XP ===</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Right Click on My Computer, click properties. The System properties window will open.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. Click the &quot;Hardware&quot; tab, and then click the &quot;Device Manager&quot; button.</span></p> <p class=MsoNormal><span style="font-size:10pt">5. Click the plus (+) sign next to System Devices.</span></p> <p class=MsoNormal><span style="font-size:10pt">6. Right-click the &quot;ACPI Fixed Features&quot; button, and select Uninstall.</span></p> <p class=MsoNormal><span style="font-size:10pt">7. Restart the system. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">On restarting the system, Windows will automatically detect and install Power Management on the computer. </span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">==Adjust your power settings</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Windows Vista is automatically set to a power setting called the &quot;Balanced&quot; power plan. This power plan setting seems to be fine for desktop computers and laptops that are plugged in. But laptops working on battery power may require an adjustment of this setting. Here's how:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Go to Start&gt;&gt; Control Panel&gt;&gt; Power Option icon. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) From here, you can select a different &quot;Power Plan&quot; or you can change the settings of the selected power plan manually. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) To adjust the selected setting, click the &quot;Change Plan Settings&quot; link under the &quot;Balanced&quot; entry. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Adjust the settings to fit your systems needs or you can dive a little deeper by clicking the &quot;Change advanced power settings&quot; link. </span></p> <p class=MsoNormal><span style="font-size:10pt">5) When you are finished, click the &quot;Save changes&quot; button at the bottom of the window. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <span style="font-size:10pt;font-family:'Times New Roman','serif'"><br style="page-break-before:always"> </span> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Processor and VGA Card upgrade—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">From your E-Mail, I understand that you would like to know whether processor and VGA card can be upgraded on your HP Pavilion dv9310us Notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am glad that you have forwarded us your concerns and have given me an opportunity to assist you. I assure you of my complete assistance. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Rene, I am afraid to inform, that processor it is not an option for upgrade on most of the notebook computers. This is because in the notebook there are many factors that need to be taken into consideration when upgrading the processor on the notebook. Variables such as the Chipset support, motherboard type, BIOS version and socket type must all be taken into consideration when attempting to upgrade a processor. Incorrect DIP switch settings may damage the new processor and the motherboard.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, I have gone through the database with the information you have provided that your notebook presently has 1.6 GHz AMD Turion™ 64 X2 Dual-Core Mobile Technology TL-52 processor with 512KB+512KB L2 Cache and 1024MB DDR2 System Memory (2 Dimm). That is the maximum supported by the Motherboard on your HP Notebook. As the maximum capability of the processor already has been bundled with your HP Notebook so there is no option of upgrading it.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Also, I regret to inform that the graphics card is also not an option for upgrade on most of the notebook computers. This is because the notebook computers are equipped with an onboard graphics card which cannot be replaced separately. Additionally, there is no provision for the installation of an additional graphics adapter like in a desktop computer, where you can install two graphics card simultaneously (a PCI and an AGP display card), if it is necessary. Therefore, you cannot upgrade the video or graphics card of the Notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, you can update the video driver regularly to improve the video card performance. For your convenience I am provding the latest video drivers for your notebook. You can download and update the Video drivers from the URL provided below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">ftp://ftp.hp.com/pub/softpaq/sp35501-36000/sp35686.exe</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">** Installation Instructions:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Download the Softpaq .EXE file to a directory on your hard drive.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. Execute the downloaded file and follow the on-screen instructions.</span></p> <p class=MsoNormal><span style="font-size:10pt">3. Restart the notebook when the installation is complete.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Performing the above options may gradually increase the video card performance.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, plese visit the URL link provided below to update the drivers regularly for your notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/softwareList?os=2093&amp;lc=en&amp;dlc=en&amp;cc=us&amp;lang=en&amp;product=3370372</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Additionally, you can improve the system performance by performing some options on the Notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?lc=en&amp;cc=us&amp;dlc=en&amp;docname=c00816938</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am sure that I have thoroughly addressed your concerns. Please do not hesitate to write back to us us if you have any questions or<span>  </span> clarifications. I will be glad to assist you.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Processor upgrade article--AAMBATI</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I understand that you would like to know whether processor can be changed on your HP Notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am afraid to inform, that processor it is not an option for upgrade on most of the notebook computers. This is because in the notebook there are many factors that need to be taken into consideration when upgrading the processor on the notebook. Variables such as the Chipset support, motherboard type, BIOS version and socket type must all be taken into consideration when attempting to upgrade a processor. Incorrect DIP switch settings may damage the new processor and the motherboard.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, I have gone through the database with the information you have provided that your notebook presently has 1.86 GHz Intel Core Solo processor T1350 and that is maximum supported by the Motherboard on your HP Notebook. As the maximum capability of the processor already has been bundled with your HP Notebook so there is no option of upgrading it.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This information should have answered your query. If you have further questions, please reply to this message.<span>  </span> We will be happy to assist you further.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Product Information—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">&lt;&gt;&lt;&gt;&lt;&gt;, the issue might be related to hardware. However, I am unable to find any relevant information related to the product as you have not provided the serial number tous. I can assist you in the best possible way, if you could provide more information relating to the product.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Product Information:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Product Model Number (ex: ze4250, n5441 etc):<span>   </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Product Number (ex: C1234A):<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Product Serial Number (ex: US12345678):<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Product Purchase Date:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Operating System (Exampla: Windows XP, Vista or Other): </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Country of purchase:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Country of Residence:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The Model, Product and Serial number is located on the bottom of the PC on a white sticker.</span></p> <p class=MsoNormal><span style="font-size:10pt">- OR -</span></p> <p class=MsoNormal><span style="font-size:10pt">Please visit the following URL for more information how to Locating the Product Number and Serial Number:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?lc=en&amp;cc=us&amp;docname=c00033108</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please get back to me with the requested information. It would be a great pleasure to help an esteemed customer like you.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">ReadyBoost</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">ReadyBoost</span></p> <p class=MsoNormal><span style="font-size:10pt">-----------</span></p> <p class=MsoNormal><span style="font-size:10pt">ReadyBoost is a new disk caching technology included in Windows Vista that uses flash memory to boost your system performance. It can use any form of flash memory such as a USB 2.0 drive, SD card or CompactFlash.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The USB flash drives are not as fast as the main memory, they can be faster than a hard disk drive and enabling ReadyBoost can free up some of the main memory which could be used for other tasks and applications.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">How to use Windows ReadyBoost?</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">First of all you need to have a flash memory device, such as a USB 2.0 drive. The device can have any amount of memory from 512 MB to 4GB. If it is bigger than 4 GB there is no problem, but ReadyBoost will use only up to 4 GB due to the limitations of the filesystem.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) First you plug it in and the Autoplay menu pops up.</span></p> <p class=MsoNormal><span style="font-size:10pt">2) Click on Speed up my system and then select the amount of space you want to be used by ReadyBoost. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: The recommended amount of memory to use for ReadyBoost is one to three times the amount of memory (RAM) installed in your computer. For instance, if your computer has 512 MB of RAM and you plug in a 4 GB USB flash memory stick, you should set aside from 512 MB to 1.5 GB.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">3) After you have selected the amount of memory for ReadyBoost, click the OK button and that's it - ReadyBoost will start its work.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you look on the memory stick you will see a file with the name ReadyBoost.sfcache. That is where ReadyBoost does all the caching.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For a pictorial representation and more information on Readyboost, please refer the below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.vista4beginners.com/ReadyBoost</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div>Mon, 09 Nov 2009 13:35:40 Z2009-11-09T13:35:40Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/2f404fd3-bfe3-41cc-b960-f13995208330http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/2f404fd3-bfe3-41cc-b960-f13995208330vcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasad Clarissa 14 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Operating system not found + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">From your E-Mail description, I understand that upon switching your notebook you are being displayed an error message &quot;operating system not found&quot;.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I greatly appreciate that you have forwarded us your concerns and has given me an opportunity to assist you in this regard.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Firstly, a note of appreciation for the efforts you put into in order to resolve the issue.<span>  </span> I can understand that such issues with the computer can be very upsetting. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please be assured that I will provide the necessary assistance to you in this regard.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Chris, This issue may occur if one or more of the following conditions are true: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">• The basic input/output system (BIOS) does not detect the hard disk. </span></p> <p class=MsoNormal><span style="font-size:10pt">• The hard disk is damaged. </span></p> <p class=MsoNormal><span style="font-size:10pt">• Sector 0 of the physical hard disk drive has an incorrect or malformed master boot record (MBR).</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To isolate and resolve the issue, I recommend you to remove and reseat the hard drive once and check with the issue. Please reset the hard drive by peforming the steps provided in the web link below: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">=== Remove and reseat hard drive.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please refer to the below Maintenance and service manual of your notebook which is in a pdf document format. This document contains pictorial representation in removing and replacement of the hard drive of your notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For your convenience, I provide the link to download the service manual for your notebook model.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10032.www1.hp.com/ctg/Manual/c01295898.pdf</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The above link is in .pdf format, to open the link acrobat reader application should be preinstalled in your system. Please download the software from the URL below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.adobe.com/products/acrobat/readstep2.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Website.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can find the instructions under &quot;Removing and Replacement&quot; category on the service manual link on page numbers 52 &amp; 53</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This will recognize the hard drive in the BIOS and you will be able to get the windows screen. However, If the issue persists, try to Restore the Notebook to original condition with the Recovery Manager.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Perform System recovery using Recovery Manager and restore the notebook to factory settings.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Reboot the notebook PC and press F11 when the HP logo displays on the notebook PC display. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. The HP Recovery Manager displays. Click Next. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Select Yes and then click Next. </span></p> <p class=MsoNormal><span style="font-size:10pt">The Recovery Manager restores the notebook PC to the factory image. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I recommend you to visit the below weblink for more information on restoring the notebook to its factory shipped settings using recovery manager.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/fastFaqLiteDocument?lc=en&amp;cc=us&amp;dlc=en&amp;product=18703&amp;docname=c00809678</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please refer to the 'Restore PC to original condition with the Recovery Manager from within Windows Vista' in above web link.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I hope this information helps you.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please get back to me with observations and results because it is important that I resolve your issue in a timely manner. I would like to add that we value your precious time and would be here round the clock to serve you.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you have further questions, please reply to this message and we will be happy to help you. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Glad to be of Service,</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Optimize or Reset Internet Explorer 7 + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The below information help to troubleshoot Internet Explorer stop, restart, or crash problems:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Configuration settings in Windows Internet Explorer 7 may cause one or more of the following issues: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. You experience performance problems in Internet Explorer 7.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. You receive an error message in Internet Explorer 7. For example, you receive an &quot;Internet Explorer cannot display the Web page&quot; error message.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Internet Explorer 7 stops responding.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Here are the steps to optimize or reset Internet Explorer 7 in Windows Vista to resolve these issues. Use the following methods in the order in which they are presented.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Method 1: Clear cached data in Internet Explorer 7:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To determine whether a performance issue or an error message is caused by corruption in the temporary Internet files or in other cached information that is used by Internet Explorer 7, you must clear cached data. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To do this, follow these steps: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Open Internet Explorer 7. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Click Tools, and then click Delete Browsing History. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) In Delete Browsing History, click Delete All. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Click to select the Also delete files and settings stored by add-ons check box, and then click OK. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">A progress bar is displayed to indicate that the browsing history is being cleared. After this process is complete, test Internet Explorer to verify that it works correctly. If issues still occur, try Method 2.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Method 2: Reset security settings for Internet Explorer 7:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you configure security settings to be too restrictive, you may prevent Internet Explorer 7 from displaying certain Web sites. To determine whether an issue is caused by overly restrictive security settings, revert to default security settings. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To do this, follow these steps: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Open Internet Explorer 7. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Click Tools, and then click Internet Options. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) Click the Security tab. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Click Reset all zones to default level, and then click OK.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After you do this, test Internet Explorer to verify that it works correctly. If issues still occur, try Method 3. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Note If this method does not resolve the issue, you can restore Internet Explorer 7 to its previous security level. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Method 3: Run Internet Explorer 7 in &quot;No Add-Ons&quot; mode </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Internet Explorer 7 add-ons, such as ActiveX controls and browser toolbars, are used by some Web sites to provide an enhanced browsing experience. An error may occur if an add-on is damaged or if an add-on conflicts with Internet Explorer 7. To determine whether the error is caused by an add-on, run Internet Explorer 7 in &quot;No Add-Ons&quot; mode. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To do this, follow these steps: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Click Start, and then type Internet Explorer in the Start Search box. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Click Internet Explorer (No Add-Ons). Internet Explorer 7 opens without add-ons, toolbars, or plug-ins. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) Test Internet Explorer to verify that it works correctly. If issues still occur, try Method 4. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If no errors occur, the problem is caused by one of the add-ons that typically load together with Internet Explorer 7. In this case, use one of the following options. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Option 1: Reset Internet Explorer 7</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Reset Internet Explorer 7 to its default configuration. This step will also disable any add-ons, plug-ins, or toolbars that are installed. Although this solution is quick, it also means that, if you want to use any of those add-ons in the future, they must be reinstalled. To reset Internet Explorer 7 settings, use Method 4. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Option 2: Use the Manage Add-ons tool to determine which add-on is causing the issue</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Use the Manage Add-ons tool in Internet Explorer 7 to individually disable each add-on to determine which add-on is causing errors. To do this, follow these steps: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Open Internet Explorer 7. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Click Tools, point to Manage Add-ons, and then click Enable or Disable Add-ons. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) In the Show box, select Add-ons that have been used by Internet Explorer to display all add-ons that are installed on the computer. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">4) For each item in this list, select the add-on, and then click Disable under Settings. </span></p> <p class=MsoNormal><span style="font-size:10pt">5) When you have disabled all the items in this list, click OK.</span></p> <p class=MsoNormal><span style="font-size:10pt">6) Exit and then restart Internet Explorer 7. </span></p> <p class=MsoNormal><span style="font-size:10pt">7) If issues do not occur, repeat steps 1 through 3.</span></p> <p class=MsoNormal><span style="font-size:10pt">8) Click Enable for a single add-on.</span></p> <p class=MsoNormal><span style="font-size:10pt">9) Repeat steps 6 through 8 until you determine which add-on causes errors to occur. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After you have used this process to determine which add-on is causing errors, you can disable that add-on. Or, you can uninstall the software that installs the add-on. We also recommend that you contact the software vendor that provided the add-on for additional troubleshooting and support. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Method 4: Reset Internet Explorer 7 settings</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To determine whether a performance issue or an error message is caused by configuration settings, reset Internet Explorer 7 to its default configuration. This was its state when Windows Vista was originally installed. To do this, follow these steps: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Open Internet Explorer 7. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Click Tools, and then click Internet Options. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) Click the Advanced tab. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Under Reset Internet Explorer Settings, click Reset. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For additional information on the issue, please refer the below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://support.microsoft.com/kb/936213</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Order HP Parts HP Phone Support—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Given below are two options to order parts and accessories from HP: </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">==Option 1: To order by phone:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To order by phone please call 1-800-227-8164 </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==Option 2: To order online:</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Visit the online HP Parts Store at: </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h20141.www2.hp.com/hpparts </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">-------------------------------------------</span></p> <p class=MsoNormal><span style="font-size:10pt">Also, I am glad to inform that the above Parts are available with HP. For your convenience, I am providing you the Phone number of HP part store where you can order the part online : </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Phone number : 1-800-227-8164 </span></p> <p class=MsoNormal><span style="font-size:10pt">---------------------------------------------------------</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can order the hard disk drive from HP Part Store:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Option 1:<span>  </span> To order by phone</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To order by phone please call 1-800-227-8164, 7 days a week, 24 hours a day.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Option 2:<span>  </span> To order online</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Visit the online HP Parts Store at:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h20141.www2.hp.com/hpparts</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">* Once you visit the above mentioned web link, under Search by product name, enter F577CL and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt">* Click on GF602UA.</span></p> <p class=MsoNormal><span style="font-size:10pt">* Under Keyword search drop down menu, select Drive and click on small button(&gt;&gt;) next to the Drop down combo box.</span></p> <p class=MsoNormal><span style="font-size:10pt">* You will find the ordering options.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">order part in part store</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can place an order for the part by the following options:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Given below are two options to order parts and accessories:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Option 1:<span>  </span> To order by phone</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To order by phone please call 1-800-227-8164, 7 days a week, 24 hours a day.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Option 2:<span>  </span> To order online</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Visit the online HP Parts Store at:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h20141.www2.hp.com/hpparts</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">- OR -</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Visit HP shopping at:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.shopping.hp.com/cgi-bin/hpdirect/shopping</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can always get back to us for further support. Please feel free to write anytime you have questions or concerns. We will respond in a timely manner.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.hp.com/home/ownerservices</span></p> <p class=MsoNormal><span style="font-size:10pt">Sincerely,</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Recovery CD-ROM - Windows XP Home Edition (North American English) </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please call 1-800-227-8164 for checking the availability of above part at HP Parts store.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the above mentioned part is unavailable at HP, you can also refer the URL mentioned below for purchasing the part from third party vendors:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">&lt;&lt;&lt;&lt;&lt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL(s) above will take you to a non HP Web site.<span>  </span> HP does not control and is not responsible for information<span>        </span> outside of the HP Web site.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">paid mailin and ASP</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">At this point, the issue seems to be a hardware malfunction of your notebook which requires a onsite diagnosis by an HP technician. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, HP can initiate repair process for your notebook. However, this service would be paid repair. If you wish to send the notebook for repair to HP service center then the minimum cost to setup a repair will be $298 and if any part is replaced then you will be charged separately for the part replaced.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE : Once you send the notebook for repair and after that if you do not want the notebook to get it repaired by HP service center, then the amount charged for setting up the service ($298) will not be refunded.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To help you in setting up the repair service, One of our agents will call you. To initiate the service you need to provide us the phone number and shipping information:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please provide the following information about when we can contact you:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Name:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Organization:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Mailing Address (No P.O. Boxes):</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Apartment/Building/Mailstop:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> City:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> State:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Zip/Postal Code:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Phone Number (including area code):</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Email Address :</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Dates and Days (2 days):</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Time to call (Specify Time Zone):</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Telephone Number to call</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Or</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I suggest you to contact any nearby HP authorized service center to get your notebook repaired. HP have a network of Authorized Support Providers for sales and repairs. HP has authorized Radio Shack, Circuit City and Best Buy as the service provider for the Pavilion notebooks. For your convenience, I am providing the information to locate the Service centers below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Radio Shack :</span></p> <p class=MsoNormal><span style="font-size:10pt">----- -----</span></p> <p class=MsoNormal><span style="font-size:10pt">You can locate the nearest Radio Shack repair store by visiting the following URL:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.radioshack.com/Locator/Locator.asp</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Circuit</span> <span style="font-size:10pt"> City</span> <span style="font-size:10pt">:</span></p> <p class=MsoNormal><span style="font-size:10pt">------- ----</span></p> <p class=MsoNormal><span style="font-size:10pt">You can locate the nearest Circuit City repair store by visiting the following URL:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.circuitcity.com/locator.jsp</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Best Buy:</span></p> <p class=MsoNormal><span style="font-size:10pt">---- ---</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can locate the nearest Best Buy repair store by visiting the following URL:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.bestbuy.com/StoreLocator/index.asp</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Alternatively, you can also find the nearest HP Authorized Support Provider within the United States by visiting the following Web site:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://hp.infonow.net/bin/findNow?CLIENT_ID=HP_LOC_USA_SRV</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">This will take you to the find a US local HP authorized service provider page. Please follow the steps given below to locate the HP authorized service provider:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1.<span>  </span> In the category menu select the appropriate HP product.</span></p> <p class=MsoNormal><span style="font-size:10pt">2.<span>  </span> After selecting the appropriate category you will get a list of HP products in the Family box.<span>  </span> Select the family in</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>    </span> which your product is located.</span></p> <p class=MsoNormal><span style="font-size:10pt">3.<span>  </span> After Selecting the family of the product you will get a list of products under the product list.</span></p> <p class=MsoNormal><span style="font-size:10pt">4.<span>  </span> Select your product from the list under the product section and click Next.</span></p> <p class=MsoNormal><span style="font-size:10pt">5.<span>  </span> Follow the instructions on the service options page.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If no stores are located, repeat the search using another zip code within your local area.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am sure the information provided will be helpful and addressed your concern.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please let me know if I can be of any further assistance. I will be happy to assist you further.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Glad to be of Service.</span></p>Mon, 09 Nov 2009 13:34:27 Z2009-11-09T13:34:30Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/71e0bdf1-1c16-4d00-9583-e174e678a3c4http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/71e0bdf1-1c16-4d00-9583-e174e678a3c4vcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasad Clarissa 14 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Operating system not found + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">From your E-Mail description, I understand that upon switching your notebook you are being displayed an error message &quot;operating system not found&quot;.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I greatly appreciate that you have forwarded us your concerns and has given me an opportunity to assist you in this regard.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Firstly, a note of appreciation for the efforts you put into in order to resolve the issue.<span>  </span> I can understand that such issues with the computer can be very upsetting. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please be assured that I will provide the necessary assistance to you in this regard.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Chris, This issue may occur if one or more of the following conditions are true: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">• The basic input/output system (BIOS) does not detect the hard disk. </span></p> <p class=MsoNormal><span style="font-size:10pt">• The hard disk is damaged. </span></p> <p class=MsoNormal><span style="font-size:10pt">• Sector 0 of the physical hard disk drive has an incorrect or malformed master boot record (MBR).</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To isolate and resolve the issue, I recommend you to remove and reseat the hard drive once and check with the issue. Please reset the hard drive by peforming the steps provided in the web link below: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">=== Remove and reseat hard drive.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please refer to the below Maintenance and service manual of your notebook which is in a pdf document format. This document contains pictorial representation in removing and replacement of the hard drive of your notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For your convenience, I provide the link to download the service manual for your notebook model.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10032.www1.hp.com/ctg/Manual/c01295898.pdf</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The above link is in .pdf format, to open the link acrobat reader application should be preinstalled in your system. Please download the software from the URL below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.adobe.com/products/acrobat/readstep2.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Website.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can find the instructions under &quot;Removing and Replacement&quot; category on the service manual link on page numbers 52 &amp; 53</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This will recognize the hard drive in the BIOS and you will be able to get the windows screen. However, If the issue persists, try to Restore the Notebook to original condition with the Recovery Manager.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Perform System recovery using Recovery Manager and restore the notebook to factory settings.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Reboot the notebook PC and press F11 when the HP logo displays on the notebook PC display. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. The HP Recovery Manager displays. Click Next. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Select Yes and then click Next. </span></p> <p class=MsoNormal><span style="font-size:10pt">The Recovery Manager restores the notebook PC to the factory image. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I recommend you to visit the below weblink for more information on restoring the notebook to its factory shipped settings using recovery manager.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/fastFaqLiteDocument?lc=en&amp;cc=us&amp;dlc=en&amp;product=18703&amp;docname=c00809678</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please refer to the 'Restore PC to original condition with the Recovery Manager from within Windows Vista' in above web link.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I hope this information helps you.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please get back to me with observations and results because it is important that I resolve your issue in a timely manner. I would like to add that we value your precious time and would be here round the clock to serve you.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you have further questions, please reply to this message and we will be happy to help you. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Glad to be of Service,</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Optimize or Reset Internet Explorer 7 + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The below information help to troubleshoot Internet Explorer stop, restart, or crash problems:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Configuration settings in Windows Internet Explorer 7 may cause one or more of the following issues: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. You experience performance problems in Internet Explorer 7.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. You receive an error message in Internet Explorer 7. For example, you receive an &quot;Internet Explorer cannot display the Web page&quot; error message.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Internet Explorer 7 stops responding.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Here are the steps to optimize or reset Internet Explorer 7 in Windows Vista to resolve these issues. Use the following methods in the order in which they are presented.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Method 1: Clear cached data in Internet Explorer 7:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To determine whether a performance issue or an error message is caused by corruption in the temporary Internet files or in other cached information that is used by Internet Explorer 7, you must clear cached data. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To do this, follow these steps: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Open Internet Explorer 7. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Click Tools, and then click Delete Browsing History. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) In Delete Browsing History, click Delete All. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Click to select the Also delete files and settings stored by add-ons check box, and then click OK. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">A progress bar is displayed to indicate that the browsing history is being cleared. After this process is complete, test Internet Explorer to verify that it works correctly. If issues still occur, try Method 2.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Method 2: Reset security settings for Internet Explorer 7:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you configure security settings to be too restrictive, you may prevent Internet Explorer 7 from displaying certain Web sites. To determine whether an issue is caused by overly restrictive security settings, revert to default security settings. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To do this, follow these steps: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Open Internet Explorer 7. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Click Tools, and then click Internet Options. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) Click the Security tab. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Click Reset all zones to default level, and then click OK.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After you do this, test Internet Explorer to verify that it works correctly. If issues still occur, try Method 3. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Note If this method does not resolve the issue, you can restore Internet Explorer 7 to its previous security level. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Method 3: Run Internet Explorer 7 in &quot;No Add-Ons&quot; mode </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Internet Explorer 7 add-ons, such as ActiveX controls and browser toolbars, are used by some Web sites to provide an enhanced browsing experience. An error may occur if an add-on is damaged or if an add-on conflicts with Internet Explorer 7. To determine whether the error is caused by an add-on, run Internet Explorer 7 in &quot;No Add-Ons&quot; mode. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To do this, follow these steps: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Click Start, and then type Internet Explorer in the Start Search box. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Click Internet Explorer (No Add-Ons). Internet Explorer 7 opens without add-ons, toolbars, or plug-ins. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) Test Internet Explorer to verify that it works correctly. If issues still occur, try Method 4. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If no errors occur, the problem is caused by one of the add-ons that typically load together with Internet Explorer 7. In this case, use one of the following options. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Option 1: Reset Internet Explorer 7</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Reset Internet Explorer 7 to its default configuration. This step will also disable any add-ons, plug-ins, or toolbars that are installed. Although this solution is quick, it also means that, if you want to use any of those add-ons in the future, they must be reinstalled. To reset Internet Explorer 7 settings, use Method 4. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Option 2: Use the Manage Add-ons tool to determine which add-on is causing the issue</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Use the Manage Add-ons tool in Internet Explorer 7 to individually disable each add-on to determine which add-on is causing errors. To do this, follow these steps: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Open Internet Explorer 7. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Click Tools, point to Manage Add-ons, and then click Enable or Disable Add-ons. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) In the Show box, select Add-ons that have been used by Internet Explorer to display all add-ons that are installed on the computer. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">4) For each item in this list, select the add-on, and then click Disable under Settings. </span></p> <p class=MsoNormal><span style="font-size:10pt">5) When you have disabled all the items in this list, click OK.</span></p> <p class=MsoNormal><span style="font-size:10pt">6) Exit and then restart Internet Explorer 7. </span></p> <p class=MsoNormal><span style="font-size:10pt">7) If issues do not occur, repeat steps 1 through 3.</span></p> <p class=MsoNormal><span style="font-size:10pt">8) Click Enable for a single add-on.</span></p> <p class=MsoNormal><span style="font-size:10pt">9) Repeat steps 6 through 8 until you determine which add-on causes errors to occur. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After you have used this process to determine which add-on is causing errors, you can disable that add-on. Or, you can uninstall the software that installs the add-on. We also recommend that you contact the software vendor that provided the add-on for additional troubleshooting and support. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Method 4: Reset Internet Explorer 7 settings</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To determine whether a performance issue or an error message is caused by configuration settings, reset Internet Explorer 7 to its default configuration. This was its state when Windows Vista was originally installed. To do this, follow these steps: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Open Internet Explorer 7. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Click Tools, and then click Internet Options. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) Click the Advanced tab. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Under Reset Internet Explorer Settings, click Reset. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For additional information on the issue, please refer the below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://support.microsoft.com/kb/936213</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Order HP Parts HP Phone Support—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Given below are two options to order parts and accessories from HP: </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">==Option 1: To order by phone:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To order by phone please call 1-800-227-8164 </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==Option 2: To order online:</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Visit the online HP Parts Store at: </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h20141.www2.hp.com/hpparts </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">-------------------------------------------</span></p> <p class=MsoNormal><span style="font-size:10pt">Also, I am glad to inform that the above Parts are available with HP. For your convenience, I am providing you the Phone number of HP part store where you can order the part online : </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Phone number : 1-800-227-8164 </span></p> <p class=MsoNormal><span style="font-size:10pt">---------------------------------------------------------</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can order the hard disk drive from HP Part Store:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Option 1:<span>  </span> To order by phone</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To order by phone please call 1-800-227-8164, 7 days a week, 24 hours a day.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Option 2:<span>  </span> To order online</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Visit the online HP Parts Store at:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h20141.www2.hp.com/hpparts</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">* Once you visit the above mentioned web link, under Search by product name, enter F577CL and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt">* Click on GF602UA.</span></p> <p class=MsoNormal><span style="font-size:10pt">* Under Keyword search drop down menu, select Drive and click on small button(&gt;&gt;) next to the Drop down combo box.</span></p> <p class=MsoNormal><span style="font-size:10pt">* You will find the ordering options.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">order part in part store</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can place an order for the part by the following options:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Given below are two options to order parts and accessories:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Option 1:<span>  </span> To order by phone</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To order by phone please call 1-800-227-8164, 7 days a week, 24 hours a day.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Option 2:<span>  </span> To order online</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Visit the online HP Parts Store at:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h20141.www2.hp.com/hpparts</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">- OR -</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Visit HP shopping at:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.shopping.hp.com/cgi-bin/hpdirect/shopping</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can always get back to us for further support. Please feel free to write anytime you have questions or concerns. We will respond in a timely manner.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.hp.com/home/ownerservices</span></p> <p class=MsoNormal><span style="font-size:10pt">Sincerely,</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Recovery CD-ROM - Windows XP Home Edition (North American English) </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please call 1-800-227-8164 for checking the availability of above part at HP Parts store.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the above mentioned part is unavailable at HP, you can also refer the URL mentioned below for purchasing the part from third party vendors:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">&lt;&lt;&lt;&lt;&lt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL(s) above will take you to a non HP Web site.<span>  </span> HP does not control and is not responsible for information<span>        </span> outside of the HP Web site.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">paid mailin and ASP</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">At this point, the issue seems to be a hardware malfunction of your notebook which requires a onsite diagnosis by an HP technician. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, HP can initiate repair process for your notebook. However, this service would be paid repair. If you wish to send the notebook for repair to HP service center then the minimum cost to setup a repair will be $298 and if any part is replaced then you will be charged separately for the part replaced.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE : Once you send the notebook for repair and after that if you do not want the notebook to get it repaired by HP service center, then the amount charged for setting up the service ($298) will not be refunded.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To help you in setting up the repair service, One of our agents will call you. To initiate the service you need to provide us the phone number and shipping information:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please provide the following information about when we can contact you:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Name:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Organization:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Mailing Address (No P.O. Boxes):</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Apartment/Building/Mailstop:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> City:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> State:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Zip/Postal Code:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Phone Number (including area code):</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Email Address :</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Dates and Days (2 days):</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Time to call (Specify Time Zone):</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Telephone Number to call</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Or</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I suggest you to contact any nearby HP authorized service center to get your notebook repaired. HP have a network of Authorized Support Providers for sales and repairs. HP has authorized Radio Shack, Circuit City and Best Buy as the service provider for the Pavilion notebooks. For your convenience, I am providing the information to locate the Service centers below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Radio Shack :</span></p> <p class=MsoNormal><span style="font-size:10pt">----- -----</span></p> <p class=MsoNormal><span style="font-size:10pt">You can locate the nearest Radio Shack repair store by visiting the following URL:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.radioshack.com/Locator/Locator.asp</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Circuit</span> <span style="font-size:10pt"> City</span> <span style="font-size:10pt">:</span></p> <p class=MsoNormal><span style="font-size:10pt">------- ----</span></p> <p class=MsoNormal><span style="font-size:10pt">You can locate the nearest Circuit City repair store by visiting the following URL:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.circuitcity.com/locator.jsp</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Best Buy:</span></p> <p class=MsoNormal><span style="font-size:10pt">---- ---</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can locate the nearest Best Buy repair store by visiting the following URL:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.bestbuy.com/StoreLocator/index.asp</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Alternatively, you can also find the nearest HP Authorized Support Provider within the United States by visiting the following Web site:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://hp.infonow.net/bin/findNow?CLIENT_ID=HP_LOC_USA_SRV</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">This will take you to the find a US local HP authorized service provider page. Please follow the steps given below to locate the HP authorized service provider:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1.<span>  </span> In the category menu select the appropriate HP product.</span></p> <p class=MsoNormal><span style="font-size:10pt">2.<span>  </span> After selecting the appropriate category you will get a list of HP products in the Family box.<span>  </span> Select the family in</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>    </span> which your product is located.</span></p> <p class=MsoNormal><span style="font-size:10pt">3.<span>  </span> After Selecting the family of the product you will get a list of products under the product list.</span></p> <p class=MsoNormal><span style="font-size:10pt">4.<span>  </span> Select your product from the list under the product section and click Next.</span></p> <p class=MsoNormal><span style="font-size:10pt">5.<span>  </span> Follow the instructions on the service options page.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If no stores are located, repeat the search using another zip code within your local area.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am sure the information provided will be helpful and addressed your concern.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please let me know if I can be of any further assistance. I will be happy to assist you further.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Glad to be of Service.</span></p>Mon, 09 Nov 2009 13:34:21 Z2009-11-09T13:34:21Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/2b916909-760f-481f-8061-be351f293aa3http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/2b916909-760f-481f-8061-be351f293aa3vcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 13 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} a:link, span.MsoHyperlink {mso-style-unhide:no; color:blue; text-decoration:underline; text-underline:single;} a:visited, span.MsoHyperlinkFollowed {mso-style-noshow:yes; mso-style-priority:99; color:purple; mso-themecolor:followedhyperlink; text-decoration:underline; text-underline:single;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Office 2007(Final)—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I would like to inform you that your Notebook is shipped with Microsoft Office 2007 software which is complimentary software provided by HP. This software is not provided by the demand of any customer, instead provided as an offer. HP installs trail version programs due to the agreement with Microsoft and cannot provide full version, as the manufacturer of the MS Office program is Microsoft. Once the trial version expires, user needs to convert it to full version by contacting Microsoft. This process is applicable for all the HP Laptops and Desktops. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This pre-installed Microsoft® Office 2007 software is a Student and Teacher Edition and it is a 60 Day Trial Version. </span></p> <p class=MsoNormal><span style="font-size:10pt">The product key printed on the label at the bottom of the notebook is for Windows Vista operating system and not for Microsoft® Office. There is a separate key for Microsoft Office. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For the detailed information regarding the procedure to be followed to get the productkey to activate it, I would request you to visit the link provided below: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00901036&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Or </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c01077814&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">As this trial version of this software expires after 60 days, you may need to activate it. For your convenience I have provided the steps below for the activation.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please follow the below steps to resolve the Microsoft office Product key issue:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==Step 1: You may use Office without a key</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: You will only be able to use office 25 times with this method.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">When you launch Microsoft Office, you will be presented with a screen to enter your product key. If you cannot locate your Microsoft Office Trial product key, HP recommends following option two below. However, if you wish to continue, click on the Continue button.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You will be presented a popup reminder, that you can only run Office trial 25 times without entering a product key. Each time you launch Office, the number will count down. Once the countdown reaches 0, Microsoft Office will enter a reduced functionality mode. You will not be able to save or edit Microsoft Office files until the product key is entered.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you wish to use Office without a product key, click the “No” button. You will now be able to use Microsoft Office Home and Student 2007 trial.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==Step 2: How to obtain a replacement key</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This will activate the full 60 day trial.<span>  </span> If you need a replacement key, please visit the following web site:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.microsoft.com/office/pctrial2007</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can also make it to full version by contacting Microsoft.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Alternatively, you can also convert your pre-installed trial version of Microsoft Office Home &amp; Student 2007 to full version by purchasing the Legal version from the below weblink.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Microsoft Office Home and Student 2007 (RZ463AA#ABA) :</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.shopping.hp.com/product/notebook/notebook_hp/software/1/accessories/RZ463AA%2523ABA</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Additionally, to use the MS Office software after the trial period, you have to convert it to full version. For more information on it visit the link provided below: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://support.microsoft.com/kb/927756 </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Office 2007 and Vista Activation—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">From your e-mail I understand that the notebook is prompting for the product key. I also understand that it is not accepting the 25 digit key on the bottom of the notebook sticker.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I appreciate that you have forwarded us your concerns and have given me an opportunity to assist you in this regards. Please be assured of my complete assistance to help you resolve the issue. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I apologize for the inconvenience caused and appreciate your patience and cooperation.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Greg, Let me inform you that the key provided to you under the notebook sticker is for the Operating System shipped along with the notebook. Also, I am unable to trace the exact issue you are having with the notebook while activating. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you are trying to validate Microsoft Vista Operating system(If it is a retail version), Initially I recommend you to </span></p> <p class=MsoNormal><span style="font-size:10pt">Install the below given update(patch) to resolve an issue when you are prompted to activate a pre-installed copy of Windows Vista. After you install this item, you may have to restart your computer.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">===Update for Windows Vista (KB931573) :</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.microsoft.com/downloads/details.aspx?FamilyId=5549C98D-421A-4F77-97F3-4E82A4D6471B&amp;displaylang=en</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: Clicking the link may give an error indicating it is invalid. Copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After downloading and installing the update, I request you to perform the steps provided in the below web link to activate the Vista Operating System:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c01053605&amp;cc=us&amp;lc=en&amp;dlc=en&amp;dlc=en&amp;lang=en</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> Copy and paste the entire link in a new browser window.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Else if you are trying to activate Microsoft Office 2007 software, this issue may be caused if the Microsoft office is not activated. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I would like to inform you that the pre-installed Microsoft® Office 2007<span>  </span> software is a Student and Teacher Edition and it is a 60 Day Trial Version. The key which is under your Notebook is for Windows Vista.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">As the 60 days trial period is expired you may need to activate it. For your convenience I have provided the steps below for the activation.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please follow the below steps to resolve the Microsoft office Product key issue:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==Step 1: You may use Office without a key</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: You will only be able to use office 25 times with this method</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">When you launch Microsoft Office, you will be presented with a screen to enter your product key. If you cannot locate your Microsoft Office Trial product key, HP recommends following option two below. However, if you wish to continue, click on the Continue button.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You will be presented a popup reminder, that you can only run Office trial 25 times without entering a product key. Each time you launch Office, the number will count down. Once the countdown reaches 0, Microsoft Office will enter a reduced functionality mode. You will not be able to save or edit Microsoft Office files until the product key is entered.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you wish to use Office without a product key, click the “No” button. You will now be able to use Microsoft Office Home and Student 2007 trial.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==Step 2: How to obtain a replacement key</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This will activate the full 60 day trial.<span>  </span> If you need a replacement key, please visit the following web site:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.microsoft.com/office/pctrial2007</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. Copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can also make it to full version by contacting Microsoft.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Alternatively, you can also convert your pre-installed trial version of Microsoft Office Home &amp; Student 2007 to full version by purchasing the Legal version from the below weblink.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Microsoft Office Home and Student 2007 (RZ463AA#ABA) :</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.shopping.hp.com/product/notebook/notebook_hp/software/1/accessories/RZ463AA%2523ABA</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. Copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am sure above information will help you.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you need any further assistance or clarifications, please do not hesitate to reply to this mail. I would be glad to assist you.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">One time service enhancement (BEST)—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">With regards to your e-mail, I understand that your notebook does not boot. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I appreciate the efforts you have put to resolve the issue by following the basic troubleshooting steps and letting me know the steps that have been performed. I regret for the inconvenience caused to you and let me assist you in this regard.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Richard, as you have performed the basic troubleshooting steps and still the notebook does not boot, I am afraid to say that the issue is due to the internal hardware malfunction of the notebook. Troubleshooting issue related to hardware will not be effective through e-mail support. Hence the notebook requires an onsite diagnosis by a Technical expert. Hence I request you to send the notebook for Free mail-in service. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Also, I would like to inform that this notebook is covered under Limited Service Enhancement Program as HP has identified that certain Notebooks have following issues which will cover under One Time Enhancement:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">* Notebook does not boot.</span></p> <p class=MsoNormal><span style="font-size:10pt">* The notebook does not detect wireless networks and the wireless adapter is not detected in the Device Manager.</span></p> <p class=MsoNormal><span style="font-size:10pt">* There is no video on the computer LCD panel or external monitor.</span></p> <p class=MsoNormal><span style="font-size:10pt">For more information on HP Limited Warranty Service Enhancement, please refer the below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Hence the mail-in service for your notebook is absolutely free. HP will repair service the notebook and ship it back to you. Therefore I request you to get back to me with with the following information and I would be glad to arrange a Free mail-in service for your Notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==Shipping Information: == </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">* Full Name: </span></p> <p class=MsoNormal><span style="font-size:10pt">* Organization: </span></p> <p class=MsoNormal><span style="font-size:10pt">* Mailing Address (No P.O. Boxes): </span></p> <p class=MsoNormal><span style="font-size:10pt">* Apartment/Building/Mailstop: </span></p> <p class=MsoNormal><span style="font-size:10pt">* City: </span></p> <p class=MsoNormal><span style="font-size:10pt">* State: </span></p> <p class=MsoNormal><span style="font-size:10pt">* Zip/Postal Code: </span></p> <p class=MsoNormal><span style="font-size:10pt">* Phone Number (including area code): </span></p> <p class=MsoNormal><span style="font-size:10pt">* Convenient business day for the notebook pickup: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Note:<span>  </span> If you have any important data, you can backup the data from hard disk using USB Hard drive enclosure. The 2.5&quot; Hard Drive case that will connect to any USB port. You can use this hard drive case and backup data on any other laptop or desktop either at home or at office or any other friends place without opening the system. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You have to just remove the hard drive from the laptop and put that hard drive in this USB hard drive case and then connect it to USB port. You can find the USB hard drive connecter at the following Web sites:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.cooldrives.com/usb-2-mini-aluminum-enclosure-with-one-touch-backup.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.coolerexpress.com/me930.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information on how to Back up User Files please refer the below HP support document:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00850162&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Also review the Service Agreement below and provide your acceptance for setting up the service. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*** Service Agreement *** </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please refer the below weblink in Preparing Notebook for Mail-In Service(Service agreement): </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00064570&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please get back to us with the requested shipping information; I will be glad to assist you further in getting your notebook repaired and serviced under Limited Service Enhancement Program.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Awaiting your response.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Online virus scan vista</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">visit the online antivirus web sites dedicated to scan the defective computers online. To remove spy-ware, mal-ware you can run any of the anti-spyware applications suggested in this email. I have listed necessary steps to scan and repair the notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Visit the following URL, which are equipped with online virus scanner:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://security.symantec.com/sscv6/default.asp?langid=ie&amp;venid=sym</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://us.mcafee.com/root/mfs/default.asp</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You need to obtain anti-spyware from any of the URLs given below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Download Ad-Aware anti-spyware application from the following<span>  </span> URL:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://download.com.com/3000-2144-10045910.html?part=69274&amp;subj=dlpage&amp;tag=button</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Download Spybot Search &amp; Destroy anti-spyware application from the following<span>  </span> URL:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.safer-networking.org/en/mirrors/index.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>     </span> NOTE:<span>  </span> The URLs above will take you to a non HP Web site.<span>  </span> HP does </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> not control and is not responsible for information outside </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">How to perform virus scan:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><a href="http://offsite.lse.ac.uk/virus/vscan85inst.htm">http://offsite.lse.ac.uk/virus/vscan85inst.htm</a> </span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Operating System bit count 32 or 64 + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Determine the operating system bit count</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Here are the steps to determine whether a computer is running a 32-bit Windows operating system or a 64-bit Windows operating system. Generally, a computer's bit count indicates how much data it can process, the speed with which it can process the data, and also the memory capacity. The bit count of the operating system installed on the computer should match the bit count of the computer in order to optimize the computer's performance. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Windows Vista:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you have Windows Vista, there are two methods to determine whether you are running a 32-bit or a 64-bit version. If one does not work, try the other.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">#Method 1: View System window in Control Panel</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Click Start, type system in the Start Search box, and then click system in the Programs list. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) The operating system appears as follows:</span></p> <p class=MsoNormal><span style="font-size:10pt">. For a 64-bit version operating system: 64-bit Operating System appears for the System type under System.</span></p> <p class=MsoNormal><span style="font-size:10pt">. For a 32-bit version operating system: 32-bit Operating System appears for the System type under System.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">#Method 2: View System Information window</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Click Start, type system in the Start Search box, and then click System Information in the Programs list. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) When System Summary is selected in the navigation pane, the operating system is displayed as follows: </span></p> <p class=MsoNormal><span style="font-size:10pt">. For a 64-bit version operating system: x64-based PC appears for the System type under Item.</span></p> <p class=MsoNormal><span style="font-size:10pt">. For a 32-bit version operating system: x86-based PC appears for the System type under Item.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information ofn operating system bit count, please refer the below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://support.microsoft.com/kb/827218</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Operating System bit count 32 or 64 + XP—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Determine the operating system bit count</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Here are the steps to determine whether a computer is running a 32-bit Windows operating system or a 64-bit Windows operating system. Generally, a computer's bit count indicates how much data it can process, the speed with which it can process the data, and also the memory capacity. The bit count of the operating system installed on the computer should match the bit count of the computer in order to optimize the computer's performance. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Windows XP:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you have Windows XP, there are two methods to determine whether you are running a 32-bit or a 64-bit version. If one does not work, try the other.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">#Method 1: View System Properties in Control Panel</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Click Start, and then click Run.</span></p> <p class=MsoNormal><span style="font-size:10pt">2) Type sysdm.cpl, and then click OK.</span></p> <p class=MsoNormal><span style="font-size:10pt">3) Click the General tab. The operating system appears as follows:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">. For a 64-bit version operating system: Microsoft Windows XP Professional x64 Edition Version &lt; Year&gt; appears under System. </span></p> <p class=MsoNormal><span style="font-size:10pt">. For a 32-bit version operating system: Microsoft Windows XP Professional Version &lt;Year&gt; appears under System. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Note &lt;Year&gt; is a placeholder for a year.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">#Method 2: View System Information window</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Click Start, and then click Run.</span></p> <p class=MsoNormal><span style="font-size:10pt">2) Type winmsd.exe, and then click OK.</span></p> <p class=MsoNormal><span style="font-size:10pt">3) When System Summary is selected in the navigation pane, locate Processor under Item in the details pane. Note the value. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">. If the value that corresponds to Processor starts with x86, the computer is running a 32-bit version of the Windows operating system.</span></p> <p class=MsoNormal><span style="font-size:10pt">. If the value that corresponds to Processor starts with ia64 or AMD64, the computer is running a 64-bit version of the Windows operating system.</span></p>Mon, 09 Nov 2009 13:32:40 Z2009-11-09T13:32:41Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/8a965b88-863f-457b-a34b-04ccda2574d1http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/8a965b88-863f-457b-a34b-04ccda2574d1vcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 12 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Missing operating system + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">From your E-Mail description, I understand that your Notebook will not boot and gives error message &quot;Missing Operating System&quot;.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Firstly, a note of appreciation for the efforts you put into in order to resolve the issue.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I totally understand your concern and before proceeding further with the issue, I am glad that you have forwarded us your concerns and has given me an opportunity to assist you.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I can understand that such issues with the Notebook can be very upsetting. Please be assured that I will provide the necessary assistance to you in this regard.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">&quot;Missing operating system&quot; is a message from the bios that it can't find the system files on the default boot drive.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Daniel, This error message may appear for one or more of the following reasons:</span></p> <p class=MsoNormal><span style="font-size:10pt">1) The notebook BIOS does not detect the hard drive.</span></p> <p class=MsoNormal><span style="font-size:10pt">2) The hard drive is physically damaged.</span></p> <p class=MsoNormal><span style="font-size:10pt">3) The Windows Master Boot Record (MBR) located on the hard drive is corrupted.</span></p> <p class=MsoNormal><span style="font-size:10pt">4) The partition or section of the hard drive containing the Windows MBR is no longer active.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To isolate and resolve the issue, I recommend you to remove and reseat the hard drive once and perform hard drive self test.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please refer to the below Maintenance and service manual of your notebook which is in a pdf document format. This document contains pictorial representation in removing and replacement of the hard drive of your notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For your convenience, I will provide the link to download the service manual. Here is the link to download the service manual for your notebook model.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10032.www1.hp.com/ctg/Manual/c01095493.pdf</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: <span> </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The above link is in .pdf format, to open the link acrobat reader application should be preinstalled in your system. Please download the software from the URL below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.adobe.com/products/acrobat/readstep2.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: The link starts from &quot;http&quot; and ends with &quot;pdf&quot;. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>                                                 </span> Clicking on the link may not open the web page. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>                                                 </span> Copy the link and Paste it in the Internet Explorer address bar and Press Enter. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Website.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can find the instructions under &quot;Removing and Replacement&quot; category on the service manual link on page numbers 30 &amp; 31</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After removing and replacing hard drive, if the issue exists, please perform hard drive self test by following the below given steps:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1)Restart the computer </span></p> <p class=MsoNormal><span style="font-size:10pt">2)At the HP Logo screen, press F10 key to enter into BIOS. </span></p> <p class=MsoNormal><span style="font-size:10pt">3)Using the arrow keys, navigate to Tools Menu. </span></p> <p class=MsoNormal><span style="font-size:10pt">4)Select HDD Self Test </span></p> <p class=MsoNormal><span style="font-size:10pt">5)After selecting &quot;HDD Self Test&quot; you can see two options </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>   </span> a) Short Test.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>   </span> b) Long Test.</span></p> <p class=MsoNormal><span style="font-size:10pt">6)Please select the Long Test and then note the result after the completion of the test.</span></p> <p class=MsoNormal><span style="font-size:10pt">7)Once finished, navigate to Exit Menu, select &quot;Exit Discarding Changes&quot;.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information on HDD Self Test, please visit the following Web site:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?lc=en&amp;cc=us&amp;docname=c00439024</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After performing hard drive self test, if the test has passed, I recommed you to reinstall the operating system using the recovery discs.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I request you to perform the steps provided in the below web link to reinstall the operating system. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?lc=en&amp;dlc=en&amp;cc=us&amp;docname=c00681978</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please get back to me with observations and results because it is important that I resolve your issue in a timely manner. I would like to add that we value your precious time and would be here round the clock to serve you.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you have further questions, please reply to this message and we will be happy to help you. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Glad to be of Service,</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">More information—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I understand that the issue persists after performing the steps provided in our previous correspondence. I appreciation for the efforts you put into in order to resolve the issue.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I apologize for the inconvenience caused and appreciate your patience and cooperation.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Nicholas, before I give you any suggestions it is important for me that I analyze the issue thoroughly, for which I need some more information from your side. We can then investigate the issue and find the solution. Hence I request you to provide me with the following information to accurately identify and resolve the issue. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">* The exact steps that you have performed in troubleshooting the issue.</span></p> <p class=MsoNormal><span style="font-size:10pt">* Have you received any Error messages while performing the steps?</span></p> <p class=MsoNormal><span style="font-size:10pt">* At what point you are getting the error message: </span></p> <p class=MsoNormal><span style="font-size:10pt">* Have you deleted the Recovery partition?</span></p> <p class=MsoNormal><span style="font-size:10pt">* Have you created the Recovery CDs for your Notebook?</span></p> <p class=MsoNormal><span style="font-size:10pt">* When did the issue first occurred?</span></p> <p class=MsoNormal><span style="font-size:10pt">* Since how long you are experiencing the error message : </span></p> <p class=MsoNormal><span style="font-size:10pt">* Any other information which will help us :</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">* <span> </span> Exact issue you are experiencing : </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Exact error message (if any) : </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> At what point you are getting the error message : </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Since how long you are experiencing the error message : </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Any other information which will help us :</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please furnish me with the above information, So that I can assist you in the best possible way.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: There is a specific reason for asking you more information regarding the issue at hand. Complete knowledge of the issue will help us provide an accurate solution. Hence, we request you to provide a brief description of the issue. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please get back to us with the requested information; I will be glad to assist you further.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Native burning + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;, at this point, I would like to inform you that there is a native burning feature to burn CD/DVD on your Notebook. Hence, I request you to try to burning any data CD/DVD or music CD/DVD by using the native burn feature on your notebook. And reply back with the observation that the CD/DVD which you have burned using native burn feature is working or not.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Below is the URL, follow the step which in the URL to use built in CD/DVD burner:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.vista4beginners.com/Burn-CDs-DVDs</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt">-----------------------------------------------------------------------------------------------</span></p> <p class=MsoNormal><span style="font-size:10pt">== To burn a disc using the Live File System format</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Insert a writeable CD or DVD into your computer's CD or DVD recorder.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. In the dialog box that appears, click Burn files to data disc.</span></p> <p class=MsoNormal><span style="font-size:10pt">3. In the Burn a Disc dialog box, type a name for this disc, and then click Next.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">It might take several minutes for the disc to be formatted in the default Live File System format. When the formatting is complete, an empty disc folder opens.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">4. Open the folder that contains the files you want to burn, and then drag the files into the empty disc folder.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can copy files to the disc folder by dragging them to the disc icon or to an open disc folder. As you drag files into the disc folder, they are copied automatically to the disc.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== To burn a disc using the Mastered format</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Choose the Mastered format when you need a highly compatible disc that will play in computers with an older version of Windows or in media devices such as CD and DVD players that can read digital music and video files. For more information about choosing a disc format, see Which CD or DVD format should I use?</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Insert a writeable CD or DVD into your computer's CD or DVD recorder.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. In the dialog box that appears, click Burn files to data disc.</span></p> <p class=MsoNormal><span style="font-size:10pt">3. In the Burn a Disc dialog box, type a name for this disc, and then click Show formatting options.</span></p> <p class=MsoNormal><span style="font-size:10pt">4. Click Mastered, and then click Next. An empty disc folder opens.</span></p> <p class=MsoNormal><span style="font-size:10pt">5. Open the folder that contains the files you want to burn, and then drag the files into the empty disc folder.</span></p> <p class=MsoNormal><span style="font-size:10pt">6. On the toolbar, click Burn to disc.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The selected files are copied to the disc. When the disc burning is complete, the disc burner tray will open and you can remove the disc. You can now use the disc in another computer or media device. This type of disc does not need to be closed.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information on native burning, please refer the below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://windowshelp.microsoft.com/Windows/en-US/Help/b47eb51a-ea6d-4d97-97b0-2d07a59316981033.mspx</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Notebook is very slow at startup + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">From your E-mail, I understand that, the Notebook is very slow at startup and need assistance in resolving it. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I greatly appreciate that you have forwarded your concerns and have given me a chance to assist you with this matter. Please be assured that we are here to assist you and resolving your issue is of primary importance to us and I assure you that I will assist you with the best of my resources. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Kendra, please be informed that some applications that install components into the Windows Startup sequence may cause Windows to startup slowly. Some of these applications are poorly written, and others are designed to conflict with other applications or Windows operating system components. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Therefore, in order to resolve the issue, I recommend you to perform one or more of the following procedures listed in the link provided below to identify and eliminate the applications that have a negative impact on the performance of the computer. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?lc=en&amp;dlc=en&amp;cc=us&amp;docname=c00818494</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Also, I suggest you to follow the steps provided in the link provided below to increase the system performance and avoid slow functioning of the Notebook. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?lc=en&amp;dlc=en&amp;cc=us&amp;docname=c00816938</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Hope the information provided was useful to you. If you need further assistance, please reply to this message and we will be happy to assist you further.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Office Activation--Final—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">From your E-Mail, I understand that, when you attempt to activate Microsoft Office on your HP Pavilion dv5t-1000 CTO Notebook with the product key that is on the sticker at the back of the notebook, it recognizes as invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am glad that you have forwarded us your concerns and I assure you of my complete assistance in this regard.<span>   </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Alan, I would like to inform you that your Notebook is shipped with Microsoft Office 2007 software which is complimentary software provided by HP. This software is not provided by the demand of any customer, instead provided as an offer. HP installs trail version programs due to the agreement with Microsoft and cannot provide full version, as the manufacturer of the MS Office program is Microsoft. Once the trial version expires, user needs to convert it to full version by contacting Microsoft. This process is applicable for all the HP Laptops and Desktops. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This pre-installed Microsoft® Office 2007 software is a Student and Teacher Edition and it is a 60 Day Trial Version. The product key printed on the label at the bottom of the notebook is for Windows Vista operating system and not for Microsoft® Office. There is a separate key for Microsoft Office. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For the detailed information regarding the procedure to be followed to get the product key to activate it, I would request you to visit the link provided below: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c01077814&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==OR==</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00901036&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">As this trial version of this software expires after 60 days, you may need to activate it. For your convenience I have provided the steps below for the activation.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please follow the below steps to resolve the Microsoft office Product key issue:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==Step 1: You may use Office without a key</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: You will only be able to use office 25 times with this method.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">When you launch Microsoft Office, you will be presented with a screen to enter your product key. If you cannot locate your Microsoft Office Trial product key, HP recommends following option two below. However, if you wish to continue, click on the Continue button.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You will be presented a popup reminder, that you can only run Office trial 25 times without entering a product key. Each time you launch Office, the number will count down. Once the countdown reaches 0, Microsoft Office will enter a reduced functionality mode. You will not be able to save or edit Microsoft Office files until the product key is entered.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you wish to use Office without a product key, click the “No” button. You will now be able to use Microsoft Office Home and Student 2007 trial.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==Step 2: How to obtain a replacement key</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This will activate the full 60 day trial. To register the product key for Office 2007, refer the following link to generate trial version key: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://us1.trymicrosoftoffice.com/default.aspx?culture=en-US </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://office.microsoft.com/en-us/products/HA101741481033.aspx </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.microsoft.com/office/pctrial2007</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To convert the Microsoft Office 2007 to the full version, a full version product key is required. You can obtain the full version product key from Microsoft. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can visit the following URL for detailed information on converting the Microsoft Office 2007 trial version to full version: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://us20.trymicrosoftoffice.com/faq.aspx?culture=en-US </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I hope the above information helps you.<span>  </span> However, if you need further assistance, please reply to this message. I will be glad to assist you further.</span></p>Mon, 09 Nov 2009 13:32:06 Z2009-11-09T13:32:07Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/a4513a8b-a4c4-46e9-8fb2-3085e197ba88http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/a4513a8b-a4c4-46e9-8fb2-3085e197ba88vcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 11 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Memory upgrade—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">From your E-Mail, I understand that you would like to know if there are any possibilities to upgrade memory module on your Notebook model HP Pavilion dv6409wm.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am glad that you have forwarded us your concerns and have given me an opportunity to assist you. I assure you of my complete assistance. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Patti, I would like to inform you that, it is possible to upgrade the memory module on your notebook and here are the specifications and part number to order.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Memory Upgrade for HewlettPackard Pavilion dv6409wm Laptop</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The HewlettPackard Pavilion dv6409wm Laptop takes the n/a Memory Type, and comes installed with 1.0 GB (removable) of Memory. You can upgrade your HewlettPackard Pavilion dv6409wm Laptop to up to a maximum of 2.0 GB Memory, the system has 2 sockets to install Memory, already with 1.0 GB (removable) standard Memory installed. For best Laptop performance use the maximum amount of allowed Memory per slot for your<span>  </span> Laptop. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">===Memory Module Specification :</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Memory Module : 1024 MB DDR2 System Memory (2 Dimm), </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Specifications : 512MB, 667MHz, 200-pin, PC2-5300, SDRAM Small Outline Dual In-Line Memory Module (SODIMM) </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Part Number : 431402-001</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please refer the weblink to check the specifications of your notebook:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01079426&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Choose the following Memory Upgrade for HewlettPackard Pavilion dv6409wm Laptop.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To order from HP Home and Home Office Store, you have to contact : 888-999-4747.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Or you can place an order for the part by the following options:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Option 1: To order online</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Visit the online HP Parts Store at:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://hp.com/buy/parts</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Option 2: To order by phone</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To order by phone please call 1-800-227-8164, Monday-Friday, 7:00am to 7:00pm CST.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Also, for your convenience, I provide the 3rd party weblink where you can order the memory module for your notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.memorystock.com/memory/HewlettPackardPaviliondv6409wm.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After you have ordered tha memory module, please refer the below service manual which has the pictorial representation of the removal procedure.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">=== Remove and reseat memory module.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please refer to the below Maintenance and service manual of your notebook which is in a pdf document format. This document contains pictorial representation in removing and replacement of the memory module of your notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For your convenience, I provide the link to download the service manual of your notebook model.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10032.www1.hp.com/ctg/Manual/c01035677.pdf</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>    </span> <span>   </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The above link is in .pdf format, to open the link acrobat reader application should be preinstalled in your system. Please download the software from the URL below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.adobe.com/products/acrobat/readstep2.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Website.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can find the instructions under &quot;Removing and Replacement&quot; category on the service manual link on page numbers 129 &amp; 130</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information on Memory Specifications and Upgrading RAM, please refer the below HP support document:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== HP Notebook PCs -<span>  </span> Memory Specifications and Upgrading RAM</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00820047&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I hope the above information answers your query/queries; Please do not hesitate to contact us in case you need assistance.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I assure you of our dedicated support at all the times.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Microphone (Resolved) + Vista + Mail-in –VC</span> </span> </strong></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt"><span style="text-decoration:none"> </span> </span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt">From your E-Mail, I understand that you hear lot of static noise during playback after using the built-in microphone.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am glad that you have forwarded us your concerns and have given me an opportunity to assist you. Let me assist you in this regard.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Stephen, the issue could be due to corrupt audio drivers or internal hardware malfunction. To isolate the issue, I recommend you to perform the below mentioned options. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">= Uninstall Audio drivers following the steps below: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Click Start, type Manager in the search field, and then select Device Manager in the listing. </span></p> <p class=MsoNormal><span style="font-size:10pt">Alternately, click Start, right-click Computer, and select Properties. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. In Device Manager, click the plus sign (+) next to Sound and Audio devices. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Select IDT High-Definition Audio CODEC Driver and press the Delete key. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) When prompted, confirm that you wish to delete the driver. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After that, install an individual driver by following the steps below. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">=== Reinstall software or drivers from Recovery Manager:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I would like to share that you can also install individual hardware and software drivers and additional applications one at a time using the HP Backup and Recovery Manager. Several applications are factory-installed on the computer. Consult the manufacturer's installation instructions for any third-party programs purchased separately.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Install an individual driver or application by following the steps below.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">* Click Start and type Recovery in the Search field. </span></p> <p class=MsoNormal><span style="font-size:10pt">* Select Recovery Manager, and when the wizard opens, click the Advanced options button. </span></p> <p class=MsoNormal><span style="font-size:10pt">* Select Software program re-installationor Hardware driver re-installation, and click Next, view the prompt and Next. </span></p> <p class=MsoNormal><span style="font-size:10pt">* Select the desired drivers from the list, and click Next. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Allow the PC to restart if necessary to complete the installation.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information about Using HP Recovery Manager, please refer the below link:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&amp;docname=c00809678</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>     </span> NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> Copy and paste the entire link in a new browser window.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Uninstalling and reinstalling the Audio drivers should fix the issue. If the issue persists, update the BIOS version on your notebook with the latest/updated version.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== BIOS update.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The BIOS system can be updated with a process called 'flashing.' Close all other programs before trying to flash the BIOS.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Download and install BIOS update from the below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">WinFlash for HP Notebook System BIOS (for Notebooks with AMD Processors) - Microsoft Windows/Vista-Based</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">ftp://ftp.hp.com/pub/softpaq/sp42001-42500/sp42141.exe</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Installation Instructions </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Download the SoftPaq .EXE file to a directory on your hard drive. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Execute the downloaded file and follow the on-screen instructions. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Reboot the notebook after the installation is complete. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">WARNING:<span>  </span> Do not interrupt the BIOS installation process. Interrupting the process, or attempting to install the incorrect BIOS will cause damage to the BIOS and will require that the PC be repaired at an HP authorized facility. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Now, observe if you could hear any static noise from the notebook. If the issue still persists, the issue could be with internal hardware malfunction and requires onsite diagnosis. Hence, you may have to send the Notebook to HP for onsite diagnosis ( Free Mail-in Service). </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The HP trained technicians at the repair centers have an expertise to sort such issues.<span>  </span> They will diagnose the issue and if the issue is with some part malfunction, they will replace that part and send the Notebook back to you.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please complete the information below to process your request for the repair service:</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Shipping Information (United States): </span></p> <p class=MsoNormal><span style="font-size:10pt">* Full Name: </span></p> <p class=MsoNormal><span style="font-size:10pt">* Organization: </span></p> <p class=MsoNormal><span style="font-size:10pt">* Mailing Address (No P.O. Boxes): </span></p> <p class=MsoNormal><span style="font-size:10pt">* Apartment/Building/Mailstop: </span></p> <p class=MsoNormal><span style="font-size:10pt">* City: </span></p> <p class=MsoNormal><span style="font-size:10pt">* State: </span></p> <p class=MsoNormal><span style="font-size:10pt">* Zip/Postal Code: </span></p> <p class=MsoNormal><span style="font-size:10pt">* Phone Number (including area code): </span></p> <p class=MsoNormal><span style="font-size:10pt">* Convenient business day for the notebook pickup: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Note:<span>  </span> If you have any important data, you can backup the data from hard disk using USB Hard drive enclosure. The 2.5&quot; Hard Drive case that will connect to any USB port. You can use this hard drive case and backup data on any other laptop or desktop either at home or at office or any other friends place without opening the system. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You have to just remove the hard drive from the laptop and put that hard drive in this USB hard drive case and then connect it to USB port. You can find the USB hard drive connecter at the following Web sites:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.cooldrives.com/usb-2-mini-aluminum-enclosure-with-one-touch-backup.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.coolerexpress.com/me930.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.directron.com/kh200ubk.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://shop.store.yahoo.com/insidecomputer/usb20235hadr.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information on how to Back up User Files please refer the below HP support document:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00850162&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Also review the Service Agreement below and provide your acceptance for setting up the service. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*** Service Agreement *** </span></p> <p class=MsoNormal><span style="font-size:10pt">-------------------------</span></p> <p class=MsoNormal><span style="font-size:10pt">By sending your (HP Presario/Pavilion Notebook) to HP to be repaired, you agree to the following conditions: It is your responsibility to backup your data. This includes hard drives, ROM chips, flash cards, etc. HP Engineers have requested that if possible both diagnostics and the recovery be run before sending the notebook PC in to service for any reason. </span></p> <p class=MsoNormal><span style="font-size:10pt">During the repair process &quot;your hard drive will be re-imaged if it fails Quality Assurance testing&quot; , and in this event you will not have the opportunity to retrieve your data once the repair is complete. All BIOS passwords should be removed before shipment. In cases where HP receives units with passwords, they will be cleared, but this will delay the repair of the unit. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">What you should send with the notebook PC </span></p> <p class=MsoNormal><span style="font-size:10pt">----------------------------------------- </span></p> <p class=MsoNormal><span style="font-size:10pt">Include accessories ONLY if it would helpthe technician determine the issue with your unit. This could include PCMCIAcards, floppy, DVD, and CD-ROM drives, AC adapters, additional third-party RAM, sync cables, etc. Always return the battery with your unit. Please do NOT include DVD movies, Software CDs, Music CDs, port replicators, mini docks, external monitors, product manuals, or carrying cases. Please make a list of any accessories you are sending with your unit. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Packing your PC and equipment </span></p> <p class=MsoNormal><span style="font-size:10pt">----------------------------- </span></p> <p class=MsoNormal><span style="font-size:10pt">To prevent damage during shipping, please pack your unit with at least 3 inches of industry standard packing material all the way around your unit. If this is not done, you will be responsible for any damages incurred. If you are returning the unit in its original packaging please note that the packaging will not be returned to you.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the damage or problem with your unit is deemed customer damage by the repair center, the repair warranty will be void and the repair will be completed once you have been notified of the damage and payment information has been collected. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Estimated delivery date:</span></p> <p class=MsoNormal><span style="font-size:10pt">------------------------ </span></p> <p class=MsoNormal><span style="font-size:10pt">Your repair service has an estimated turn around time of 7 to 9 (plus additional CQE) business days from when we receive your product at our repair center. </span></p> <p class=MsoNormal><span style="font-size:10pt">Once we receive your product we will provide an estimated delivery dateand order status updates to the e-mail address you provided. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">FedEx instructions </span></p> <p class=MsoNormal><span style="font-size:10pt">------------------ </span></p> <p class=MsoNormal><span style="font-size:10pt">When the FedEx driver arrives to pick up your HP Notebook do not release the notebook to the driver until he has provided a tracking number to you. To check on the status of your order please refer to the following Web page (customer viewable). </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.hp.com/go/csostatus </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The CSO number should be plainly viewable on the outside of the box. If FedEx does not provide a receipt with a tracking number, do not allow them take the notebook PC. Additionally, due to parts back orders, shipping issues, or circumstances beyond HP's control your repair may require additional time. In these situations, you will be notified. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the issue persists even after performing the troubleshooting steps provided above, please get back to us with the requested information; I will be glad to arrange you a free mail-in service for your notebook to get it serviced and repaired.</span></p>Mon, 09 Nov 2009 13:31:26 Z2009-11-09T13:31:26Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/2ba25816-faa5-4b5c-9c0e-c4bfc550b129http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/2ba25816-faa5-4b5c-9c0e-c4bfc550b129vcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 10 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Kill Disk + Vista--VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Active@ KillDisk - Hard Drive Eraser is a powerful and compact software that allows you to destroy all data on hard and floppy drives completely, excluding any possibility of future recovery of deleted files and folders. It's a hard drive and partition eraser utility.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Using KillDisk utility:</span></p> <p class=MsoNormal><span style="font-size:10pt">====================</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">KillDisk utility will enable you create a bootable CD used in the process of reinstalling the OS. You can download KillDisk utility from the following web site: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.killdisk.com/downloadfree.htm </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">In the above web site, under Download KillDisk section, click on 'Download Bootable ISO Image of Active KillDisk to burn CD' to download a bootable ISO image of KillDisk available under the &quot;Bootable ISO Image for Professional version&quot; segment. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Download Bootable ISO Imageof Active@ KillDisk to burn CD. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This downloads an ISO IMAGE (not a regular file) that needs to be burned to the CD AS AN IMAGE (not as an added file). You may use any other System to burn the Killdisk CD. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Now, make CD/DVD drive, the first boot device by hitting ESC key at HP logo, insert the already created KillDisk CD, and reboot the PC. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For a graphical representation, visit the Web Sites below: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.petri.co.il/how_to_write_iso_files_to_cd.htm </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you are using NERO CD burning software, visit the Web Site below: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.bay-wolf.com/burnimage.htm </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">On restart, the KillDisk utility starts and follow the instructions to delete all the partitions. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: Please note that you have created a KillDisk CD on any other System and use that CD to delete partitions on the hard drive. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Now, all the partitions will be wiped from the Hard disk. Perform full system recovery using Vista Recovery CDs to recover the notebook to factory settings by following steps given in below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00809678&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Note: Please backup your Important data.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">K-Lite Codec Pack + XP + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">=== K-Lite Codec Pack : </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">A codec pack that will give you the ability to play 99% of all the movies that you download from the internet. K-Lite Codec Pack is a collection of codecs and related tools. Codec is short for Compressor-decompressor. Codecs are needed for encoding and decoding (playing) audio and video. The K-Lite Codec Pack is designed as a user-friendly solution for playing all your movie files.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please refer the below weblink to download and install K-Lite Codec Pack</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.softpedia.com/get/Multimedia/Video/Codec-Packs-Video-Codecs/KLite-Codec-Pack.shtml </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">&quot;OR&quot; </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.free-codecs.com/download/K_Lite_Codec_Pack.htm </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Low disk space(Complete)—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">From your E-Mail, I understand that the D drive on your Notebook runs out of space and displays an error message.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am glad that you have forwarded us your concerns and have given me an opportunity to assist you. I can understand that such issues with the Notebook can be very upsetting. Please be assured that I will provide the necessary assistance to you in this regard.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Nicholas, the Pavilion Notebook has two partitions, C: and the Recovery partition D:. The Recovery partition is not user accessible. The system will automatically update the recovery partition information. Since the recovery partition size is kept minimum, the system will automatically report the &quot;Low disk space&quot; pop-up when the disk space went minimum.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can stop the pop-up window by disabling the low disk space warning option in Windows Vista. But this will not cause any adverse effect to the system and the Recovery Partition also will not get affected. This is a work around. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Perform the following steps to disable low disk space warning. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Click Start, type Run in the serach area, select Run from the menu, type regedit, and then click OK.<span>   </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Locate and then click the following key in the registry: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">3. On the Edit menu, point to New, and then click DWORD Value. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">4. Type NoLowDiskSpaceChecks, and then press ENTER.<span>   </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">5. On the Edit menu, click Modify.<span>   </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">6. Type 1, and then click OK.<span>   </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">7. Restart the computer. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Alternatively, the Microsoft Backup Software views the protected HP recovery partition (Recovery D:) as a valid extra storage device. Recovery (D:) can be displayed as the first option in the Microsoft Backup Tool's list of places to save a backup. Someone using the software and seeing &quot;Recovery&quot; can mistake the selection as a place where the backup can be recovered.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Let me inform you that the Microsoft Backup Tool tried to store files to the recovery partition and ran out of space. The recovery partition is a reserved section on the main hard drive that should only be used for an HP System Recovery. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Once the backup files are written to the recovery partition, Windows Vista finds that there is not enough free space left on the recovery drive and displays a Low Disk Space error.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To stop Low Disk Space errors the failed backup files must be removed. To do so, use the following steps as mentioned in the below link :</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00859515&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE : Though the above link is provided for HP and Compaq Desktop PCs, the same steps are applicable for all HP Pavilion Notebook PCs.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">And also you can delete the recovery partition after creating recovery disks to free up the space on your Notebook. I would like to inform you that as a latest model your Pavilion notebook is not shipped with Recovery Disks. This model features with the new Recovery process called &quot;Softthinks PC Recovery&quot;. You can reinstall the Operating system and preinstalled applications from this recovery process. Also, when the notebook is turned on for the first time, it will prompts the user to create Recovery CD's or DVD's. If the notebook is having CD/DVD writer, you can burn the Recovery CD's or DVD's.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The Recovery Manager examines your computer and determines how many blank CDs or DVDs the disk creation process will require.<span>  </span> The disk creation process may require up to 10 or more CD-R disks or 1-3 DVD-R or DVD+R disks.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>     </span> CAUTION:<span>  </span> The disk must be either CD-R, DVD-R, or DVD+R.<span>  </span> Do not</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>               </span> use CD-RW or DVD-RW disks because the Read/Write type</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>               </span> disks will cause the creation process to fail.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can follow the steps given in below weblink to create recovery CDs:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00809678&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After creating recovery CDs, you can delete the recovery partition. While HP does not recommend it, you can remove the recovery partition by performing the following actions. During the removal process, a reminder displays if Recovery disks have not been created.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Click Start, type Recovery in the search field, and click on Recovery Manager when it appears in the program list to open the Recovery Manager window. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Click Advanced options . </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Select the Remove recovery partition option and click Next . </span></p> <p class=MsoNormal><span style="font-size:10pt">4. When prompted to verify that you want to delete the partition, select the Yes option, and click Next . </span></p> <p class=MsoNormal><span style="font-size:10pt">5. Allow the removal process to continue and restart the PC.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am sure this information should be of assistance to you. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you need any further assistance or clarifications, please feel free to reply to this mail. I would be delighted to assist you. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I assure you of our dedicated support at all the times.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Low disk space, recovery partition + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">At this point, let me inform that the Microsoft Backup Tool tried to store files to the recovery partition and ran out of space. The recovery partition is a reserved section on the main hard drive that should only be used for an HP System Recovery. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The Microsoft Backup Software views the protected HP recovery partition (Recovery D:) as a valid extra storage device. Recovery (D:) can be displayed as the first option in the Microsoft Backup Tool's list of places to save a backup. Someone using the software and seeing &quot;Recovery&quot; can mistake the selection as a place where the backup can be recovered.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Once the backup files are written to the recovery partition, Windows Vista finds that there is not enough free space left on the recovery drive and displays a Low Disk Space error.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To stop Low Disk Space errors the failed backup files must be removed. To do so, use the following steps as mentioned in the below link :</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00859515&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>     </span> NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> Copy and paste the entire link in a new browser window.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE : Though the above link is provided for HP and Compaq Desktop PCs, the same steps are applicable for all HP Pavilion Notebook PCs.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Mail-in Reply—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Hello &lt;&gt;&lt;&gt;, </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Thank you for writing back to us with the required information.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">We have taken note of the details you have provided and forwarded your information to our logistic department. We would initiate the process for the notebook pickup and send you another email once the process has<span>  </span> been initiated.<span>  </span> This email would contain the details of the Customer Service Order [CSO] number.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">A box with the required packing material, packaging instructions, carrier contact information and a pre-paid shipping label<span>  </span> will be delivered to you in 1 to 2 business days.<span>  </span> Once you have received these materials and have packed your product, you<span>  </span> will need to contact the carrier(FedEx) to schedule a pick-up or you may drop the notebook at FedEx drop office.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Additionally, you can also check for the status of the notebook with the CSO number by visiting the following website:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.hp.com/go/csostatus</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">(Or) </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">By calling HP Customer Care at 1-800-hpinvent (1-800-474-6836).</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can always get back to us for further support. Please feel free to write anytime you have questions. We will respond in a timely manner. </span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Memory upgrade(Indra)—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">From your Email, I understand that you want to upgrade your Notebook RAM from 1GB to 2GB or more.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I understand your concern and assure to assist you in a best possible way.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Ronald, I appreciate your decision to upgrade your Notebook RAM. As, upgrading the RAM is typically the easiest and least expensive way to upgrade your computer for a significant boost in performance. A memory upgrade is particularly helpful for users who work with large files, have more than one program open at one time, or use memory-intensive applications such as games or graphics and video editing software.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I would like to inform that your Notebook is pre-installed with 1024MB DDR2 (2 Dimm) of memory. You can upgrade to a maximum memory of 2GB. Each memory slot can hold DDR2 PC2-5300 with a maximum of 1GB per slot. I regret to inform that in HP Store there is no availability of compatible memory cards for your Notebook. Hence, for your convenience I am providing the website where you can order compatible memory cards with your Notebook. You can order from the below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://shop.crucial.com/1/4/16527-hp-compaq-pavilion-dv6243cl-laptop-notebook-memory-module.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>     </span> NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> HP does </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> not control and is not responsible for information outside </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: Clicking the link may give an error indicating it is invalid. If this occurs, copy the portion of the address<span>  </span> on the second line and paste it at the end of the address showing in your browser.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After you received the memory cards, Please follow the steps as explained in below video for fixing the new memory card.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Select &quot;Memory boards&quot; tab in the below weblink to view the video:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h20181.www2.hp.com/plmcontent/NACSC/SML/results.htm?SID=1842153&amp;MEID=78B64E6F-2AA6-4AE8-AC15-3B8CBA480D51</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: Clicking the link may give an error indicating it is invalid. If this occurs, copy the portion of the address<span>  </span> on the second line and paste it at the end of the address showing in your browser.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Alternatively, you can follow the steps provided in the service manual for fixing new memory card.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Refer to page numbers: 128 of 278</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10032.www1.hp.com/ctg/Manual/c01035677.pdf</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The above link is in .pdf format, to open the link acrobat reader application should be preinstalled in your system. Please download the software from the URL below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.adobe.com/products/acrobat/readstep2.html<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The information provided above should help you. If you need further assistance or clarifications, please feel free to reply to this mail. We would be glad to assist you.</span></p>Mon, 09 Nov 2009 13:30:25 Z2009-11-09T13:30:25Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/3037df49-e6bc-4407-a646-ee8d697365dchttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/3037df49-e6bc-4407-a646-ee8d697365dcvcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 9 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">== Procedure to perform Hard Disk Self Test:</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Hard Disk Self Test, checks the status of your hard disk. I request you to perform Hard Disk Self Test.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Use the steps below to test the hard drive in a Notebook PC using the HP Hard Drive Self Test. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Plug the AC Adapter into the Notebook PC.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. Press and Hold the Power button for 5 Seconds to turn off the PC. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Press the F10 key (on some notebook PCs, F2 or F6). </span></p> <p class=MsoNormal><span style="font-size:10pt">4. Then Press the Power button to turn on the PC releasing the F10 key after text is displayed on the screen of the PC. </span></p> <p class=MsoNormal><span style="font-size:10pt">5. After the BIOS Setup Utility is displayed, use the Right Arrow key to select the Tools menu. </span></p> <p class=MsoNormal><span style="font-size:10pt">6. Select Hard Drive Self Test </span></p> <p class=MsoNormal><span style="font-size:10pt">7. Press the Enter key to start the test. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The Hard Drive Self Test will provide an Estimated test time. A Quick test a Comprehensive test and a SMART test will execute when the Enter key is pressed. Please perform both the short and comprehensive tests if needed manually. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">8)Once finished, navigate to Exit Menu, select&quot;Exit Discarding Changes&quot;. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the test indicates status as failed then the issue due to the malfunction of the hard drive and it needs to be replaced.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Let me know if any test fails.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information on HDD Self Test, please visit the following Web site: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?lc=en&amp;cc=us&amp;docname=c00439024 </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">== Hard Drive self test:</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Follow the below provided steps to perform the hard drive self test.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Restart the computer </span></p> <p class=MsoNormal><span style="font-size:10pt">2) At the HP Logo screen, press F10 to enter the BIOS. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) Select the Tools menu. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Select HDD Self Test </span></p> <p class=MsoNormal><span style="font-size:10pt">5) After selecting &quot;HDD Self Test&quot; you can see two options </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>   </span> a) Short Test.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>   </span> b) Long Test.</span></p> <p class=MsoNormal><span style="font-size:10pt">6) Please select the Long Test and then note the result after the completion of the test.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">From your E-Mail, I understand that, when you run the HP Health check scan, the updates that are already installed are displayed in the c:\swsetup folder.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am glad that you have forwarded us your concerns and have given me an opportunity to assist you. I will certainly do my best to assist you.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Ron, the issue might be due some corrupted files. However, to resolve the issue, I recommend you to perform the following steps.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Uninstall HP Help and Support. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1.<span>  </span> Click Start and type Program and Features in the Search field. The Program and Features programs window will open.</span></p> <p class=MsoNormal><span style="font-size:10pt">2.<span>  </span> Click HP Help and Support from the list.</span></p> <p class=MsoNormal><span style="font-size:10pt">3.<span>  </span> Click Change/Remove.</span></p> <p class=MsoNormal><span style="font-size:10pt">4.<span>  </span> Follow the onscreen instructions to uninstall the software.</span></p> <p class=MsoNormal><span style="font-size:10pt">5.<span>  </span> Restart the computer, if prompted.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The program should now be uninstalled from the computer.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">=== Reinstall software(Help &amp; Support) from Recovery Manager:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I would like to share that you can also install individual hardware and software drivers and additional applications one at a time using the HP Backup and Recovery Manager. Several applications are factory-installed on the computer. Consult the manufacturer's installation instructions for any third-party programs purchased separately.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Install an individual application by following the steps below.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">* Click Start and type Recovery in the Search field. </span></p> <p class=MsoNormal><span style="font-size:10pt">* Select Recovery Manager, and when the wizard opens, click the Advanced options button. </span></p> <p class=MsoNormal><span style="font-size:10pt">* Select Software program re-installation or Hardware driver re-installation, and click Next, view the prompt and Next. </span></p> <p class=MsoNormal><span style="font-size:10pt">* Select the desired application from the list, and click Next. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Allow the PC to restart if necessary to complete the installation.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information about Using HP Recovery Manager, please refer the below link:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&amp;docname=c00809678</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>     </span> NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> Copy and paste the entire link in a new browser window.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I hope the above information helps you. If you need further assistance, please reply to this message and we will be happy to assist you further.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">== HP Health Check</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To resolve certain hardware and software issues, use HP Health Check to automatically search the HP web site for an updated BIOS as well as any updated software and drivers.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To launch HP Health Check, follow the steps below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Click Start , type health into the search field, and then select HP Health Check from the list. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) HP Health Check displays a list of available BIOS, software, and driver updates for your particular model.</span></p> <p class=MsoNormal><span style="font-size:10pt">3) Click the description link for any BIOS, software, or driver updates, and then follow the on-screen instructions. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) You can only install one update at a time.</span></p> <p class=MsoNormal><span style="font-size:10pt">5) Repeat steps 1 and 2 above for all updates that you want to install.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You have now installed the available BIOS, software, and driver updates for your particular computer model.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">== HP Wireless Assistant + Vista</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">ftp://ftp.hp.com/pub/softpaq/sp34501-35000/sp34510.exe</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Installation Instructions </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Download the SoftPaq .EXE file to a directory on your hard drive. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Execute the downloaded file and follow the on-screen instructions. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Reboot the notebook after the installation is complete.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">improve battery life(11th feb)</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Ramunas, I would like to share that you can unplug the AC Adapter while the Notebook is not in use. Once you start working on your Notebook then you can plug AC Adapter. This can increase the life of Notebook. Also, let me inform you that Battery life increases if you do not watch movies, play games on Battery Power. However, you can perform the same with AC Adapter plugged so that the Battery Life of your Notebook will be increased. Please refer to the information relating to battery maintenance.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Regarding your query, I would<span>  </span> like to share that, you can remove the battery if the notebook will be stored (turned off and not plugged into AC power) for more than 2 weeks and also you have to remove the battery if the notebook will be plugged into AC power continuously (via a wall adapter or docking station). </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Additionally, for more information to preserve the life of your battery, make certain to charge the battery regularly. In cases of long-term storage, the battery must be charged at 20 to 50 percent to save capacity loss by self-discharge, and to avoid deterioration of battery performance. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">In a discharged condition, the battery voltage decreases faster. Storage in a 100 percent charged condition can cause higher self-discharge and deterioration of discharge capacity even after recharging, compared to storage in a 20 to 50 percent charged condition. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Additionally, I would like to provide some more information regarding increasing the battery performance.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">A.<span>  </span> Do not leave batteries unused for long periods. If using more than one, rotate them. </span></p> <p class=MsoNormal><span style="font-size:10pt">B.<span>  </span> If normally using AC power, make a practice of using the battery as the power source at least once a week. </span></p> <p class=MsoNormal><span style="font-size:10pt">C.<span>  </span> Unplug the AC adapter when the notebook is not in use. </span></p> <p class=MsoNormal><span style="font-size:10pt">D.<span>  </span> To preserve the life of a battery, be sure to charge it regularly. </span></p> <p class=MsoNormal><span style="font-size:10pt">E.<span>  </span> Avoid using or charging batteries at high temperatures. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please refer the below web site for the Battery care practices:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h20239.www2.hp.com/techcenter/battery/Battery_max.htm </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Copy and paste the entire link in a new browser window.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Regarding your query with digital audio output, I would like to inform you that your Notebook has digital audio output feature.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Improve Performance + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">How to improve the performance and reliability of Windows Vista if you cannot upgrade to Windows Vista Service Pack 1 </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://support.microsoft.com/?kbid=938979</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">--------------------------------------</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">And also improve the system performance by following steps given in below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== HP and Compaq Desktop PCs -<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Increasing System Performance Without Adding Memory in Windows Vista</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00815926&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">-------------------------------------------</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== HP Notebook PCs -<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Improving the Performance of Your Computer</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00816938&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">---------------------------------------------</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This is a performance update. Install this update to improve the performance of Windows Vista in certain scenarios.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.microsoft.com/downloads/details.aspx?FamilyId=3FB80BB9-D832-425B-B42C-D3EB2071BBEC&amp;displaylang=en</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">keyboard--Indra</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I understand that this might not be the most pleasant of responses since the notebook is a brand new notebook. This happening in your case is purely a coincidence. HP conveys to you sincere apologies for any inconvenience you may have experienced. However, I assure you that we will be by your side unless the issue is resolved.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The key board of the notebook is designed for compactness, in such a way the all the keys are interlinked to each other on a single board and are locked with a white plastic board that acts like a spring to make the key popup after it was pressed and released.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Once the key is broken, this white plastic board will get damaged and required to be replaced. However, an individual key replacement in a Notebook is not possible and need to replace the complete set of keyboard, it takes approximately 7 to 9 business days to repair. Your HP product needs to be repaired which requires setting up a service. Hence, I request you to send the Notebook for Free mail in repair service. To initiate the repair service please get back to me with the below requested information.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Keyboard Tips—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">&gt;&gt;&gt;&gt;&gt;, the issue you are experiencing might be due to dust in the key or hardware malfunction of the Keyboard. In order to isolate and confirm the issue, I recommend you to turn the Notebook upside down and give it a gentle shake. This will clear out dust and debris that has fallen in between the keys. If your vacuum has a soft brush attachment, you may vacuum the keyboard gently, too. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the issue persists, the issue is clearly with the internal hardware malfunction of the Keyboard and the Notebook needs an onsite diagnosis. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Individual key is not an option to replace, because the key board of the notebook is designed for compactness, in such a way the all the keys are inter linked to each other on a single board and are locked with a white plastic board that acts like a spring to make the key popup after it was pressed and released. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Once the key is broken, this white plastic board will get damaged and required to be replaced. As it is an internal part of the notebook, to replace it, one need proper equipment and expertise in de-assembling and reassembling of the notebook so that there could be no chance of further damage to other parts of the notebook which may lead to unwanted hardware conflicts.</span></p>Mon, 09 Nov 2009 13:29:48 Z2009-11-09T13:29:49Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/28aa1a22-93da-4d95-884a-ee65f6c1ebfbhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/28aa1a22-93da-4d95-884a-ee65f6c1ebfbvcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 9 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">== Procedure to perform Hard Disk Self Test:</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Hard Disk Self Test, checks the status of your hard disk. I request you to perform Hard Disk Self Test.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Use the steps below to test the hard drive in a Notebook PC using the HP Hard Drive Self Test. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Plug the AC Adapter into the Notebook PC.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. Press and Hold the Power button for 5 Seconds to turn off the PC. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Press the F10 key (on some notebook PCs, F2 or F6). </span></p> <p class=MsoNormal><span style="font-size:10pt">4. Then Press the Power button to turn on the PC releasing the F10 key after text is displayed on the screen of the PC. </span></p> <p class=MsoNormal><span style="font-size:10pt">5. After the BIOS Setup Utility is displayed, use the Right Arrow key to select the Tools menu. </span></p> <p class=MsoNormal><span style="font-size:10pt">6. Select Hard Drive Self Test </span></p> <p class=MsoNormal><span style="font-size:10pt">7. Press the Enter key to start the test. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The Hard Drive Self Test will provide an Estimated test time. A Quick test a Comprehensive test and a SMART test will execute when the Enter key is pressed. Please perform both the short and comprehensive tests if needed manually. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">8)Once finished, navigate to Exit Menu, select&quot;Exit Discarding Changes&quot;. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the test indicates status as failed then the issue due to the malfunction of the hard drive and it needs to be replaced.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Let me know if any test fails.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information on HDD Self Test, please visit the following Web site: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?lc=en&amp;cc=us&amp;docname=c00439024 </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">== Hard Drive self test:</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Follow the below provided steps to perform the hard drive self test.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Restart the computer </span></p> <p class=MsoNormal><span style="font-size:10pt">2) At the HP Logo screen, press F10 to enter the BIOS. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) Select the Tools menu. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Select HDD Self Test </span></p> <p class=MsoNormal><span style="font-size:10pt">5) After selecting &quot;HDD Self Test&quot; you can see two options </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>   </span> a) Short Test.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>   </span> b) Long Test.</span></p> <p class=MsoNormal><span style="font-size:10pt">6) Please select the Long Test and then note the result after the completion of the test.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">From your E-Mail, I understand that, when you run the HP Health check scan, the updates that are already installed are displayed in the c:\swsetup folder.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am glad that you have forwarded us your concerns and have given me an opportunity to assist you. I will certainly do my best to assist you.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Ron, the issue might be due some corrupted files. However, to resolve the issue, I recommend you to perform the following steps.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Uninstall HP Help and Support. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1.<span>  </span> Click Start and type Program and Features in the Search field. The Program and Features programs window will open.</span></p> <p class=MsoNormal><span style="font-size:10pt">2.<span>  </span> Click HP Help and Support from the list.</span></p> <p class=MsoNormal><span style="font-size:10pt">3.<span>  </span> Click Change/Remove.</span></p> <p class=MsoNormal><span style="font-size:10pt">4.<span>  </span> Follow the onscreen instructions to uninstall the software.</span></p> <p class=MsoNormal><span style="font-size:10pt">5.<span>  </span> Restart the computer, if prompted.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The program should now be uninstalled from the computer.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">=== Reinstall software(Help &amp; Support) from Recovery Manager:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I would like to share that you can also install individual hardware and software drivers and additional applications one at a time using the HP Backup and Recovery Manager. Several applications are factory-installed on the computer. Consult the manufacturer's installation instructions for any third-party programs purchased separately.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Install an individual application by following the steps below.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">* Click Start and type Recovery in the Search field. </span></p> <p class=MsoNormal><span style="font-size:10pt">* Select Recovery Manager, and when the wizard opens, click the Advanced options button. </span></p> <p class=MsoNormal><span style="font-size:10pt">* Select Software program re-installation or Hardware driver re-installation, and click Next, view the prompt and Next. </span></p> <p class=MsoNormal><span style="font-size:10pt">* Select the desired application from the list, and click Next. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Allow the PC to restart if necessary to complete the installation.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information about Using HP Recovery Manager, please refer the below link:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&amp;docname=c00809678</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>     </span> NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> Copy and paste the entire link in a new browser window.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I hope the above information helps you. If you need further assistance, please reply to this message and we will be happy to assist you further.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">== HP Health Check</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To resolve certain hardware and software issues, use HP Health Check to automatically search the HP web site for an updated BIOS as well as any updated software and drivers.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To launch HP Health Check, follow the steps below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Click Start , type health into the search field, and then select HP Health Check from the list. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) HP Health Check displays a list of available BIOS, software, and driver updates for your particular model.</span></p> <p class=MsoNormal><span style="font-size:10pt">3) Click the description link for any BIOS, software, or driver updates, and then follow the on-screen instructions. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) You can only install one update at a time.</span></p> <p class=MsoNormal><span style="font-size:10pt">5) Repeat steps 1 and 2 above for all updates that you want to install.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You have now installed the available BIOS, software, and driver updates for your particular computer model.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">== HP Wireless Assistant + Vista</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">ftp://ftp.hp.com/pub/softpaq/sp34501-35000/sp34510.exe</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Installation Instructions </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Download the SoftPaq .EXE file to a directory on your hard drive. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Execute the downloaded file and follow the on-screen instructions. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Reboot the notebook after the installation is complete.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">improve battery life(11th feb)</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Ramunas, I would like to share that you can unplug the AC Adapter while the Notebook is not in use. Once you start working on your Notebook then you can plug AC Adapter. This can increase the life of Notebook. Also, let me inform you that Battery life increases if you do not watch movies, play games on Battery Power. However, you can perform the same with AC Adapter plugged so that the Battery Life of your Notebook will be increased. Please refer to the information relating to battery maintenance.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Regarding your query, I would<span>  </span> like to share that, you can remove the battery if the notebook will be stored (turned off and not plugged into AC power) for more than 2 weeks and also you have to remove the battery if the notebook will be plugged into AC power continuously (via a wall adapter or docking station). </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Additionally, for more information to preserve the life of your battery, make certain to charge the battery regularly. In cases of long-term storage, the battery must be charged at 20 to 50 percent to save capacity loss by self-discharge, and to avoid deterioration of battery performance. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">In a discharged condition, the battery voltage decreases faster. Storage in a 100 percent charged condition can cause higher self-discharge and deterioration of discharge capacity even after recharging, compared to storage in a 20 to 50 percent charged condition. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Additionally, I would like to provide some more information regarding increasing the battery performance.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">A.<span>  </span> Do not leave batteries unused for long periods. If using more than one, rotate them. </span></p> <p class=MsoNormal><span style="font-size:10pt">B.<span>  </span> If normally using AC power, make a practice of using the battery as the power source at least once a week. </span></p> <p class=MsoNormal><span style="font-size:10pt">C.<span>  </span> Unplug the AC adapter when the notebook is not in use. </span></p> <p class=MsoNormal><span style="font-size:10pt">D.<span>  </span> To preserve the life of a battery, be sure to charge it regularly. </span></p> <p class=MsoNormal><span style="font-size:10pt">E.<span>  </span> Avoid using or charging batteries at high temperatures. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please refer the below web site for the Battery care practices:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h20239.www2.hp.com/techcenter/battery/Battery_max.htm </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Copy and paste the entire link in a new browser window.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Regarding your query with digital audio output, I would like to inform you that your Notebook has digital audio output feature.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Improve Performance + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">How to improve the performance and reliability of Windows Vista if you cannot upgrade to Windows Vista Service Pack 1 </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://support.microsoft.com/?kbid=938979</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">--------------------------------------</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">And also improve the system performance by following steps given in below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== HP and Compaq Desktop PCs -<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Increasing System Performance Without Adding Memory in Windows Vista</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00815926&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">-------------------------------------------</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== HP Notebook PCs -<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Improving the Performance of Your Computer</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00816938&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">---------------------------------------------</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This is a performance update. Install this update to improve the performance of Windows Vista in certain scenarios.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.microsoft.com/downloads/details.aspx?FamilyId=3FB80BB9-D832-425B-B42C-D3EB2071BBEC&amp;displaylang=en</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">keyboard--Indra</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I understand that this might not be the most pleasant of responses since the notebook is a brand new notebook. This happening in your case is purely a coincidence. HP conveys to you sincere apologies for any inconvenience you may have experienced. However, I assure you that we will be by your side unless the issue is resolved.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The key board of the notebook is designed for compactness, in such a way the all the keys are interlinked to each other on a single board and are locked with a white plastic board that acts like a spring to make the key popup after it was pressed and released.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Once the key is broken, this white plastic board will get damaged and required to be replaced. However, an individual key replacement in a Notebook is not possible and need to replace the complete set of keyboard, it takes approximately 7 to 9 business days to repair. Your HP product needs to be repaired which requires setting up a service. Hence, I request you to send the Notebook for Free mail in repair service. To initiate the repair service please get back to me with the below requested information.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Keyboard Tips—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">&gt;&gt;&gt;&gt;&gt;, the issue you are experiencing might be due to dust in the key or hardware malfunction of the Keyboard. In order to isolate and confirm the issue, I recommend you to turn the Notebook upside down and give it a gentle shake. This will clear out dust and debris that has fallen in between the keys. If your vacuum has a soft brush attachment, you may vacuum the keyboard gently, too. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the issue persists, the issue is clearly with the internal hardware malfunction of the Keyboard and the Notebook needs an onsite diagnosis. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Individual key is not an option to replace, because the key board of the notebook is designed for compactness, in such a way the all the keys are inter linked to each other on a single board and are locked with a white plastic board that acts like a spring to make the key popup after it was pressed and released. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Once the key is broken, this white plastic board will get damaged and required to be replaced. As it is an internal part of the notebook, to replace it, one need proper equipment and expertise in de-assembling and reassembling of the notebook so that there could be no chance of further damage to other parts of the notebook which may lead to unwanted hardware conflicts.</span></p>Mon, 09 Nov 2009 13:29:33 Z2009-11-09T13:29:34Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/39d8a722-7287-42fc-8640-57d4efa167eehttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/39d8a722-7287-42fc-8640-57d4efa167eevcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 7 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Full system recovery (F11) + Vista</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: Before performing the below steps, please take the data backup from the hard drive. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Connect PC to the AC power adapter. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Close all programs. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Restart the notebook and press F11 during boot.</span></p> <p class=MsoNormal><span style="font-size:10pt">4. The PC will restart and display a Welcome to PC Recovery Manager. Click OK to continue. </span></p> <p class=MsoNormal><span style="font-size:10pt">5. On the System Recovery panel, click Advanced Options to select the Destructive Recovery Option. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">WARNING: If Advanced Options is selected, the system will perform a complete reformat and will destroy all user data. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">6. Follow any additional instructions. </span></p> <p class=MsoNormal><span style="font-size:10pt">7. Restart the PC when prompted. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For your convenience I am providing below weblink for more information on full system recovery:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00809678&amp;lc=en&amp;cc=us&amp;dlc=en&amp;product=3340167&amp;lang=en</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After following the above steps, the notebook will be restored to factory shipped settings.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">------------------------------------------------------</span></p> <p class=MsoNormal><span style="font-size:10pt">Perform System recovery using Recovery Manager and restore the notebook to factory settings.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Reboot the notebook PC and press F11 when the HP logo displays on the notebook PC display. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. The HP Recovery Manager displays. Click Next. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Select Yes and then click Next. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The Recovery Manager restores the notebook PC to the factory image.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Full system recovery F11 + XP--V C</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;, I would like to inform you that if you perform F11 recovery the Notebook will be taken to factory settings. Perform F11 recovery by following below steps:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">=====F11 Recovery =====</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Restart the notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. Keep tapping the F11 to initiate the Recovery options.</span></p> <p class=MsoNormal><span style="font-size:10pt">3. The PC Recovery screen will be displayed. Select PC Recovery and press Next.</span></p> <p class=MsoNormal><span style="font-size:10pt">4. In the next screen, click OK to access the Recovery menu.</span></p> <p class=MsoNormal><span style="font-size:10pt">5. You will receive a screen explaining the System Recovery process. Click Next to continue.</span></p> <p class=MsoNormal><span style="font-size:10pt">6. Once the Recovery process is completed, you will prompted to either restart or turn off the computer.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you are unable to perform F11 recovery, use recovery discs to create full system recovery by following steps given in below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00608578&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you do not have recovery CDs, you can order it from below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">https://warp2.external.hp.com/driver/dr_country_select.asp?Product=452474-001&amp;lang=en&amp;cc=us</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt">--------------------------------------------------</span></p> <p class=MsoNormal><span style="font-size:10pt">== System recovery:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Follow the below provided steps to perform the system recovery</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">WARNING: Personal data and software you have installed on the notebook will be lost during the OS reinstall. HP recommends that you make a backup copy of all personal data before beginning this process. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can reinstall the Windows by following the steps given below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Press F11 on the keyboard immediately while the computer is starting up. The HP Backup and Recovery Manager window will appear. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">2. If the Recovery Manager can access the hard drive it displays a prompt to backup up your user files before continuing the recovery. If it cannot access the hard drive to fix the system errors, the Recovery Manager starts recovering the hard drive to its original condition.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Graphic card upgrade, Game—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">From your E-mail, I understand that you would like to upgrade video card to make games run faster.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I greatly appreciate that you have forwarded your concerns and have given me a chance to assist you with this matter. I would be glad to help you.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Daryl, I regret to inform that the graphics card is not an option for upgrade on most of the notebook computers. This is because the notebook computers are equipped with an onboard graphics card which cannot be replaced separately. Additionally, there is no provision for the installation of an additional graphics adapter like in a desktop computer, where you can install two graphics card simultaneously (a PCI and an AGP display card), if it is necessary. Therefore, you cannot upgrade the video or graphics card of the Notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">In order to make the games faster, I request you to perform the following steps:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Step 1: Install latest graphics card driver.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Download and install graphics driver from below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Mobile Intel 965 Express Chipset Family Video Driver </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">ftp://ftp.hp.com/pub/softpaq/sp38501-39000/sp38897.exe</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Installation Instructions </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Download the SoftPaq .EXE file to a directory on your hard drive. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Execute the downloaded file and follow the on-screen instructions. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Reboot the notebook after the installation is complete. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Step 2: BIOS update.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Download and install BIOS update from the below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== WinFlash for HP Notebook System BIOS (for Notebooks with AMD Processors) - Microsoft Windows/Vista-Based:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">ftp://ftp.hp.com/pub/softpaq/sp39501-40000/sp39862.exe</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Installation Instructions </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Download the SoftPaq .EXE file to a directory on your hard drive. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Execute the downloaded file and follow the on-screen instructions. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Reboot the notebook after the installation is complete. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">WARNING:<span>  </span> Do not interrupt the BIOS installation process. Interrupting the process, or attempting to install the incorrect BIOS will cause damage to the BIOS and will require that the PC be repaired at an HP authorized facility. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">And also improve the system performance by following steps given in below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00815926&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Also, Install the following update which improves the performance and reliability of Windows Vista:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://support.microsoft.com/?kbid=938979 </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">And also follow the below steps:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Start -&gt; Run -&gt; msconfig</span></p> <p class=MsoNormal><span style="font-size:10pt">2. Goto &quot;Boot&quot; tab and click on &quot;Advanced options…&quot; button.</span></p> <p class=MsoNormal><span style="font-size:10pt">3. Now enable the option &quot;Number of processors:&quot; and select the correct no. of processors from drop-down list.</span></p> <p class=MsoNormal><span style="font-size:10pt">4. Now click on &quot;OK&quot; button and then &quot;Apply&quot; it.</span></p> <p class=MsoNormal><span style="font-size:10pt">5. It'll require a restart and after reboot you'll notice improvement in system performance.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the issue still persists, I request you to check the specifications of the game you are playing whether it is compatible with the Notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am sure this information should be of assistance to you.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">==Graphic hardware acceleration== </span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To turn on graphics acceleration, please follow the steps provided below: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Click Start, click Control Panel, click Appearance and Personalization</span></p> <p class=MsoNormal><span style="font-size:10pt">2. Click Personalization, click Display Settings, and then click Advanced Settings. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Click the Troubleshoot tab, and then click Change Settings. </span></p> <p class=MsoNormal><span style="font-size:10pt">4. If you are prompted for an administrator password or for confirmation, type the password, or provide confirmation. </span></p> <p class=MsoNormal><span style="font-size:10pt">5. Move the Hardware Acceleration slider until it is one notch to the right of None. This is the basic acceleration setting. </span></p> <p class=MsoNormal><span style="font-size:10pt">6. Click OK two times, and then close the window.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">graphic or Video Card Upgrade - System performance + Vista--VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">From your E-mail, I understand that<span>  </span> you would like to know whether you can<span>  </span> upgrade the video memory on your Compaq Presario V6305CA Notebook. Let me assist you in this regard.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">&lt;&gt;, I am afraid the video card is not an option for upgrade on notebook computers. This is because the notebook computers are equipped with an onboard graphics adapter which cannot be replaced separately. Additionally, there is no provision for the installation of an additional graphics adapter like in a desktop computer, where you can install two display adapters simultaneously (a PCI and an AGP display adapter), if it is necessary. Therefore, you cannot upgrade the video card of the Notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, you can update the video driver regularly to improve the video card performance. For your convenience I am provding the latest video drivers for your notebook. You can download and update the Video drivers from the URL provided below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">&lt;ftp link&gt;</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">** Installation Instructions:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Download the Softpaq .EXE file to a directory on your hard drive.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. Execute the downloaded file and follow the on-screen instructions.</span></p> <p class=MsoNormal><span style="font-size:10pt">3. Restart the notebook when the installation is complete.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Performing the above options may gradually increase the video card performance.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, plese visit the URL link provided below to update the drivers regularly for your notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">&lt;&lt;&lt; Softwares and drivers link &gt;&gt;&gt;</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Additionally, you can improve the system performance by performing some options on the Notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?lc=en&amp;cc=us&amp;dlc=en&amp;docname=c00816938</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>     </span> NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> Copy and paste the entire link in a new browser window.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am sure that I have thoroughly addressed your concerns. Please do not hesitate to contact us if you have any questions or clarifications. Please reply to this message and we will be happy to help you.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">-------------------------------------------------------</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">From your E-Mail, I understand that you would like to upgrade card on your HP Pavilion dv7-1020ea Notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am glad that you have forwarded us your concerns and have given me an opportunity to assist you. Let me assist you in this regard.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Puneet, I regret to inform that the graphics card is not an option for upgrade on most of the notebook computers. This is because the notebook computers are equipped with an onboard graphics card which cannot be replaced separately. Additionally, there is no provision for the installation of an additional graphics adapter like in a desktop computer, where you can install two graphics card simultaneously (a PCI and an AGP display card), if it is necessary. Therefore, you cannot upgrade the video or graphics card of the Notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, you can update the video driver regularly to improve the video card performance. For your convenience I am providing the latest video drivers for your notebook. You can download and update the Video drivers from the URL provided below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">ftp://ftp.hp.com/pub/softpaq/sp41501-42000/sp41543.exe</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">** Installation Instructions:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Download the Softpaq .EXE file to a directory on your hard drive.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. Execute the downloaded file and follow the on-screen instructions.</span></p> <p class=MsoNormal><span style="font-size:10pt">3. Restart the notebook when the installation is complete.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Performing the above options may gradually increase the video card performance.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, plese visit the URL link provided below to update the drivers regularly for your notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/softwareList?os=2093&amp;lc=en&amp;dlc=en&amp;cc=us&amp;product=3753794&amp;lang=en</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Additionally, you can improve the system performance by performing some options on the Notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?lc=en&amp;cc=us&amp;dlc=en&amp;docname=c00816938</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am sure that I have thoroughly addressed your concerns. Please do not hesitate to write back to us us if you have any questions or<span>  </span> clarifications. I will be glad to assist you.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">== Hard Disk (CHKDSK):</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">In most cases, problems that develop on a hard disk are from either corrupt system files or physical errors. To identify a possible hard disk problem, you will need to scan your drive for errors. Here's how:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Go to Start&gt;&gt; Computer </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Right click the hard disk that you would like to test. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) Select Properties </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Select the Tools tab </span></p> <p class=MsoNormal><span style="font-size:10pt">5) Click the Check Now button under Error-Checking. You may be prompted for an administrators password or confirmation at this point. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">.<span>               </span> Select the option: &quot;Automatically fix file system errors&quot; </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">.<span>               </span> Select the option: &quot;Scan for and attempt recovery of bad sectors&quot;. Selecting this option will </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>                </span> perform a thorough scan of your selected hard disk and attempt to fix any physical errors on the drive. Depending on the size of your hard disk, this could take quite some time to complete. For best <span> </span> results, avoid using your computer system during this process. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">6) Click Start</span></p>Mon, 09 Nov 2009 13:27:49 Z2009-11-09T13:27:50Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/cb2d3ce4-8631-487e-a198-c5c49efc2569http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/cb2d3ce4-8631-487e-a198-c5c49efc2569vcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 8 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">External Monitor—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This issue might be due to internal hardware malfunction. In order to isolate the issue, I request you to connect the<span>  </span> Notebook to external monitor. Follow these steps to connect the notebook to an external monitor.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1.<span>   </span> Click Start and Turn Off Computer.</span></p> <p class=MsoNormal><span style="font-size:10pt">2.<span>   </span> Connect the monitor cable from the monitor to the monitor port on the rear of the computer.</span></p> <p class=MsoNormal><span style="font-size:10pt">3.<span>   </span> Connect the monitor to a power source and turn it on.</span></p> <p class=MsoNormal><span style="font-size:10pt">4.<span>   </span> Press the Power button to turn on the computer.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">At this time, please follow the instructions<span>  </span> mentioned below for switching the display to the external monitor: </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">The notebook's video card supports three modes. Built-in screen only; external video only; and both on simultaneously (mirrored). If you're not seeing the image on the desired device(s), the notebook's video card is probably in another mode. Press FN + F4 to cycle through the display options: Notebook display, External monitor, both. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you press FN + F4 once, the projector will display &amp; there will be no LCD display. </span></p> <p class=MsoNormal><span style="font-size:10pt">If you press FN + F4 twice, the projector will display &amp; there will be some shading on the LCD. </span></p> <p class=MsoNormal><span style="font-size:10pt">If you press FN + F4 thrice, both LCD &amp; projector will display. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the results aren't yet as desired, wait 10 seconds and repeat. In this manner, you may jump to each of the three modes.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you are able to see the display on the external monitor then the issue is with the LCD panel. If you are not getting the<span>  </span> display on external monitor also, I am afraid the issue might be due to internal hardware malfunction and Notebook needs<span>  </span> onsite diagnosis.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information on Using Two or More Displays in Windows Vista, please refer our weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01369231&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Extended Service Plans</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.shopping.hp.com/webapp/shopping/can.do?template_type=storefronts&amp;landing=esp&amp;category=Notebook&amp;storeName=storefronts&amp;template_type=storefronts</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The following are the ESPs available for your notebook:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Upgrade Warranty to Pickup &amp; Return Warranty 2 yr<span>                </span> $129.99 </span></p> <p class=MsoNormal><span style="font-size:10pt">Pickup and Return with ADP for 2 years <span>                                       </span> $249.99<span>    </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: The price mentioned above is approximate and may differ at the time of purchase.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The 2-year Express Repair Plan offers:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">• Upgrade of standard warranty to total of two years<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">• Upgrade to three-business-day repair from current 4–10 days (does not include transit time)<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">• Two years of parts and labor<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">• The convenience of door-to-door product pickup and delivery with freight prepaid by HP<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">• Prepaid shipping label, materials and instructions for damaged or defective product return<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">• Maximized uptime and productivity<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">• Easy four-step resolution process<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">• Quick resolution of any hardware problems<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">• HP-trained service representatives<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">• Technical assistance with installation, configuration and setup, problem solving, and normal operation of your HP notebook PC</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Two year ADP (Accidental Damage Protection) with Express Repair offers:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">• Upgrade to two years of Express Repair and Accidental Damage Protection with coverage for damage caused by spills, drops, falls, collisions, electrical surges, fire damage or any other accident<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">• Two years of parts and labor<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">• Upgrade to three-business-day repair from current 4–10 days (does not include transit time)<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">• Door-to-door product pickup and delivery with freight prepaid by HP<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">• 24 x 7 technical assistance with installation, configuration, setup, problem solving, and normal operation of your notebook PC<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">• Easy four-step problem resolution with HP-trained service reps<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">• Maximized uptime and productivity during service period</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you wish to purchase the extended service pack for the notebook, then one of our support agent will be get in touch with you to provide you more information about the ESP and takes order. All you need to do is to get back to us with the date and time to contact you along with below information. An HP Total Care representative will call you at your earliest convenience to answer your questions and provide further assistance.<span>  </span> As always, HP Total Care is available 24 hours a day 7 days a week.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> *<span>  </span> Full Name: </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> *<span>  </span> Organization (If applicable): </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> *<span>  </span> Physical Mailing Address (No P.O. Boxes): </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> *<span>  </span> Apartment/Building/Mailstop: </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> *<span>  </span> City:</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> *<span>  </span> State:</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> *<span>  </span> Zip/Postal Code:</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> *<span>  </span> Phone Number (including area code):</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> *<span>  </span> Convenient day and time for HP to call you (include time zone):</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">F11 Recovery &amp; Back up + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>     </span> CAUTION:<span>  </span> This procedure formats the hard drive and erases all data on the drive.<span>  </span> After performing these steps,</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>               </span> applications will need to be reinstalled.<span>  </span> Back up all data from the hard drive as all data will be deleted</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>               </span> from the drive during the process.<span>  </span> Do not interrupt the following process or unplug the AC adapter until the</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>               </span> process is complete.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*** How to Back up User Files:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information about how to backup user files, please follow the steps provided in the below Web site:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00850162&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please follow the below steps to restore the notebook to original factory settings using F11 option:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Press F11 on the keyboard immediately while the computer is starting up. The HP Backup and Recovery Manager window will appear.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">2. If the Recovery Manager can access the hard drive it displays a prompt to backup up your user files before continuing the recovery. If it cannot access the hard drive to fix the system errors, the Recovery Manager starts recovering the hard drive to its original condition.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information about PC recovery using F11, please check the &quot;Restore PC to original condition with the Recovery Manager from within Windows Vista&quot; category of the below Web site: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?lc=en&amp;cc=us&amp;dlc=en&amp;lang=en&amp;docname=c00809678#N624 </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>     </span> NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <span style="font-size:10pt;font-family:'Times New Roman','serif'"><br style="page-break-before:always"> </span> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Fan Noise—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Dear Kit, </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Thank you for contacting HP Total Care. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">From your E-Mail, I understand that the fan of your Notebook is very noisy.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am glad that you have forwarded us your concerns and have given me an opportunity to assist you. I can understand that such issues with the Notebook can be very upsetting. I apologize for the inconvenience caused.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please be assured that I will provide the necessary assistance to you in this regard.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Kit, I would like to add that CPU fan's gives loud noise when the thermal sensor attempts to read the fan at low duty cycle such as 40%, the short on-time makes it difficult for the part to get a good measurement so it automatically increases the on-time<span>  </span> once per second. This causes the fan to cycle back and forth in speed causing the noise.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The fan will turn on during the initial boot due to the CPU-intense<span>  </span> process. This is done to keep the temperature of the processor down. After a complete boot the fan will spin down and will come on as needed. The<span>  </span> notebooks are designed in order to consume minimum power, so it is the processor, which decides whether or not to switch on the fan. If the<span>  </span> processor or the notebook is getting too hot then the fan will start automatically. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">It is common that the notebooks generally get hotter the longer you use it. The fans keep maximum heat out of the notebook. However, if the suction fan is blocked then the notebook becomes hot quite fast. The best option to use the laptop is by placing it on a flat surface with proper ventilation so that it minimizes the notebook temperature. Or else place it on a thick flat wooden table/block. Wood absorbs certain amount of heat and minimizes the notebook temperature. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The fan should turn on and function properly to dissipate the excessive heat. The problem with the fan could be due to incorrect BIOS settings.<span>  </span> To help resolve the problem, reset the BIOS to defaults.<span>  </span> Additionally, please download and install the BIOS update for the notebook. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Step 1: Reset the BIOS to factory defaults:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Procedure to Reset BIOS</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Turn on or restart the computer. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Press the F10 key at HP logo screen</span></p> <p class=MsoNormal><span style="font-size:10pt">3. From any menu, press F9 to select Setup Defaults. </span></p> <p class=MsoNormal><span style="font-size:10pt">4. Press Enter to load the default configuration. </span></p> <p class=MsoNormal><span style="font-size:10pt">5. Press the F10 key to save and exit. </span></p> <p class=MsoNormal><span style="font-size:10pt">6. Press Enter to verify the selection. </span></p> <p class=MsoNormal><span style="font-size:10pt">7. The computer will restart automatically.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the issue persist the try reinstalling power management. You may follow these steps to reinstall power management:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">=== Reinstalling Power Management In Windows VISTA ===</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To reinstall Power Management in Windows VISTA, follow these steps: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Click Start button</span></p> <p class=MsoNormal><span style="font-size:10pt">2. From Start menu Click Control panel</span></p> <p class=MsoNormal><span style="font-size:10pt">3. In Control Panel Click the &quot;System&quot; icon</span></p> <p class=MsoNormal><span style="font-size:10pt">4. In the System Window look on the Left hand side of the window and you will see a list of options. Click on the &quot;Advanced System Settings&quot; option</span></p> <p class=MsoNormal><span style="font-size:10pt">5. Because Computer management requires administrative privileges you may find the User Account Control will pop up. If it does then enter the required information (if you are not the administrator) or, if you are the administrator, click the Continue button. The System properties window will open.</span></p> <p class=MsoNormal><span style="font-size:10pt">6. Click on &quot;Hardware&quot; tab and &quot;click on Device Manager&quot;</span></p> <p class=MsoNormal><span style="font-size:10pt">7. In Device Manager, click the plus sign (+) next to System Devices. </span></p> <p class=MsoNormal><span style="font-size:10pt">8. Right-click the &quot;ACPI Fixed Features button&quot; and select Uninstall. </span></p> <p class=MsoNormal><span style="font-size:10pt">9. Click on &quot;OK&quot; and Restart the notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">On restarting the notebook, Windows will automatically detects and installs Power Management on the computer.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I recommend you to visit the below weblink for information on understanding power management in Vista:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00825528&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Step 3: BIOS update.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Download and install BIOS update from below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">ftp://ftp.hp.com/pub/softpaq/sp41501-42000/sp41811.exe</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Installation Instructions </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Download the SoftPaq .EXE file to a directory on your hard drive. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Execute the downloaded file and follow the on-screen instructions. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Reboot the notebook after the installation is complete. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">WARNING:<span>  </span> Do not interrupt the BIOS installation process. Interrupting the process, or attempting to install the incorrect BIOS will cause damage to the BIOS and will require that the PC be repaired at an HP authorized facility. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Additionally, to correct this issue, please follow the instructions outlined below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== HP Notebook PCs - Reducing Heat and Fan Noise by Cleaning Air Vents:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The electrical components in a PC generate heat, and fans inside the PC help move the air to keep the components cooled to normal operating temperatures. Inadequate cooling can cause excess heat which forces the fan to run constantly, can damage components, and limit the speed of the CPU. All of these problems with high power and high heat will cause applications to work slower than normal. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The sound of the fan running all the time may the first clue that your PC is not running as efficiently as possible and that you may have a problem with accumulated dust clogging air vents. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Dust and lint on heat generating components and fans. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Notebook PCs have vents in the bottom and sides to allow air to flow through the case. If these vents become clogged or heat generating parts become covered with dust, the fan cannot cool the components properly. Lint and dust accumulation prevents air from flowing around the cooling fins and causes the fan to work harder. If there is dust in the vents, you should clean the computer by blowing out the dust from around the fan and heat shield. This will prevent dust from accumulating.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==Removing dust and lint by cleaning vents.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">The accumulation of dust can often be observed on the vents in the computer's case. You can use a can of compressed air to help remove the dust and prevent overheating. Removing the dust increases the air flow to improve cooling and allow the fan to run quieter. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The cooling vents are located in various places depending on the PC model. You can identify the vents by looking for the copper or black fins inside the vents. You should also blow the compressed air into other openings such as the fan intake vent. This will help keep the air circulating and prevent dust from accumulating on components. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">By taking this action periodically as a preventive measure, you can greatly reduce the possibility of component damage and prevent the slowdown of the computer's performance. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information on this issue, please refer the below HP support document:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01657439&amp;lc=en&amp;dlc=en&amp;cc=us&amp;product=1149400</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01007591&amp;cc=us&amp;lc=en&amp;dlc=en&amp;product=3370352&amp;dlc=en&amp;lang=en</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Kit, after you have performed all the troubleshooting steps and if the issue still exists, the issue could be with internal hardware malfunction and requires onsite diagnosis. Hence, you may have to send the Notebook to HP for onsite diagnosis (Free Mail-in Service). </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The HP trained technicians at the repair centers have an expertise to sort such issues.<span>  </span> They will diagnose the issue and if the issue is with some part malfunction, they will replace that part and send the Notebook back to you.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please complete the information below to process your request for the repair service:</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Shipping Information(USA):</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> E-mail-id:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Name(First and Last):<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Organization:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Mailing Address (No P.O. Boxes):<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Apartment/Building/Mailstop:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> City:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> State:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Zip/Postal Code:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Country:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Phone Number (including area code): </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Product Information:</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Product Model Number (ex: ZX5120us, ZD7040us etc):<span>   </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Product Number (ex: C1234A):<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Product Serial Number (ex: CND44720L9):<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Product Purchase Date:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">I request you to provide me the exact serial number of your notebook in order to check the model specifications and warranty status. The serial number and product number can be found on the bottom side of your Notebook. The serial number will be a 10 or 12 digit alpha numeric characters.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For example, the service tag, located on the bottom of the notebook PC, contains the following information: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Product Name:<span>  </span> Compaq Presario V6000</span></p> <p class=MsoNormal><span style="font-size:10pt">Serial Number:<span>  </span> CNF1234567 </span></p> <p class=MsoNormal><span style="font-size:10pt">Part Number:<span>  </span> RST123A#ABA </span></p> <p class=MsoNormal><span style="font-size:10pt">Model Number:<span>  </span> V6000XX </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information on finding the serial number, visit the following URL:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?lc=en&amp;cc=us&amp;docname=c00033108</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">By sending your Pavilion Notebook to HP to be repaired, you agree to the following conditions:</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">It is your responsibility to backup your data.<span>  </span> This includes hard drives, ROM chips, flash cards, etc.<span>  </span> During the repair process your hard drive will be re-imaged. If it fails QA testing, and in this event you will not have the opportunity to retrieve your data once the repair is complete.<span>  </span> All BIOS passwords should be removed before shipment.<span>  </span> In cases where we receive units with passwords they will be cleared, but this will delay the repair of the unit.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Include accessories ONLY if it would help the technician determine the issue with your unit.<span>  </span> This includes PCMCIA cards, floppy, DVD, and CD-ROM drives, AC adapters, additional 3rd party RAM, batteries, sync cables, etc.<span>  </span> Please do NOT include DVD movie's, Software CD's, Music CD's, port replicators, mini docks, external monitors, product manuals, or carrying cases.<span>  </span> Please make a list of any accessories you are sending with your unit.<span>  </span> Please also include on this note your name,</span></p> <p class=MsoNormal><span style="font-size:10pt">phone number, and address, along with your case number and CSO number. If any discrepancies are noted at the repair center, you will be contacted immediately.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">A box with the required packaging material, packaging instructions, carrier contact information and a pre-paid shipping label will be delivered to you in 1 to 2 business days. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Once you have received these materials and have packaged your product, you will need to contact the carrier to schedule a pick-up.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the damage or problem with your unit is deemed customer damage by the repair center, the repair warranty will be void and the repair will be completed once you have been notified of the damage and payment information has been collected.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">When the FedEx driver arrives to pick up your HP Pavilion Notebook do not release your notebook to the driver until he has provided a tracking number to you.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">To check on status of your order please refer to the following HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.hp.com/go/csostatus</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Additionally, due to parts backorders, shipping issues, or circumstances beyond HPs control your repair may require additional time.<span>  </span> In these situations, you will be notified.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">The CSO number should be plainly viewable on the outside of the box. If FedEx does not provide a receipt with/without tracking number, do not let them take your HP Pavilion Notebook.<span>  </span> Always verify that the air bill has the correct ship-to address on it.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please get back to me with the<span>  </span> requested information above as it is important that I resolve your issue in a timely manner.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I look forward to hear from you, and hope to be of future assistance.</span></p>Mon, 09 Nov 2009 13:26:30 Z2009-11-09T13:26:31Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/7b07fcc0-9e4a-4eec-8c11-b704b6a50d69http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/7b07fcc0-9e4a-4eec-8c11-b704b6a50d69vcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 7 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Code 39 –XP</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The issue seems to be with corrupted device driver files of the CD / DVD device. This happens when registry files is corrupted or device drivers while installing any applications. Follow the below steps to resolve the issue:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">* Reset BIOS.</span></p> <p class=MsoNormal><span style="font-size:10pt">* Deleting UpperFilter and LowerFilter Registry Keys.</span></p> <p class=MsoNormal><span style="font-size:10pt">* Reinstall the drivers.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">**Reset BIOS**</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Turn on or restart the computer. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Tapp the F10 key to enter BIOS setup.</span></p> <p class=MsoNormal><span style="font-size:10pt">3. Press F9 to Setup Defaults.</span></p> <p class=MsoNormal><span style="font-size:10pt">4. Click Enter. </span></p> <p class=MsoNormal><span style="font-size:10pt">5. Click F10 and Enter to Save and Exit BIOS setup.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">**Backup Registry**</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Click Start.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. Click Run.</span></p> <p class=MsoNormal><span style="font-size:10pt">3. In the &quot;Open&quot; field type REGEDIT.</span></p> <p class=MsoNormal><span style="font-size:10pt">4. Click OK.</span></p> <p class=MsoNormal><span style="font-size:10pt">5. Click &quot;File&quot; in the menu bar.</span></p> <p class=MsoNormal><span style="font-size:10pt">6. Click &quot;Export&quot; from the drop down menu this will open a new box.</span></p> <p class=MsoNormal><span style="font-size:10pt">7. Click the down arrow beside &quot;Save In&quot; and select &quot;Local Disk (C:)&quot;.</span></p> <p class=MsoNormal><span style="font-size:10pt">8. In the File Name field type BACKUP.REG.</span></p> <p class=MsoNormal><span style="font-size:10pt">9. Verify that under the &quot;Export Range&quot;, that the radio button is beside &quot;All&quot;.</span></p> <p class=MsoNormal><span style="font-size:10pt">10. Click Save.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">**Deleting UpperFilter and LowerFilter Registry Keys**</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please run the automated patch from the below URL to remove the Filter keys:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.dougknox.com/xp/scripts/xp_cd_dvd_fix.vbs</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>     </span> NOTE:<span>  </span> The URL(s) above will take you to a non HP Web site.<span>  </span> HP does </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> not control and is not responsible for information outside </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">**Reinstall CD/DVD Drivers**</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Click Start, Control Panel, Performance and Maintenance, and then System icon.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. This opens the System properties window.</span></p> <p class=MsoNormal><span style="font-size:10pt">3. Select Hardware tab and click Device Manager.</span></p> <p class=MsoNormal><span style="font-size:10pt">4. Click &quot;+&quot; beside CD/DVD Device Category.</span></p> <p class=MsoNormal><span style="font-size:10pt">5. Right-click the listed CD/DVD/RW and select Uninstall.</span></p> <p class=MsoNormal><span style="font-size:10pt">6. Restart the system.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Windows will redetect the device on restart and reinstalls the drivers automatically.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Collateral--V C</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">&lt;&gt;&lt;&gt;&lt;&gt;, we would be happy to process the request for a replacement part.<span>  </span> However, the DVD writer is a collateral part.<span>  </span> This implies that the replacement of dvd writer entails returning the faulty one.<span>  </span> If the faulty drive is returned within 15 calendar days of shipment, the replacement would be free of cost under warranty conditions [included below].<span>  </span> If however, the faulty DVD writer is not returned within the stipulated time, applicable charges would be levied.<span>  </span> We would therefore need your credit card details.<span>  </span> We do not seek credit card information through email as a policy.<span>  </span> Please DO NOT provide any credit card information via email.<span>  </span> Such sensitive information is sought only through phone.<span>  </span> Please provide us with the convenient date (2 dates) and time so that we can contact you for the credit card information.<span>  </span> Additionally, provide us with the shipping details to which we can send the part to.<span>   </span> The case number for your request is </span></p> <p class=MsoNormal><span style="font-size:10pt">&lt;8020935920&gt; and this will be the reference number when we call you.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">=== HP warranty conditions for collateral parts ===</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> All returned spare parts must be in &quot;as new condition&quot;, and returned in the original packaging. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> In cases where HP did not receive the defective part within 15 calendar days of shipment of the exchange part from you then you will be charged for the exchange part. Return instructions and pre-paid shipping label are included. No charges are assessed if the unit is returned within the required time.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">=== Additional information needed ===</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please provide the following information about when we can contact you:</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Dates and Days (2 days):</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Time to call:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Telephone Number to call:</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Note: One of our agents will call you from a secured phoneline therefore, Irequest you to provide a phone number that accepts such calls.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Shipping Information : (US address only) </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Name: </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Organization:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Mailing Address (No P.O. Boxes):<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Apartment/Building/Mailstop:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> City:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> State:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Zip/Postal Code:<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Phone Number (including area code): </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Email Address:</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">I believe this information helps you. I apologize for the inconvenience this may cause you. If you need further assistance, please reply to this message and we will be glad to assist you further.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="font-size:10pt">Disk Cleanup + Vista—VC</span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, I recommend you to use Disk Clean up utility to scan your disks, finds unnecessary files and helps you remove them to cleanup some space.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Disk Cleanup</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Disk Cleanup can be found in the Start Menu by going to Accessories -&gt; System Tools. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Alternatively, you can always use the search box and type the word &quot;disk&quot;. The first result should be the Disk Cleanup shortcut.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">2) When the application starts, you need to select the partition you want to cleanup and then click on OK.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">3) Disk Cleanup will scan the selected partition and calculate how much space you can free up.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">4) After a while, the results are shown. You can see the total amount of the space you can free up which is then detailed by categories of files that can be deleted. Select all categories or just the ones you want to be deleted and then click on OK.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">5) Disk Cleanup will ask for your confirmation. Click on Delete files and the cleanup process will start.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">6) Wait until the progress bar fills up and the Disk Cleanup window disappears.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">7) In case you are not satisfied with the amount of space that was freed, go to the More Options tab from the Disk Cleanup window. Here you can remove all but the most recent System Restore points or uninstall some of the programs you have on your PC.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">8) If you click on the first Clean up button, it will take you to Programs and Features. There you will find a list with all the installed applications. Select the one you want to uninstall, click on Uninstall/Change and follow the uninstall wizard of that application.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">9) If you click on the second Clean up button, you will delete all the System Restore points found on that partition, except the most recent one. If you had many System Restore points you can save quite a lot of space, compared to the first option.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For a pictorial representation of the above information, please refer the below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.vista4beginners.com/Disk-Cleanup</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Downgrade(Final)—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I am glad that you have forwarded us your concerns and have given me an opportunity to assist you. I assure you of my complete assistance. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I would like to share that HP does not recommend installation of XP Operating System on Vista preinstalled notebooks. HP PCs purchased with Windows Vista should not be downgraded to another operating system. As Windows XP-compatible drivers for functions such as sound, video, graphics, network connectivity, drives, or other devices and peripherals may not be available and many applications like quickplay may also not function properly. HP Presario C558US Notebook is tested with Windows Vista. Also the hardware bundled with this notebook is advanced and therefore the drivers for Windows XP may not be available from the manufacturer.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Some component manufacturers do not provide Windows XP-compatible drivers for components that they designed for Windows Vista. Even if a third-party company or Windows itself can provide generic drivers that will allow all of your devices to operate, the performance of your HP PC may be less than optimal.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, if you wish to downgrade the Operating System from Vista to XP, then you need to install Retail version of Windows XP Operating System CD and if you install a retail version of Windows XP, then you may not get the preinstalled applications like Quick Play, CD/DVD burning software etc.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Also, as the notebook is specially designed and bundled for Windows Vista Operating System, you may find it difficult to get all the drivers for the devices installed in the notebook which supports Windows XP Operating System.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To know more on issues you will experience if you downgrade your notebook Operating system from Windows Vista to Windows XP, please go refer the below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01092639&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, if you wish to downgrade to Windows XP, below are the drivers for Windows XP operating system for your notebook. It is stongly recomended to install these drivers only after you install Windows Xp on your notebook. Please do not install these drivers in Vista operating system. The notebook must be restarted after installing each driver, if you do not restart the notebook the next driver may not install properly.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Windows XP service pack 2 must be installed on the notebook before you install these drivers on your norebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Before you start the installation process, I recommend you to create the recovery discs for your Notebook. I would like to inform you that the latest model HP Pavilion/Compaq notebooks are not shipped with Recovery Disks. These models are featured with new Recovery process called &quot;Softthinks PC Recovery&quot;. The Recovery Partition contains the image of the operating system, applications and drivers. You can reinstall the Operating system and preinstalled applications from this recovery process. Also, when the notebook is turned on for the first time, it will prompts the user to create Recovery CD's or DVD's. If the notebook is having CD/DVD writer, you can burn the Recovery CD's or DVD's.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This Recovery Partition can be used for the following:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Creating Recovery kit for your notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Restoring factory installed application or driver.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Reinstall or repair the existing Operating System.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Restore the notebook to its Original factory settings.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The Recovery Manager examines your computer and determines how many blank CDs or DVDs the disk creation process will require.<span>  </span> The disk creation process may require up to 10 or more CD-R disks or 1-3 DVD-R or DVD+R disks.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>     </span> CAUTION:<span>  </span> The disk must be either CD-R, DVD-R, or DVD+R.<span>  </span> Do not</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>               </span> use CD-RW or DVD-RW disks because the Read/Write type</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>               </span> disks will cause the creation process to fail.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==Creating the Recovery disks</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1.Click Start and type Recovery in the Search field. </span></p> <p class=MsoNormal><span style="font-size:10pt">2.Select Recovery Manager , and when the wizard opens, click the Advanced options button, if available. </span></p> <p class=MsoNormal><span style="font-size:10pt">3.Select Recovery disk Creation , and follow the directions provided in the wizard. </span></p> <p class=MsoNormal><span style="font-size:10pt">4.After all the recovery disks are created, label the disks and store them in a safe place.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information in creating recovery disks set for your notebook, please refer to the below HP support document:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00809678&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After you have done with the creation of recovery discs, at this point, please be informed that, as your Notebook has SATA hard drive installed and due to the unavailability of SATA drivers, Windows XP will not detect the SATA hard drive as it does not support the Native SATA feature. Hence, you need to disable the SATA feature by performing the steps provided and can install the Windows XP. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Start the notebook PC.</span></p> <p class=MsoNormal><span style="font-size:10pt">2) Repeatedly press the F10 key (or key designated by the notebook PC) until the notebook enters the Computer Setup screen. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) Use the arrow keys to select System Configuration . </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Use the arrow keys to select SATA Native Mode and set the mode to Disable . </span></p> <p class=MsoNormal><span style="font-size:10pt">5) Press the F10 key (or designated key to accept the changes). </span></p> <p class=MsoNormal><span style="font-size:10pt">6) Save changes and exit Computer Setup.</span></p> <p class=MsoNormal><span style="font-size:10pt">7) The notebook should restart.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Note: The SATA nativefeature may not be avaialable for few HP Notebook. In this situation, please go ahead with the below provided instructions.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Also, for more information on downgrading your notebook operating sytem from Windows Vista operating system to Windows XP operating system, please go through the following URLs: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c01274160&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Now, you can proceed further with the below links to download the drivers and install the drivers for XP. Please download and install the drivers in the same sequence as they are provided. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please check the below drivers for CQ60-216DX for Windows XP Operating System.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the links below may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After you have downgraded and installed all the drivers, you need to run the Microsoft Windows Updates. This windows updates will scan the notebook hardware, download and install the required drivers from Microsoft. To do this please visit the below Web site:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://windowsupdate.microsoft.com/</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Hope, I have thoroughly addressed your concerns. If you have any further questions, please get back to us. We will be glad to assist you.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div>Mon, 09 Nov 2009 13:24:59 Z2009-11-09T13:25:00Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/eeac5ef7-8bed-40ac-88ec-48f959f1c16dhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/eeac5ef7-8bed-40ac-88ec-48f959f1c16dvcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 6 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">chkdisk error at startup + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">At this point, to resolve the issue, I recommend you to follow the steps provided below: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Click Start, All Programs, Accessories </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Right-click on Command Prompt and select &quot;Run as Administrator&quot; </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Now, type the following commands and press the Enter key: </span></p> <p class=MsoNormal><span style="font-size:10pt">fsutil dirty query C: </span></p> <p class=MsoNormal><span style="font-size:10pt">CHKNTFS /X c: </span></p> <p class=MsoNormal><span style="font-size:10pt">if you get any option to be selected, select &quot;Y&quot; from the option (Y/N) </span></p> <p class=MsoNormal><span style="font-size:10pt">4. Restart the notebook </span></p> <p class=MsoNormal><span style="font-size:10pt">5. Perform Steps1 and 2 again to start Command Prompt </span></p> <p class=MsoNormal><span style="font-size:10pt">6. Type the following commands and press the Enter key: </span></p> <p class=MsoNormal><span style="font-size:10pt">Chkdsk /f /r C: </span></p> <p class=MsoNormal><span style="font-size:10pt">fsutil dirty query C: </span></p> <p class=MsoNormal><span style="font-size:10pt">exit </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After completing the step 3 and restarting the notebook, I recommend you to be patient as the CHKDSK takes much time. </span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt">The above given steps will stop Checkdisk from running on every startup.</span></p> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Clean boot + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== To perform a clean boot on a computer that is running Windows Vista, follow these steps.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Click Start, type msconfig in the Start Search box, and then press ENTER.</span></p> <p class=MsoNormal><span style="font-size:10pt">If you are prompted for an administrator password or for a confirmation, type the password, or click Continue. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">2) On the General tab, click Selective Startup.</span></p> <p class=MsoNormal><span style="font-size:10pt">3) Under Selective Startup, click to clear the Load Startup Items check box.</span></p> <p class=MsoNormal><span style="font-size:10pt">4) Click the Services tab, click to select the Hide All Microsoft Services check box, and then click Disable All.</span></p> <p class=MsoNormal><span style="font-size:10pt">5) Click OK.</span></p> <p class=MsoNormal><span style="font-size:10pt">6) When you are prompted, click Restart.</span></p> <p class=MsoNormal><span style="font-size:10pt">7) After the computer starts, start the game or program and check whether the problem is resolved.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information, please refer the below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://support.microsoft.com/kb/331796</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://support.microsoft.com/kb/929135</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Clean boot + XP—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== To perform a clean boot on a computer that is running Windows XP, follow these steps.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Click Start, and then click Run.</span></p> <p class=MsoNormal><span style="font-size:10pt">2) Type msconfig in the Open box, and then click OK.</span></p> <p class=MsoNormal><span style="font-size:10pt">3) On the General tab, click Selective Startup.</span></p> <p class=MsoNormal><span style="font-size:10pt">4) Under Selective Startup, click to clear the following check boxes: </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>                                                 </span> . Process SYSTEM.INI File</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>                                                 </span> . Process WIN.INI File</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>                                                 </span> . Load Startup Items</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">5) Click the Services tab, click to select the Hide All Microsoft Services check box, and then click Disable All.</span></p> <p class=MsoNormal><span style="font-size:10pt">6) Click OK.</span></p> <p class=MsoNormal><span style="font-size:10pt">7) When you are prompted, click Restart.</span></p> <p class=MsoNormal><span style="font-size:10pt">8) After the computer starts, start the game or program and check whether the problem is resolved</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information, please refer the below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://support.microsoft.com/kb/331796</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <span style="font-size:10pt;font-family:'Times New Roman','serif'"><br style="page-break-before:always"> </span> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Code 31 Wireless + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Ron, let me first appreciate your enormous amount of efforts and patience you have put in to resolve this issue. The issue might be due to corrupt wireless LAN card drivers or with the hardware malfunction of the wireless card. To isolate the issue, I recommend you to perform the steps provided below to resolve this issue with the notebook. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">**Release flea power: </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Press &amp; hold power button until notebook shuts down. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Remove the AC adapter. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) Make sure that the battery has been removed as well. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Press &amp; hold power button for 30 Seconds. </span></p> <p class=MsoNormal><span style="font-size:10pt">5) Reconnect AC adapter. </span></p> <p class=MsoNormal><span style="font-size:10pt">6) Try to restart the notebook. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">**BIOS update: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">ftp://ftp.hp.com/pub/softpaq/sp38001-38500/sp38173.exe </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Installation Instructions: </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Download the SoftPaq .EXE file to a directory on your hard drive. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Execute the downloaded file and follow the on-screen instructions. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">CAUTION: To prevent damage to the computer or an unsuccessful installation, download and install a BIOS update only when the computer is connected to reliable external power using the AC adapter. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Do not download or install a BIOS update while the computer is running on battery power, docked in an optional docking device, or connected to an optional power source. During the download and installation, follow these instructions: </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">I) Do not disconnect power from the computer by unplugging the power cord from the AC outlet. </span></p> <p class=MsoNormal><span style="font-size:10pt">II) Do not shut down the computer or initiate Sleep or Hibernation. </span></p> <p class=MsoNormal><span style="font-size:10pt">III) Do not insert, remove, connect, or disconnect any device, cable, or cord. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I also recommend you uninstall and reinstall wireless LAN card drivers(if found) by performing the steps provided below: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Uninstall Wireless LAN card driver:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Click on Start </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Type Device Manager in the Start Search box </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Click on Device Manager </span></p> <p class=MsoNormal><span style="font-size:10pt">4. Click the &quot;+&quot; symbol against Network Adapter. </span></p> <p class=MsoNormal><span style="font-size:10pt">5. Right Click on the Wireless adapter and click uninstall. In the &quot;Confirm Device Uninstall&quot; dialog box, click OK. </span></p> <p class=MsoNormal><span style="font-size:10pt">6. Restart the system. Windows will redetect the device on restart and reinstalls the drivers automatically. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Now, I recommend you to download and install the Broadcom Wireless LAN Driver for Microsoft Windows Vista from the softpaq provided below: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">** Reinstall Wireless driver: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">ftp://ftp.hp.com/pub/softpaq/sp39501-40000/sp39911.exe </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Installation Instructions </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Download the SoftPaq .EXE file to adirectory on your hard drive. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Execute the downloaded file and follow the on-screen instructions. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">** Environmental interference: </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Many times the performance of your wireless network can be affected by environmental factors. These factors will not always cause interference but must be considered at some point during your wireless network troubleshooting. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> * 2.4 GHz cordless phones </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> * Microwave ovens </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> * Electrical parameter fences </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> * Electrical transformers near the router </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> * Security systems </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> * Other wireless network transmitters near the router. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After performing the above steps, if you can see the wireless card listed in the device manager, then try to reconfigure the wireless network in the notebook. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Setting Up a Wireless Local Area Network == </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00812957&amp;cc=us&amp;lc=en&amp;dlc=en&amp;product=1842155&amp;dlc=en&amp;lang=en </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Copy and paste the entire link in a new browser window. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Connecting to Wireless Networks with Windows Vista == </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.microsoft.com/technet/community/columns/cableguy/cg0406.mspx </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> HP does </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>        </span> not control and is not responsible for information outside of the HP Web site. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the issue persists, I recommend you to remove and reseat wireless card in your notebook as the issue might be due to loose connection between the wireless card and wireless connectors present in the notebook. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To get information on how to remove and replace wireless card in your notebook, I am providing you with the manual. </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10032.www1.hp.com/ctg/Manual/c01295900.pdf </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE : The information on how to remove and replace wireless card is explained from page number 53 to 55 of the above manual. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE : The PDF files can be read online or printed using Adobe® Acrobat® Reader. If you do not have this software installed on your system, you may download it from the below link : </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.adobe.com/products/acrobat/readstep2.html </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After performing the above necessary troubleshooting steps if the issue persists, it is clear that the wireless card is malfunctioning. At this point, I request you to get back to me so that I can provide available options for you to replace defective wireless card. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The information given above will help you to resolve this issue. However, if the issue persists even after performing the above steps, then please get back to us with observations, results and we will be glad to assist you further.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Code 39 (Resolved) + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Thitinun, I want to inform you that such issues with CD/DVD drive may occur due to any of the following reasons: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">* Incorrect BIOS settings. </span></p> <p class=MsoNormal><span style="font-size:10pt">* Corrupt Registry settings related to CD/DVD entries. </span></p> <p class=MsoNormal><span style="font-size:10pt">* Corrupt CD/DVD drivers. </span></p> <p class=MsoNormal><span style="font-size:10pt">* Malfunction of the CD/DVD drive. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">We can resolve this issue by performing the following steps one after the other: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">** Reset BIOS: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Restart the notebook. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Tap the F10 key as soon as the HP logo appears. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Using the arrow keys, navigate to Exit Menu, select &quot;Load Setup Defaults&quot; and select &quot;Exit Saving Changes&quot; </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This will reset the BIOS to its default. Next, I suggest you to change the registry settings related to CD/DVD drive entries by following the below steps: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">** Backing Up Registry and Registry Key: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">CAUTION: The registry contains critical information and a registry backup is essential. An incorrect registry entry may cause serious system problems or prevent the computer from starting. You will not be warned of any incorrect registry entries. If the registry is not backed up, theonly way to recover the system is to reinstall the operating system. Do not double-click the Backup.reg file on the desktop unless you intend to undo the changes you are making to the registry. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Click Start and type regedit in the text box. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Click &quot;File&quot; in the menu. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Click &quot;Export&quot; from the drop-down menu. </span></p> <p class=MsoNormal><span style="font-size:10pt">4. Click the down arrow beside &quot;Save In&quot; and select Local Disk(C:). </span></p> <p class=MsoNormal><span style="font-size:10pt">5. Type Backup.reg in the File Name field. </span></p> <p class=MsoNormal><span style="font-size:10pt">6. Click Save. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">**Deleting UpperFilter and LowerFilter Registry Keys: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Click Start and click Run. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. In the Open box, type regedit and click OK. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Click the plus (+) sign beside HKEY_LOCAL_MACHINE. </span></p> <p class=MsoNormal><span style="font-size:10pt">4. Click the plus (+) sign beside System.</span></p> <p class=MsoNormal><span style="font-size:10pt">5. Click the plus(+) sign beside Current Control Set. </span></p> <p class=MsoNormal><span style="font-size:10pt">6. Click the plus (+) sign beside Control. </span></p> <p class=MsoNormal><span style="font-size:10pt">7. Click the plus (+) sign beside Class. </span></p> <p class=MsoNormal><span style="font-size:10pt">8. Locate the {4d36e965-e325-11ce-bfc1-08002be10318} key and click it. </span></p> <p class=MsoNormal><span style="font-size:10pt">9. On the File menu, click Export. </span></p> <p class=MsoNormal><span style="font-size:10pt">10. In the File name box, type savedkey and click Save. It is better </span></p> <p class=MsoNormal><span style="font-size:10pt">to save the &quot;savedkey&quot; to the desktop. </span></p> <p class=MsoNormal><span style="font-size:10pt">11. Click the REG_MULTI_SZ data type UpperFilters (found in right window pane) and then click Delete on the Edit menu. </span></p> <p class=MsoNormal><span style="font-size:10pt">12. When you are prompted to confirm the deletion, click Yes. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: If this data type is missing, continue to the next method. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">13. Click the REG_MULTI_SZ data type LowerFilters (found in right window pane) and click Delete on the Edit menu. </span></p> <p class=MsoNormal><span style="font-size:10pt">14. When you are prompted to confirm the deletion, click Yes. </span></p> <p class=MsoNormal><span style="font-size:10pt">15. Quit the Registry Editor and restart the computer. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This will change the registry settings. Now, reinstall the CD/DVD drivers by following the below steps: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">** Reinstalling the CD/DVD drive drivers: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Select Computer and click on Manage. This will prompt you with a User Account Control Window. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Click on Continue. This will open Device Manager. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Click the &quot;+&quot; sign next to CD/DVD Drive. </span></p> <p class=MsoNormal><span style="font-size:10pt">4. Click the first device listed under CD/DVDdrive to highlight it. </span></p> <p class=MsoNormal><span style="font-size:10pt">5. Click uninstall to remove the CD/DVD device driver. </span></p> <p class=MsoNormal><span style="font-size:10pt">6. Click OK for confirmation. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Restart the computer. This will reinstall the drivers on your notebook automatically. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please perform the above steps and get back to me with observations and results because it is important that I resolve your issue in a timely manner. I would like to add that we value your precious time and would be here round the clock to serve you.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div>Mon, 09 Nov 2009 13:23:59 Z2009-11-09T13:24:00Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/f02e043b-3578-477e-8d6d-b17d291872cchttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/f02e043b-3578-477e-8d6d-b17d291872ccvcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 5 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} a:link, span.MsoHyperlink {mso-style-unhide:no; color:blue; text-decoration:underline; text-underline:single;} a:visited, span.MsoHyperlinkFollowed {mso-style-noshow:yes; mso-style-priority:99; color:purple; mso-themecolor:followedhyperlink; text-decoration:underline; text-underline:single;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">== How to burn CDs and DVDs in Windows Vista</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Here are the steps to burn your files on a CD or DVD, using only Windows Vista's built-in tools. In order to write a CD or DVD you must have an optical disc drive capable of burning such storage media. If you double click on the Computer icon from your desktop, these drives are listed as CD RW Drive or DVD RW Drive. If you have an appropriate drive, then you need blank CDs or DVDs on which to burn your files. If you have those as well, just follow these instructions:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) First, take a blank CD or DVD and insert it into your CD RW or DVD RW optical disc drive.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">2) After a few seconds the AutoPlay menu should pop-up. Depending on your configuration, you will have several options available. Click on 'Burn files to disc using Windows'.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">3) If the AutoPlay menu does not show up, you can right click on the drive containing the writable CD or DVD and then select Open AutoPlay.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">4) The 'Burn a Disc' wizard will now start. Type the disc title and click on the 'Show formatting options' arrow.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">5) Now you can choose the format of your disc. If you choose Live File System, you can copy files to the disc at any time, instead of burning them all at once. This option is recommended if you want to burn files that occupy less space than the disc capacity. This way, you can add other files at a later time until you fill all the available space on your CD or DVD.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">6) If you choose Mastered, you won't be able to add files to the disc at a later time, even though there is some free space left. Also, discs created using this format are more likely to be compatible with older computers and operating systems.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">7) Once you have decided on the format click on Next. A new window will appear, asking you to drag files to this folder to add them to the disc.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">8) Open another Computer window or Windows Explorer and go to the location of the files you want to burn. Select them and, with the left mouse button pressed, drag them to the previous window.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">9) After you have dragged all the files you want to burn, click on the Burn to disc button.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">10) Choose the recording speed and check the option that says 'Close the wizard after the files have been written'. If you want to, you can also change the disc title. When finished, click on Next.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The burning process will now start. Wait until the progress bar reaches its end and the CD or DVD is ejected from the optical disc drive unit. Depending on your system and the amount of files burned, the burning process can take from a few seconds up to several minutes.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For a pictorial representation of the above information, please refer the below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.vista4beginners.com/Burn-CDs-DVDs</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">C drive free space—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Amir Pasha, At this point of time, to resolve the issue, disable system restore points by using the steps below and check once.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">How to open System Restore?</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) First, type 'system restore' in the Start Menu search field and press Enter or click on the search result. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Alternatively, you can go to Start Menu -&gt; All Programs -&gt; Accessories -&gt; System Tools -&gt; System Restore.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">2) The main System Restore window will now open. Click on the 'open System Protection' link shown below.</span></p> <p class=MsoNormal><span style="font-size:10pt">3) In the new window you will see a list with all your partitions and when was the most recent restore point created.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== How to disable System Restore</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Each partition on which System Restore is enabled has a box checked on its left. To disable System Restore on any of the selected partitions you need to uncheck those boxes. Unchecking all boxes will mean that System Restore is completely disabled.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">When you uncheck a box, you will receive a warning window.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Click on 'Turn System Protection Off' and System Restore will be disabled.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: Unless you use other system recovery tools, it is recommended to leave System Restore enabled at least for your main system 'C:' drive.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Restart the system now, this deletes all the restores points and the space occupied by those points. Chech now if the C Drive is showing the correct amount of free space.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Also, to resolve this issue, you may either use Image Enhancement to automatically adjust how your drive capacity is displayed, or you can use Disk Management to manually adjust the drive capacity settings. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Both methods are explained in detail in the weblink below.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><a href="http://h10025.www1.hp.com/ewfrf/wc/document?lc=en&amp;dlc=en&amp;cc=us&amp;docname=c00870036">http://h10025.www1.hp.com/ewfrf/wc/document?lc=en&amp;dlc=en&amp;cc=us&amp;docname=c00870036</a> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After you have completed all the above steps, If still the wrong amount of space is displayed, please get back to me with your observations and results; I will be glad to assist you further.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Coming to the precautions in using CCleaner, I would like to inform you that, CCleaner removes unused files from your system - allowing Windows to run faster and freeing up valuable hard disk space. It also cleans traces of your online activities such as your Internet history.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">It Removes temp files and recent file lists (MRUs) from many apps including Media Player, eMule, Kazaa, Google Toolbar, Netscape, Microsoft Office, Nero, Adobe Acrobat, WinRAR, WinAce, WinZip. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I want to make sure that, deleting these files will not harm any of the programs. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I hope the above information helps you. If you need further assistance, please reply to this message and we will be happy to assist you further. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Glad to be of Service. Have a nice time!</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Sincerely, </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Clarissa</span></p> <p class=MsoNormal><span style="font-size:10pt">HP Total Care.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">***Do Not Delete Service Ticket Number*** </span></p> <p class=MsoNormal><span style="font-size:10pt">{ticketno:[8023312210]} </span></p> <p class=MsoNormal><span style="font-size:10pt">***Do Not Delete Service Ticket Number*** </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Hello Jose, </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Thank you for writing back. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Jose, you can download and install the ccleaner from below web link at free of cost. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please down load the ccleaner from below web link : </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://downloads.phpnuke.org/lv/software/download/kl70232.htm </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The information provided above should help you. Please reply to this mail if you have any queries. We will be glad to assist you. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Dear Jose, </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Thank you for contacting HP Total Care. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I understand that you would like to know the repercussions after deleting the files in %temp%. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Let me assist you in this regard. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Jose, I would like to inform that programs create temporary files primarily for backup purposes. Many programs, such as those included with Microsoft Office, will save a temporary version of a file every few minutes while the original file is open. Then if you have not saved the file and the program unexpectedly crashes or the computer is turned off, there will be a temporary file that was recently saved. Temp files are typically deleted automatically when the programis closed normally, but if the program quits unexpectedly, the temp files are not deleted. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, some temp files are left behind even when a program is quit correctly. This may be due to programming errors that cause temporary files to not be correctly disposed of when an application is quit. These files can accumulate on your hard drive without you even noticing. Finally, Web browsers, such as Internet Explorer, create &quot;Temporary Internet Files&quot; to store user data, including cookies, images from visited Web pages, and the user's browsing history. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">On a long run, these files pile up and occupy the Harddrive unnecessarily, which results in performance choke and other undesired consequences, Hence there is absolutely no harm in deleting these files, deleting these files regularly will help the Notebook to run efficiently. Manual deletion of these files can be hectic, hence I request you to use a tool called ‘CCleaner’, this commendable tool not only deletes unwanted junk files but also keeps the registry free from errors, you may download the above mentioned tool on the following link: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.ccleaner.com/ </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">As you are keen in improving the system performance, I am providing few tweaking links that will help your Notebook to perform better than before: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Assuming that you are using Vista, here are the links: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.tweakvista.com/VistaPerformanceTweaks.aspx </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.windowsvistamagazine.com/4352741769746825868/50-ways-to-make-windows-vista-faster-part-1.html </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.techtree.com/techtree/jsp/article.jsp?article_id=83323&amp;cat_id=584 </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">By using the tips and recommendations from the above links, I am sure that the performance of your Notebook will boost considerably. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you need further assistance, please reply to this message and we will be happy to assist you further.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">=========================================================</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">CDDVD not recognized + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">John, the issue might be due to either corrupted CD/DVD drivers or corrupted registry settings. To isolate the issue, I recommend you to perform the following troubleshooting steps:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Step 1: Remove upper filter and lower filters from registry.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1.<span>  </span> Click Start and click Run.</span></p> <p class=MsoNormal><span style="font-size:10pt">2.<span>  </span> In the Open box, type regedit and click OK.</span></p> <p class=MsoNormal><span style="font-size:10pt">3.<span>  </span> Click the plus (+) sign beside HKEY_LOCAL_MACHINE.</span></p> <p class=MsoNormal><span style="font-size:10pt">4.<span>  </span> Click the plus (+) sign beside System.</span></p> <p class=MsoNormal><span style="font-size:10pt">5.<span>  </span> Click the plus (+) sign beside Current Control Set.</span></p> <p class=MsoNormal><span style="font-size:10pt">6.<span>  </span> Click the plus (+) sign beside Control.</span></p> <p class=MsoNormal><span style="font-size:10pt">7.<span>  </span> Click the plus (+) sign beside Class.</span></p> <p class=MsoNormal><span style="font-size:10pt">8.<span>  </span> Locate the {4d36e965-e325-11ce-bfc1-08002be10318} key and click it. </span></p> <p class=MsoNormal><span style="font-size:10pt">9.<span>  </span> On the File menu, click Export.</span></p> <p class=MsoNormal><span style="font-size:10pt">10. In the File name box, type savedkey and click Save.<span>  </span> It is better </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>    </span> to save the &quot;savedkey&quot; to the desktop.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">11. Click the REG_MULTI_SZ data type UpperFilters (found in right </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>    </span> window pane) and then click Delete on the Edit menu. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">12. When you are prompted to confirm the deletion, click Yes.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>   </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> If this data type is missing, continue to the next<span>  </span> method.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">13. Click the REG_MULTI_SZ data type LowerFilters (found in right </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>    </span> window pane) and click Delete on the Edit menu. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">14. When you are prompted to confirm the deletion, click Yes.</span></p> <p class=MsoNormal><span style="font-size:10pt">15. Quit the Registry Editor and restart the computer.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information on CD/DVD Drive is not Detected (Windows Vista), please refer the below HP support document:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&amp;docname=c00817052&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: The above document also applies to Notebook PCs </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Step 2: Uninstall CD/DVD drivers.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Click Start, Control Panel, Device Manager.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. This opens Device Manager.</span></p> <p class=MsoNormal><span style="font-size:10pt">3. Click &quot;+&quot; beside CD/DVD Device Category.</span></p> <p class=MsoNormal><span style="font-size:10pt">4. Right-click the listed CD/DVD/RW and select Uninstall.</span></p> <p class=MsoNormal><span style="font-size:10pt">5. Restart the system.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Windows will redetect the device on restart and reinstalls the drivers automatically.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For additional information on how to uninstall the driver from device manager, please refer the the below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.vista4beginners.com/Uninstall-the-driver-of-a-hardware-component</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the issue persists, I recommend you to remove and reseat CD/DVD drive on your Notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To remove and reseat CD/DVD drive, please follow the steps rovided in the manual provided in the weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10032.www1.hp.com/ctg/Manual/c00637377.pdf</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The above link is in .pdf format, to open the link acrobat reader application should be preinstalled in your system. Please download the software from the URL below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.adobe.com/products/acrobat/readstep2.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can find the instructions under &quot;Removing and Replacement&quot; category on the service manual link on page number 112 of 239.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I hope this information helps you. If the issue persists, please get back to me with your observations and results. I will be glad to assist you further.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div>Mon, 09 Nov 2009 13:23:12 Z2009-11-09T13:23:12Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/cc7d1d3b-f3b7-4668-8175-7a74818cbbfahttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/cc7d1d3b-f3b7-4668-8175-7a74818cbbfavcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 4 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Battery</span> </span> </strong> <strong><span style="text-decoration:underline"><span style="font-size:10pt"> Overheating</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I will certainly assists you in this matter. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The notebook may overheat due to the following conditions:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The operation of the fan is controlled by thermal sensors that are equipped on your notebook.<span>  </span> I would like to inform you that the We all know that notebooks are more compact than desktops. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To achieve that smaller size, a notebook's internal components--the motherboard, the hard drive, and so forth--must be placed in close proximity to one another.<span>  </span> The problem is that microprocessors, hard drives, and other components produce heat. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Because a notebook's insides are crowded, it's more difficult for that heat to escape, despite the internal fans and heat sinks (pipes and fins that move heat from one place to another) included in many notebooks. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">This heat may affect a notebook's internal components over time.<span>  </span> For instance, some notebook hard drives are more likely to fail than desktop hard drives partly because of the heat.<span>  </span> Also, the bottom of some notebooks tends to grow warm--even hot--after a period of use.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The faster the processor, the more heat it's likely to generate.<span>  </span> Also, some notebooks, though they often use slower processors, can be more prone to overheat as well, because of their ultra-compact design.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To work around the issue, please follow the steps given below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Step #1: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Reloading the BIOS default settings :</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Entering the BIOS Setup menu requires pressing a specific key at a specific time. If you fail to enter the Setup menu on your first try, repeat the following steps until you are successful:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1.<span>  </span> Close all applications that are currently running and restart the computer by clicking Start, Shut Down, Restart the Computer, and then OK. </span></p> <p class=MsoNormal><span style="font-size:10pt">2.<span>  </span> When the red Compaq logo screen appears, press the F10 key on the keyboard to enter the Setup menu. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: An alternate to the above steps, especially if the logo screen disappears too quickly to enter BIOS, is to shut down (turn off) the computer. Wait 30 seconds, turn the power on and press F10 or F2 at the logo screen. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Complete the following steps to reload the factory installed BIOS Setup settings:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1.<span>  </span> In the BIOS Setup utility, select the Exit tab. </span></p> <p class=MsoNormal><span style="font-size:10pt">2.<span>  </span> Select Load Setup Defaults. </span></p> <p class=MsoNormal><span style="font-size:10pt">3.<span>  </span> Select Save Changes and Exit. </span></p> <p class=MsoNormal><span style="font-size:10pt">4.<span>  </span> Press Esc and then Enter to exit Setup. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Step #2:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">=== Reinstalling Power Management In Windows XP ===</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To reinstall Power Management in Windows XP, follow these steps: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1.<span>  </span> Click Start, select Control Panel, Switch to Category View and then choose Performance and </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>    </span> Maintenance. </span></p> <p class=MsoNormal><span style="font-size:10pt">2.<span>  </span> Click the System icon to open the System properties window. </span></p> <p class=MsoNormal><span style="font-size:10pt">3.<span>  </span> Select the Hardware tab and click Device Manager. </span></p> <p class=MsoNormal><span style="font-size:10pt">4.<span>  </span> Click the plus (+) sign next to System Devices. </span></p> <p class=MsoNormal><span style="font-size:10pt">5.<span>  </span> Right-click the ACPI Fixed Features button and select Uninstall. </span></p> <p class=MsoNormal><span style="font-size:10pt">6.<span>  </span> Restart the system. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">On restarting the system, Windows will automatically detect and install Power Management on the computer.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">More reasons for heat on the notebook.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1.<span>  </span> Low system resources</span></p> <p class=MsoNormal><span style="font-size:10pt">2.<span>  </span> If the fan vents are not cleaned</span></p> <p class=MsoNormal><span style="font-size:10pt">3.<span>  </span> If the fan fails to resume.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To isolate the issue, please perform the steps given below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Step #3:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">====Improving system resources====</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">As providing steps result in bulk mail and may result in confusion while performing the steps.<span>  </span> Hence, I am providing you a Web link that contains detailed procedure to improve system resources.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To improve system resources, please refer to the Web link given below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?cc=us&amp;docname=c00034290&amp;lc=en</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>     </span> NOTE:<span>  </span> Clicking the link may give an error indicating it is</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> invalid.<span>  </span> If this occurs, copy the portion of the address</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> on the remaining line(s) and paste it at the end of the</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> address showing in your browser until the complete address</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> is displayed in the Address box. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>      </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Step #4:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">====Cleaning Fan Vents====</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can clean the vent part of the notebook where the notebook fan is present with a vacuum cleaner for any accumulated dust that could be preventing heat dissipation. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The best option to use the laptop is by placing it on a flat surface with proper ventilation so that it minimizes the notebook temperature or else place it on a thick flat wooden table/block.<span>  </span> Wood absorbs certain amount of heat and minimizes the notebook temperature.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Keeping this in mind, HP has released cooling pad.<span>  </span> You can use this pad to reduce the heat on the notebook.<span>  </span> The pad absorbs the heat generated by the internal parts and keep the system cool.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To purchase the Cool pad there is no need to give us call or purchase from any retailer.<span>  </span> If you could provide the below information, I will go ahead and update the request in our database. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">One of the agents will call you back at mentioned time and you can clarify more details through this interactive session about the part and then proceed in purchasing the Cool pad from them.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Contact Information:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Full Name:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Organization:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Mailing Address (No P.O. Boxes):</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Apartment/Building/Mailstop:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> City:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> State:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Zip/Postal Code:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Phone Number (including area code):</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Convenient call back time:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> You will receive a call as soon as you reply to this email within the next 30 mins.<span>  </span> Therefore, provide your convenient phone number when you are available for the next 30 mins.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">===========================================<span>  </span> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Belarc's software</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Jim, I recommend you to download the Belarc's software, which on execution will provide you a report on all the devices installed in your computer:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.belarc.com/free_download.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Belarc provides the following info: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">* Serial number</span></p> <p class=MsoNormal><span style="font-size:10pt">* Motherboard's make and model</span></p> <p class=MsoNormal><span style="font-size:10pt">* BIOS information</span></p> <p class=MsoNormal><span style="font-size:10pt">* Bus clock</span></p> <p class=MsoNormal><span style="font-size:10pt">* OS</span></p> <p class=MsoNormal><span style="font-size:10pt">* Processor</span></p> <p class=MsoNormal><span style="font-size:10pt">* Drives</span></p> <p class=MsoNormal><span style="font-size:10pt">* Controllers</span></p> <p class=MsoNormal><span style="font-size:10pt">* Buses</span></p> <p class=MsoNormal><span style="font-size:10pt">* System model</span></p> <p class=MsoNormal><span style="font-size:10pt">* Memory modules</span></p> <p class=MsoNormal><span style="font-size:10pt">* Display</span></p> <p class=MsoNormal><span style="font-size:10pt">* Devices</span></p> <p class=MsoNormal><span style="font-size:10pt">* Installed software.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">With the above information, I will be able to investigate and provide you the exact driver. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please get back to us with the above requested in. So that, we will be glad to assist you further and provide further troubleshooting steps.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I hope the above information helps you. If you need further assistance, please reply to this message and we will be happy to assist you further.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">===================================================== </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Best to serve, Recovery CD—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, You can order recovery discs from below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.best2serve.com/</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Once you visit the above Web site please perform the below steps to place order for recover discs: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Select continue </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Enter &quot; RST123A#ABA&quot; in search field and select continue. (The product number of your notebook) </span></p> <p class=MsoNormal><span style="font-size:10pt">3) Select your notebook model from the search results to continue. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Enter your notebook serial number &quot;2CE456104Q&quot; without quotes in the serial number field and select continue. ( The serial # of your notebook)</span></p> <p class=MsoNormal><span style="font-size:10pt">5) Follow on-screen instructions.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">== BIOS update.</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The BIOS system can be updated with a process called 'flashing.' Close all other programs before trying to flash the BIOS.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Download and install BIOS update from the below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">ftp://ftp.hp.com/pub/softpaq/sp39501-40000/sp39862.exe</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Installation Instructions </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Download the SoftPaq .EXE file to a directory on your hard drive. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Execute the downloaded file and follow the on-screen instructions. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Reboot the notebook after the installation is complete. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">WARNING:<span>  </span> Do not interrupt the BIOS installation process. Interrupting the process, or attempting to install the incorrect BIOS will cause damage to the BIOS and will require that the PC be repaired at an HP authorized facility. </span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Bootmgr is missing + Vista—VC</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Bootmgr is missing; You get this error while booting into windows when the boot file of Vista operating system(bootmgr) is missing.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">To restore the missing bootmgr file, I recommend you to perform the start up rapair of the operating system; To do so, please follow the steps given below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Startup Repair: (Using Vista installation DVD/CD)</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you are sure that your Vista systems poor performance is not hardware or virus related. You can try running the Startup Repair feature to fix system files that may have become corrupt or gone missing. Here's how:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You will need your Vista installation DVD/CD for this task. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Insert your installation disk </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Restart your computer. Your computer should boot to your installation disk. If it won't, you will need to change the boot order in your BIOS. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) You may receive a prompt asking you to press any key to start Windows from the installation disk. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Select the language setting and then click Next. </span></p> <p class=MsoNormal><span style="font-size:10pt">5) Select Repair your computer </span></p> <p class=MsoNormal><span style="font-size:10pt">6) Select the operating system that you would like to repair and then click Next. </span></p> <p class=MsoNormal><span style="font-size:10pt">7) Select Startup Repair from the System Recovery Options menu. </span></p> <p class=MsoNormal><span style="font-size:10pt">8) Follow all of the on-screen prompts and answer the questions accordingly. Your system may restart as repairs are made. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Start up repair (Using Recovery manager)</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please perform start up repair by following the steps given below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1.<span>  </span> Restart the Notebook and keep tapping Press F8. </span></p> <p class=MsoNormal><span style="font-size:10pt">2.<span>  </span> Select Repair Your Computer option. The System Recovery Options screen is displayed.</span></p> <p class=MsoNormal><span style="font-size:10pt">3.<span>  </span> Select Startup Repair.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information on start up repair of operating system, please refer the below link :</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE: The reason I recommend following the listed web links is that, if I type the entire series of steps in this e-mail, it would be difficult for you to read through the longlist of steps which will be in a non-graphical format. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://windowshelp.microsoft.com/Windows/en-US/Help/5c59f8c1-b0d1-4f1a-af55-74f3922f3f351033.mspx#EU</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After the start up repair is performed, please execute the below commands from the command prompt to rebuilt the Boot Configuration File:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==Boot the computer from Vista OS DVD.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Click on Repair Your Computer. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Click on Command prompt. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) At the X:\Sources prompt, type bcdedit /export C:\BCD_Backup and press &lt;Enter&gt; </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Type c: and press &lt;Enter&gt;. </span></p> <p class=MsoNormal><span style="font-size:10pt">5) At the C:\ prompt, type cd boot and press &lt;Enter&gt;. </span></p> <p class=MsoNormal><span style="font-size:10pt">6) At the C:\Boot prompt, type attrib bcd -s -h -r and press &lt;Enter&gt;. </span></p> <p class=MsoNormal><span style="font-size:10pt">7) At the C:\Boot prompt, type ren c:\boot\bcd bcd.old and press &lt;Enter&gt;. </span></p> <p class=MsoNormal><span style="font-size:10pt">8) At the C:\Boot prompt, type bootrec /rebuildbcd and press &lt;Enter&gt;. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The Boot Configuration File will be rebuilt at this point. Once it finishes, type exit and press &lt;Enter&gt;. Click the Restart button.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For a pictorial representation of the above information, please refer the below weblink:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.howtogeek.com/howto/windows-vista/fixing-bootmgr-is-missing-error-while-trying-to-boot-windows-vista/</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <div style="padding:0in 0in 1pt;border:medium medium 2.25pt none none double -moz-use-text-color -moz-use-text-color windowtext"> <p class=MsoNormal style="border:medium none;padding:0in"><span style="font-size:10pt"> </span></p> </div>Mon, 09 Nov 2009 13:22:21 Z2009-11-09T13:22:22Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/c69fb8f2-f404-4c84-ab8f-54881003466dhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/c69fb8f2-f404-4c84-ab8f-54881003466dvcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 3 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Battery</span> </span> </strong> <strong><span style="text-decoration:underline"><span style="font-size:10pt"> Information :</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== I. Storing batteries<span>  </span> :</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Charge the battery to its full charge (capacity) and then store it. Batteries should not be stored with less charge or no charge. This is because the shelf<span>  </span> life of the notebook battery without charge is only about 30 days, after which the battery will become nonfunctional. So, it is necessary to charge the battery<span>  </span> fully and then store it in a safe place. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== II. General Information :</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can remove the battery and store it in a cool location while using the laptop on AC power. However, this process may not really extend the life of the battery. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the battery is not used for too many days it may go dead. There is every possibility that it may not work again. To avoid such instances, I recommend you even use the Notebook on battery so that battery charge is drained out and later recharged. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can keep the battery inside the laptop even when using the notebook on AC power.<span>  </span> Once the battery is completely charged, the voltage to the internal battery charger is cut off automatically. However, you may need to use the notebook twice or thrice in week on the battery power. This will ensure the battery charging and discharging. When using the notebook on the battery, use the notebook till the battery is completed out of charge. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Next, it is recommend to shut down the computer when not in use for a long time.<span>  </span> Say more then 24 hours. If you are away from the laptop for a couple of hours, hibernate the unit or allow it to go to sleep mode. This will extend the battery life and the laptop as well. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== III. How to operate battery:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Next, when the computer is operated on battery power it is not necessary that you need to run the notebook until the indicator shows little amount </span></p> <p class=MsoNormal><span style="font-size:10pt">of charge left. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can use as per your wish. I mean to say you can use the notebook on battery power for little amount of time or until the charge gets near completion. This does not affect the notebook or the battery in any way. Please be assured of this. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Last, the battery will not harmed in any way if the computer is plugged into the AC power as the battery receives negligible amount of voltage. Please be </span></p> <p class=MsoNormal><span style="font-size:10pt">assured of this. But for at least fifteen days discharge the battery completely and then recharge it again to full capacity. This will increase the average battery life longer. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can find more information regarding batteries in below weblinks:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?lc=en&amp;cc=en&amp;docname=c00596784 </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">or</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00821429&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. Copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==Battery Do Nots:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Do not short-circuit a battery. A short-circuit may cause damage to the battery. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Do not drop, hit or otherwise abuse the battery as this may result in the exposure of the cell contents, which are corrosive. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) Do not expose the battery to moisture or rain. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Keep the battery away from fire or other sources of extreme heat. Do not incinerate. Exposure of batteries to extreme heat may result in an explosion. </span></p> <p class=MsoNormal><span style="font-size:10pt">5) Do not throw away or dispose of your battery with household waste. Please recycle all batteries, as they contain chemicals which are harmful to the environment. </span></p> <p class=MsoNormal><span style="font-size:10pt">6) Do not carry loose batteries in a bag or box with metal objects like coins, paper clips and hair pins, etc. This may short circuit the battery, generating high heat. </span></p> <p class=MsoNormal><span style="font-size:10pt">7) Do not mix old and new batteries, or mix different types of batteries. This can cause rupture or leakage, resulting in personal injury or property damage. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Tips to ensure optimal battery life:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Use the AC adapter whenever possible, but not all the time. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Set the Windows Power Management settings to maximum savings. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) Lower the brightness setting on the screen backlight. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Disconnect any unused devices (e.g., modems, wireless LAN cards, USB devices) when not needed. </span></p> <p class=MsoNormal><span style="font-size:10pt">5) Disable Auto Insert Notification on the CD-ROM. </span></p> <p class=MsoNormal><span style="font-size:10pt">6) Disable automatic formatters, spell checkers, auto recalculate and auto save features. </span></p> <p class=MsoNormal><span style="font-size:10pt">7) Add more RAM memory to lower disk access time. </span></p> <p class=MsoNormal><span style="font-size:10pt">8) If you have a backup battery, use it in rotation with the current battery. </span></p> <p class=MsoNormal><span style="font-size:10pt">9) Use the Suspend or Hibernate feature when taking a break. </span></p> <p class=MsoNormal><span style="font-size:10pt">10) Fully drain and recharge the battery every couple of months, this helps to recalibrate the smart electronics even if the cells are fine. </span></p> <p class=MsoNormal><span style="font-size:10pt">11) Minimize the number of programs running at the same time. </span></p> <p class=MsoNormal><span style="font-size:10pt">12) Check the power save settings under the BIOS. If this is not enabled then the Windows Power Management settings may not work properly. </span></p> <p class=MsoNormal><span style="font-size:10pt">13) If you are taking the battery out to store it, make sure it has at least 40 - 50% charge. DO NOT fully charge it or discharge it before storage. </span></p> <p class=MsoNormal><span style="font-size:10pt">14) Use less processor intensive programs when possible (e.g. WordPad instead of Word). </span></p> <p class=MsoNormal><span style="font-size:10pt">15) Minimize game play and DVD viewing. </span></p> <p class=MsoNormal><span style="font-size:10pt">16) Clean the battery contacts with a cotton swab and rubbing alcohol. This helps maintain a good connection between the battery and the device. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I recommend you to visit the below website for additional information on batteries.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">HP Notebook PCs -<span>  </span> Checking the Status of the Battery</span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00821536&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">HP Notebook PCs -<span>  </span> Calibrating the Notebook Battery</span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00817650&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The information provided above should help you. If you need further assistance or clarifications, please feel free to reply to this mail. We would be glad to assist you.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">================================================= </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Battery Life + Vista</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I would like to inform you that the battery operating time will be less than compared to the time that lasts in Windows XP Operating System. This is because the graphics features used in Windows Vista consume more power.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The discharge time depends on the features you are using while on battery power. For example, if you are playing a DVD and are connected on a wireless network, your battery life will be shorter than normal. If you are just reading or editing a file or answering e-mail on a wired network connection, you will experience maximum battery life. Please note that maximum discharge time will shorten over time, as the storage capacity naturally decays. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Tips for maximizing discharge time of battery: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Lower the brightness on the display. </span></p> <p class=MsoNormal><span style="font-size:10pt">2) Check the Power saver setting in Power Options. </span></p> <p class=MsoNormal><span style="font-size:10pt">3) Remove the battery from the notebook PC when it is not being used or charged for a long period </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Store the battery in a cool dry location. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Checking the Status of the Battery:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please refer to the below weblink for information on checking the Status of the Battery:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00821536&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. Copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">======================================================<span>   </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Battery</span> </span> </strong> <strong><span style="text-decoration:underline"><span style="font-size:10pt"> Life Improved: </span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Daniel, let me inform you that Battery life increases if you do not watch movies, play games on Battery Power. However, you can perform the same with AC Adapter plugged so that the Battery Life of your Notebook will be increased. Please refer to the information relating to battery maintenance.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Regarding your query, I would<span>  </span> like to share that, you can remove the battery if the notebook will be stored (turned off and not plugged into AC power) for more than 2 weeks and also you have to remove the battery if the notebook will be plugged into AC power continuously (via a wall adapter or docking station). </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Additionally, for more information to preserve the life of your battery, make certain to charge the battery regularly. In cases of long-term storage, the battery must be charged at 20 to 50 percent to save capacity loss by self-discharge, and to avoid deterioration of battery performance. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">In a discharged condition, the battery voltage decreases faster. Storage in a 100 percent charged condition can cause higher self-discharge and deterioration of discharge capacity even after recharging, compared to storage in a 20 to 50 percent charged condition. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Additionally, I would like to provide some more information regarding increasing the battery performance.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">A.<span>  </span> Do not leave batteries unused for long periods. If using more than one, rotate them. </span></p> <p class=MsoNormal><span style="font-size:10pt">B.<span>  </span> If normally using AC power, make a practice of using the battery as the power source at least once a week. </span></p> <p class=MsoNormal><span style="font-size:10pt">C.<span>  </span> Unplug the AC adapter when the notebook is not in use. </span></p> <p class=MsoNormal><span style="font-size:10pt">D.<span>  </span> To preserve the life of a battery, be sure to charge it regularly. </span></p> <p class=MsoNormal><span style="font-size:10pt">E.<span>  </span> Avoid using or charging batteries at high temperatures. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please refer the below web site for the Battery care practices:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h20239.www2.hp.com/techcenter/battery/Battery_max.htm </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal style="text-indent:0.5in"><span style="font-size:10pt">Copy and paste the entire link in a new browser window.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I hope the information provided will be helpful and addressed your concern.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">====================================================<span>  </span> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Battery</span> </span> </strong> <strong><span style="text-decoration:underline"><span style="font-size:10pt"> Meter + XP</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The issue could be due to any of the following reasons:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Incorrect Settings</span></p> <p class=MsoNormal><span style="font-size:10pt">2. Corrupted Power Management.</span></p> <p class=MsoNormal><span style="font-size:10pt">3. Corrupted Taskbar.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">In order to isolate the issue, please perform the following steps:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Step 1: Check the settings.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Click on &quot;Start&quot;.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. Go to &quot;Control Panel&quot;.</span></p> <p class=MsoNormal><span style="font-size:10pt">3. Double click on &quot;Power Options&quot;.</span></p> <p class=MsoNormal><span style="font-size:10pt">4. Choose &quot;Advanced&quot; option and choose &quot;Always Show Icon on the Taskbar&quot;.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Step 2: Reinstall Power Management</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Right Click on My Computer, click properties. The System properties window will open.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. Click the &quot;Hardware&quot; tab, and then click the &quot;Device Manager&quot; button.</span></p> <p class=MsoNormal><span style="font-size:10pt">5. Click the plus (+) sign next to System Devices.</span></p> <p class=MsoNormal><span style="font-size:10pt">6. Right-click the &quot;ACPI Fixed Features&quot; button, and select Uninstall.</span></p> <p class=MsoNormal><span style="font-size:10pt">7. Restart the system. On restarting the system, Windows will automatically detect and install Power Management on the computer. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Now, again check the &quot;Always Show Icon on the Taskbar&quot; option and restart the notebook. The battery icon will come automatically.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the issue persists, please visit the below web site and download Taskbar Repair Tool:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.kellys-korner-xp.com/taskbarplus!.htm</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. Copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>     </span> NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> HP does </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> not control and is not responsible for information outside </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Also, please download and install the Power Meter Plus software which will show the battery status of the notebook. For your convenience I provide the weblink of the software from where you can download and install it:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Note: This is a third party software. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.tucows.com/preview/502647</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>     </span> NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> HP does </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> not control and is not responsible for information outside </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>            </span> of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I hope the above information helps you. If you require further assistance or if the problem persists, please contact us anytime. We are committed to ensuring your satisfaction with our products, as well as our service.<span>  </span> We will be glad to assist you further.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">===========================================<span>  </span> </span></p>Mon, 09 Nov 2009 13:21:09 Z2009-11-09T13:21:12Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/0ec3dab4-d289-4c4d-aba0-d9262e4c0f84http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/0ec3dab4-d289-4c4d-aba0-d9262e4c0f84vcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 2 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Battery does not hold charge + Vista</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Jud, The low operating time of the battery is caused due to the following reasons :</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Corrupt Power Management</span></p> <p class=MsoNormal><span style="font-size:10pt">2) Incorrect BIOS settings</span></p> <p class=MsoNormal><span style="font-size:10pt">3) Memory Effect </span></p> <p class=MsoNormal><span style="font-size:10pt">4) Battery failure </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Further, the battery performance is dependent upon various factors such as the applications run, the processor speed, hardware components attached to it. Therefore the batter may not give you the life for the longer duration.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The following are some of the variables that can affect the battery life: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">* Power management settings </span></p> <p class=MsoNormal><span style="font-size:10pt">* Hardware configuration </span></p> <p class=MsoNormal><span style="font-size:10pt">* Software applications </span></p> <p class=MsoNormal><span style="font-size:10pt">* Installed options </span></p> <p class=MsoNormal><span style="font-size:10pt">* Display brightness </span></p> <p class=MsoNormal><span style="font-size:10pt">* Hard drive usage </span></p> <p class=MsoNormal><span style="font-size:10pt">* Changes in operating temperature </span></p> <p class=MsoNormal><span style="font-size:10pt">* Type and number of installed PC Cards </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The battery operating time depends on your power management settings. Your Notebook components, the options, and the applications that you use also affect the operating time.<span>  </span> The information below shows you how to increase the length of time you are able to operate under battery power.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The display, processor, CD/DVD drive, and hard drive use the most battery power.<span>  </span> To maximize the battery operating time, perform one or more of the following actions:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Press Fn + F1 to reduce the display brightness and to select a short wait for your screen saver.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Select a screen saver that does not generate a lot of graphics or<span>  </span> motion.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Reduce audio volume or use headphones.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Exit modem programs when you are not using them.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Remove PC Cards when you are not using them.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Remove CDs or DVDs when you are not using them.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Use Sleep or Hibernation mode to turn off your notebook when you are not using it.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To start troubleshooting this problem, I recommend you to perform the following procedures:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Step 1: Power Drain.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Power Drain procedure discharges any accumulated static on the notebook's systemboard.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1) Disconnect the AC Adapter.</span></p> <p class=MsoNormal><span style="font-size:10pt">2) Remove the battery.</span></p> <p class=MsoNormal><span style="font-size:10pt">3) Depress the power button for 30 seconds to 1 minute. </span></p> <p class=MsoNormal><span style="font-size:10pt">4) With the power button depressed connect the AC adapter .</span></p> <p class=MsoNormal><span style="font-size:10pt">5) Reboot the system using the AC adapter connected with out battery.</span></p> <p class=MsoNormal><span style="font-size:10pt">6) On the subsequent reboot reattach the battery to the notebook (Shut </span></p> <p class=MsoNormal><span style="font-size:10pt">down the system, reattach the battery and then restart the system.)</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Step 2: Resetting the BIOS </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Use the following steps to reset the computer to its default BIOS settings:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1.<span>  </span> Press the Power button to start the computer.</span></p> <p class=MsoNormal><span style="font-size:10pt">2.<span>  </span> When the red Compaq logo is displayed on the monitor, press the F10</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>    </span> key on the keyboard.</span></p> <p class=MsoNormal><span style="font-size:10pt">3.<span>  </span> Using the Arrow keys on the keyboard, select English as the desired</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>    </span> language.<span>  </span> Then press Enter to continue.</span></p> <p class=MsoNormal><span style="font-size:10pt">4.<span>  </span> Select &quot;Set Defaults and Exit.&quot;</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The BIOS of the computer will be set to default.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Step 3: Reinstalling Power Management</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I would recommend you to reinstall the power management by following the steps given below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1.<span>  </span> Click Start.</span></p> <p class=MsoNormal><span style="font-size:10pt">2.<span>  </span> Type ' device manager' in the search field. </span></p> <p class=MsoNormal><span style="font-size:10pt">3.<span>  </span> Select Device Manager from the above list. </span></p> <p class=MsoNormal><span style="font-size:10pt">4.<span>  </span> Click the plus (+) sign next to System Devices. </span></p> <p class=MsoNormal><span style="font-size:10pt">5.<span>  </span> Right-click the ACPI Fixed Features button and select Uninstall. </span></p> <p class=MsoNormal><span style="font-size:10pt">6.<span>  </span> Restart the system. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">On restarting the system, Windows will automatically detect and install Power Management on the computer. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Step 4 : Calibrating Battery</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The calibration process charges, completely discharges, and then recharges the battery. To calibrate the battery, complete the following steps given in the link provided below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00817650&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the issue still persists then go on with the Step 5.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">== Step 5 Battery health test</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I suggest you to perform the Battery health test by visiting the link provided below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&amp;docname=c00821536</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the issue persists, even after performing all the troubleshooting steps mentioned above, it is apparent that there is a internal hardware malfunction of the battery and it needs to be replaced.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">--------------------------------------------------------------------------------<span>   </span> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">== Battery Health Check: </span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">In Vista notebooks we can perform battery health check from HP Total Care advisor. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Double click on the HP total Care advisor icon the desktop. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Now you would see the HP total Care Advisor program. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Double click on the Battery Icon in Hp total care advisor.</span></p> <p class=MsoNormal><span style="font-size:10pt">4. Double click on the Launch HP battery Check for More<span>   </span> information. </span></p> <p class=MsoNormal><span style="font-size:10pt">5. Now the Battery Check will start. It will run for a Minute or Two.</span></p> <p class=MsoNormal><span style="font-size:10pt">6. Now you would see the result of the battery Check. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Let me know the result of the battery check.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information, you can visit the below websites for &quot;Battery Health Check in Vista&quot; </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00821536&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00821429&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==OR==</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Connect the AC adapter to your notebook PC. The notebook PC must be on AC power in order for HP Battery Check to function properly.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. Click Start and type Help and Support in the Search field and press Enter . </span></p> <p class=MsoNormal><span style="font-size:10pt">(Alternately, you may doubleclick the Help and Support icon, which is placed on your desktop by default when your computer is configured for the first time).</span></p> <p class=MsoNormal><span style="font-size:10pt">3. The Help &amp; Support window will open.</span></p> <p class=MsoNormal><span style="font-size:10pt">4. Select Troubleshooting tools. Then select Battery Check. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The Battery Check tool will open, and will automatically examine your battery and its cells to see if they are functioning properly.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">==OR==</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Test the battery using the HP Battery Check</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1.<span>  </span> Insert the AC power adapter into the notebook PC and plug directly into a wall outlet.</span></p> <p class=MsoNormal><span style="font-size:10pt">2.<span>  </span> Click Start, All Programs, then click Hewlett-Packard, HP Battery Check.</span></p> <p class=MsoNormal><span style="font-size:10pt">3.<span>  </span> The results of the Battery test will be presented immediately. Detailed instructions are provided with the results. One of the following results will appear in the Battery Health section:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Good - the battery is in working order.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Replace - one or more of the cells can no longer accept a charge or the storage capacity is &quot;Low&quot; and the battery should to be replaced.<span>  </span> Instructions <span> </span> stating where to purchase a replacement battery or if the battery is covered by HP under warranty will display.</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Invalid - either the AC adapter is not connected, more than one battery is installed or the battery is not installed correctly. Please follow the instructions in the Battery Check to correct the condition.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the Battery Check detects a failure, it is apparent that there is a internal hardware malfunction of the battery and it needs to be replaced. As the notebook is under warranty I would be glad to ship you a new battery under collateral shipment. Please read carefully the information below in agreement of collateral shipment.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">As the battery is a collateral part, that is, you would be required to ship the defective battery on receipt of the replacement battery. Hence, you would be required to provide us the credit card information as security. Please &quot;DO NOT&quot; provide your credit card number when replying to this email. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Service parts that have been restored to original specifications are offered under the HP Exchange Program, and require the return of an equivalent assembly.<span>  </span> When an exchange part is shipped to you then you must return the defective part to HP within 15 calendar days of shipment of the exchange part. Instructions are included with the shipment that describe how and where to return the defective core part. Return shipping and insurance charges are at your expense and are non-refundable unless you are returning defective spare parts or spare parts that HP shipped in error, in which case HP will pay for the shipping. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> All returned spare parts must be in &quot;as new condition&quot;, and returned in the original packaging. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> In cases where HP did not receive the defective part within 15 calendar days of shipment of the exchange part from you then you will be charged for the exchange part. Return instructions and pre-paid shipping label are included. No charges are assessed if the unit is returned within the required time.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">=== Additional information needed ===</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please provide the following information about when we can contact you:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Dates and Days (2 days):</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Time to call:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Telephone Number to call:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You will receive a call as soon as you reply to this email within the next three hours.<span>  </span> Therefore, provide your convenient phone number when you are available for the next three hours. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">=== Shipping Information ===</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Full Name:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Organization:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Mailing Address (No P.O. Boxes):</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Apartment/Building/Mail stop:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> City:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> State:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Zip/Postal Code:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Note: One of our agents will call you from a secured phone line therefore, I request you to provide a phone number that accepts such calls.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please get back to us with the requested information. I will be glad to initiate the process of Collateral shipment of the battery. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Awaiting your response!</span></p> <p class=MsoNormal><span style="font-size:10pt">--------------------------------------------------------------------------------<span>   </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For your convenience I am providing more information regarding the battery. Please follow these information.</span></p>Mon, 09 Nov 2009 13:19:08 Z2009-11-09T13:19:10Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/64352c2d-e31c-4323-b07c-0c503c626861http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/64352c2d-e31c-4323-b07c-0c503c626861vcprasadhttp://social.microsoft.com/Profile/en-US/?user=vcprasadClarissa 1 &lt;!-- /* Font Definitions */ @font-face {font-family:&quot;Cambria Math&quot;; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:&quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family:&quot;Times New Roman&quot;;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --&gt; <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please complete the information below so we can process your request.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">=== Shipping Information ===</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Full Name:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Mailing Address (No P.O. Boxes):</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Apartment/Building/Mailstop:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> City:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> State:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Zip/Postal Code:</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Phone Number (including area code):</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Email address : </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">=== Product Information ===</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Model Number (ex: ze4250, n5441 etc):</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Product Number (ex: C1234A):</span></p> <p class=MsoNormal><span style="font-size:10pt">*<span>  </span> Serial Number (ex: US12345678):</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please get back to us with the requested information; I will be glad to assist you further in shipping you the new …………..</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Awaiting your response.</span></p> <p class=MsoNormal><span style="font-size:10pt">-------------------------------------------------------</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">After Full system Recovery F11 + Vista</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">After reinstalling OS, you need to perform the below steps to make the notebook ready for use.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Complete the initial setup screens<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Setting up a firewall<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Setup Windows Firewall<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Setup Norton Internet Security 2007<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Connecting to the Internet<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Download updates for Windows<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Update security software<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Update software and drivers from HP<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Connect devices and installing extra software<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please refer the below Web site to get more information:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c01058431&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN#N288</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">--------------------------------------------------------------<span>  </span> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt"><span style="text-decoration:none"> </span> </span> </span> </strong></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">US ASP</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I suggest you take the unit to a local Authorized Service Provider for detailed evaluation. Our technicians at the service center are well equipped to perform such tests and will be in a position to assist you appropriately. For your convenience, I am providing you the URL to locate your nearest HP Authorized Service center.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h20465.www2.hp.com/GPL/search.aspx?language_code=en&amp;country_code=us&amp;SearchType=SSP</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>    </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. This will take you to the USA local HP authorized service provider page.</span></p> <p class=MsoNormal><span style="font-size:10pt">2. In the category menu select the appropriate HP product.</span></p> <p class=MsoNormal><span style="font-size:10pt">3. After selecting the appropriate category you will get a list of HP products in the Family box.<span>  </span> Select the family in which your product is located.</span></p> <p class=MsoNormal><span style="font-size:10pt">4. After Selecting the family of the product you will get a list of products under the product list.</span></p> <p class=MsoNormal><span style="font-size:10pt">5. Select your product as 10 digit from the list under the product section and click Next.</span></p> <p class=MsoNormal><span style="font-size:10pt">6. Follow the instructions on the service options page.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If no stores are located, repeat the search using another zip code within your local area. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You can alternatively refer the links given below to locate the authorized service provider.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Radio Shack :</span></p> <p class=MsoNormal><span style="font-size:10pt">----- -----</span></p> <p class=MsoNormal><span style="font-size:10pt">You can locate the nearest Radio Shack repair store by visiting the following URL:</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.radioshack.com/Locator/Locator.asp</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">Best Buy:</span></p> <p class=MsoNormal><span style="font-size:10pt">---- ---</span></p> <p class=MsoNormal><span style="font-size:10pt">You can locate the nearest Best Buy repair store by visiting the following URL:</span></p> <p class=MsoNormal><span style="font-size:10pt"><span> </span> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.bestbuy.com/StoreLocator/index.asp</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">--------------------------------------------------------------------</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Back up HDD case</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If you have any important data, you can backup the data from hard disk using USB Harddrive enclosure. This 2.5&quot; HardDrive case connects to any USB port. You can use this hard drive case and backup data on any other laptop or desktop either at home or at office or any other friends place without opening the system. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">You have to just remove the hard drive from the laptop and put that hard drive in this USB hard drive case and then connect it to USB port. You can find the USB hard drive connecter at the following Web sites:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.cooldrives.com/usb-2-mini-aluminum-enclosure-with-one-touch-backup.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.coolerexpress.com/me930.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.directron.com/kh200ubk.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://shop.store.yahoo.com/insidecomputer/usb20235hadr.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.usbgear.com/computer_cable_details.cfm?sku=USBG-U2IDES1&amp;cats=171&amp;catid=171 </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.satagear.com/usbadapter-sale.cfm </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.satacables.com/html/sata_adapters.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">**************</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, in mail-in repair service the notebook will be restored to factory settings and all the password and data in the notebook will be wiped. Moreover, we do not have any options to save the data stored on the hard drive. Therefore, I recommend you to take the backup of the data stored on the hard drive before sending to HP for repair. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For your convenience I provide you some instructions to take the backup of the data from the notebook: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For connecting the laptop hard drive to the desktop computer or notebook, you will need to obtain a small convertor cable. Many such cable are available from the following web sites: Please remove the hard drive from the laptop and connect the Hard drive to any other working computer USB port using USB 2.0 SATA Adapter Cable. You can find few USB to SATA cable at the following third party Web sites: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.cooldrives.com/usb-2-mini-aluminum-enclosure-with-one-touch-backup.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.coolerexpress.com/me930.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.directron.com/kh200ubk.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://shop.store.yahoo.com/insidecomputer/usb20235hadr.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.usbgear.com/computer_cable_details.cfm?sku=USBG-U2IDES1&amp;cats=171&amp;catid=171 </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.satagear.com/usbadapter-sale.cfm </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.satacables.com/html/sata_adapters.html</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> <span>         </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">---------------------------------------------------------------------------------<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Battery and volume icon missing + Vista-</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To get back the volume and battery icons on the notification area, please perform the steps provided steps:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Please right click on the System Tray to surface the context menu. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Choose &quot;Properties&quot; off of the context menu--this will bring up the &quot;Taskbar and Start Menu Properties&quot; dialog box. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Select the &quot;Notification Area&quot; tab. At the bottom of the tab, is the &quot;Systems Icons&quot; area. </span></p> <p class=MsoNormal><span style="font-size:10pt">There is a check box for &quot;Power&quot;. </span></p> <p class=MsoNormal><span style="font-size:10pt">4. Please &quot;check&quot; the checkbox and click the Apply or OK button. The Battery Meter should show up in the tray. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For additional information on bringing back the battery icon and volume icon in the notification area, I am referring you to a weblink where the information is explained with graphics and hyperlinks. I am sure this will be helpful to you. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The link is:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.mydigitallife.info/2007/12/15/volume-battery-power-or-network-icon-disappear-or-missing-from-vista-taskbar-notification-area-system-tray/</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Please be informed that the operating system preinstalled on the HP notebooks is not having this feature.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Barb, as the operating system preinstalled on your Notebook is Windows Vista, you can download and install a Gadget on the sidebar, which displays the state of your laptop battery, and the remaining battery time if running on battery and refreshes it after every 20secs.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">For more information on it and downloading it, I would request you to visit the link provided below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://www.softpedia.com/downloadTag/battery</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> The URL above will take you to a non HP Web site.<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> HP does not control and is not responsible for information outside of the HP Web site.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid. </span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">I hope this information helps you. Please reply if I can help you further.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">---------------------------------------------------------------------------------<span>   </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">== Calibrating the notebook battery + Vista</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Calibrating the battery means recharging the battery to its maximum capacity and resetting the battery gauge to display the level of charge accurately. This calibration process charges, completely discharges, and then recharges the battery. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The Windows system tray battery meter may not correctly display the battery charge level when a notebook is new or has not been used for a long period of time. If the battery gauge becomes inaccurate, use one of the methods below to calibrate the battery gauge reading</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To calibrate the battery, please follow the steps provided in the weblink below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00817650&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">---------------------------------------------------------------------------<span>  </span> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">== Calibrating the notebook battery + XP</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Calibrating the battery means recharging the battery to its maximum capacity and resetting the battery gauge to display the level of charge accurately. This calibration process charges, completely discharges, and then recharges the battery. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">To calibrate the battery, please follow the steps provided in the weblink below:</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">http://h10025.www1.hp.com/ewfrf/wc/genericDocument?lc=en&amp;cc=us&amp;docname=c00035862 </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">-------------------------------------------------------------------<span>  </span> </span></p> <p class=MsoNormal><strong><span style="text-decoration:underline"><span style="font-size:10pt">Battery does not hold charge + Vista</span> </span> </strong></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">At this point of time, I would like to inform you that, the actual battery life will vary with usage. It is not uncommon for a battery to last less than an hour or up to over two hours. Your usage of the computer will determine battery life. Also note that many things will shorten battery life: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Alecia, I would like to inform that the display, processor and hard drive use most of the battery power. Especially Optical drives consume more power. When the computer uses information stored in the memory, the process is electrical and uses less power. When the computer accesses storage devices, which are mechanical, it uses more battery power. This includes virtual memory usage where the computer builds a memory swap file on the hard drive and transfers pages of memory between the hard drive and physical memory. Running memory intensive programs or many programs at once will cause this. The CD will drain more power because of the nature of the physical device, as will use of audio (phone and wav, midi or cd sound). The speakers themselves use power as well as the software producing sound. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">The information below shows you how to increase the length of time you are able to operate under battery power. To maximize the battery operating time, perform one or more of the following actions: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">* Press Fn + F7 to reduce the display brightness and to select a shortwait for your screen saver.</span></p> <p class=MsoNormal><span style="font-size:10pt">* Select a screen saver that does not generate a lot of graphics.</span></p> <p class=MsoNormal><span style="font-size:10pt">* Reduce audio volume or use headphones.</span></p> <p class=MsoNormal><span style="font-size:10pt">* Exit modem programs when you are not using them.</span></p> <p class=MsoNormal><span style="font-size:10pt">* Remove PC Cards when you are not using them.</span></p> <p class=MsoNormal><span style="font-size:10pt">* Remove CDs or DVDs when you are not using them.</span></p> <p class=MsoNormal><span style="font-size:10pt">* Use Sleep or Hibernation mode to turn off your notebook when you are not using it. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Finally, I recommend you run DVDs on AC power supply for better quality rather than on battery. I would also like to inform you that, as Windows Vista works on graphics, the battery consumption will be more. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">However, I recommend you to Perform Battery health check by following the steps mentioned below: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Connect the AC adapter to your notebook PC. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Launch the Total Care Advisor by double-clicking on the icon on the desktop. </span></p> <p class=MsoNormal><span style="font-size:10pt">Alternately, click Start, type total care in the search field, and click on HP Total Care Advisor when it appears in the program list. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">3. On the Total Care Advisor window, click the Battery icon. The HP Battery Check displays the status of the notebook PC battery. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">If the results seems to be positive, I recommend you to update BIOS by visiting the URL given below: </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">ftp://ftp.hp.com/pub/softpaq/sp42001-42500/sp42331.exe </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Installation Instructions </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">1. Download the SoftPaq .EXE file to a directory on your hard drive. </span></p> <p class=MsoNormal><span style="font-size:10pt">2. Execute the downloaded file and follow the on-screen instructions. </span></p> <p class=MsoNormal><span style="font-size:10pt">3. Reboot the notebook after the installation is complete. </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">Additionally, I recommend you to reinstall power management by following the steps mentioned in the URL given below: http://h10025.www1.hp.com/ewfrf/wc/genericDocument?docname=c00825528&amp;cc=us&amp;dlc=en&amp;lc=en&amp;jumpid=reg_R1002_USEN </span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">NOTE:<span>  </span> Clicking the link may give an error indicating it is invalid.</span></p> <p class=MsoNormal><span style="font-size:10pt"><span>       </span> Please copy and paste the entire link in a new browser window and press enter.</span></p> <p class=MsoNormal><span style="font-size:10pt"> </span></p> <p class=MsoNormal><span style="font-size:10pt">In case, if the issue still persists or the status of the battery seems to be negative we would be happy to process the request for a replacement part. However, the Battery drive is a collateral part.</span></p>Mon, 09 Nov 2009 13:13:13 Z2009-11-09T13:13:13Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/9577c6a0-9961-4b9a-908d-c23b274bf8c3http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/9577c6a0-9961-4b9a-908d-c23b274bf8c3fabmouthhttp://social.microsoft.com/Profile/en-US/?user=fabmouthDevices and Printer Icons in W7Hi guys,<br/>I foolishly allowed updates to update my &quot;Devices and Printers&quot; to enhanced icons which are supposed to be realistic.<br/>Now where I used to have a normal icon for my USB stick I have a stupid cartoon character and gibberish in<br/>Chinese or Japanese. Any ideas how to go back to my normal icon? I have tried right clicking it, system icons,<br/>pretty much everything I could think of but can't get rid of this stupid icon. Even a restore didn't fix it.<br/>Hope someone can help...<br/>Cheers....Sun, 25 Oct 2009 15:04:15 Z2009-11-18T20:56:37Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/b2840fea-0cbe-4154-bfa4-9c551cdad32ahttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/b2840fea-0cbe-4154-bfa4-9c551cdad32ajaymax36http://social.microsoft.com/Profile/en-US/?user=jaymax36Start menu linking problemWhy is it that in Windows as soon as one things seem to be getting better something else pops-up. Seems like a problem toggle at work.<br/> <br/> O/S: Windows XP SP2<br/> <br/> <br/> These are probably all related<br/> <br/> From the Start Page<br/> [i]   When I select the  Start &gt;&gt; 'Help and Support' link a Shortcut Dialog box Pops up with the following msg &gt;&gt; <br/>     &quot;Windows cannot create a shortcut here.<br/>      Do you want to the shortcut to be placed on the desktop instead&quot;<br/> <br/> [ii]  Similar effect for  Start &gt;&gt; 'Search' <br/> [iii] Similar effect for  Start &gt;&gt; 'Run'<br/> [iv]   Start &gt;&gt; 'Printers and Fax' Seems OK so far.<br/> <br/> From the Control Panel<br/> [i]   I cannot open &quot;Network Connection&quot; to get to properties in order to set the Show Icon when connected option, of course this is not showing on the Taskbar.<br/> <br/> [n] ... The many other SNAFU's still to be uncovered.<br/> <br/> <br/> Is there a solution short of dumping the whole thing away?<br/> <br/> <br/> <br/> <br/> <br/> &quot;Start menu linking problem&quot;<br/> <br/>Sun, 25 Oct 2009 13:27:29 Z2009-10-25T13:27:30Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/03fdf544-93be-42cd-bc0b-4edb816dbec8http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/03fdf544-93be-42cd-bc0b-4edb816dbec8grandma3155http://social.microsoft.com/Profile/en-US/?user=grandma3155pc virusalpha antivirus program showed up on my pc and said that i had over 700 trojan virus's on my pc.with windows live one care i thought it would catch a lot of them. anyone know of the program and why would it show up and it scanned the pc and i had a hard time to get it off.should i run it or not .it said they were all spywareSat, 24 Oct 2009 05:46:13 Z2009-10-24T05:46:13Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/20bd4ce3-d4dd-452b-b3ce-0c5fbc8e453dhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/20bd4ce3-d4dd-452b-b3ce-0c5fbc8e453dbillmarqhttp://social.microsoft.com/Profile/en-US/?user=billmarqSD card capacity<p>I can only get about 174 pictures to transfer onto an SD card even though it has most of its memory space still unused.  I have tried different SD cards and used two computers, one XP and one Vista, with the same result. My only conjecture is that the FAT cannot handle any more entries, but that seems unreasonable. I receive an error pop-up that says &quot;unable to create file or folder&quot; or something similar.<br/><br/>Anybody know what is going on?</p>Tue, 20 Oct 2009 15:53:16 Z2009-10-23T16:13:57Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/1b471958-67d7-41cd-b79a-eeab98fbc73chttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/1b471958-67d7-41cd-b79a-eeab98fbc73cTexMikehttp://social.microsoft.com/Profile/en-US/?user=TexMikeWindow's XP Home Set-up Theme MusicHi,<br/>First time to the MS boards, and if my question is placed in the wrong forum, my apologies ahead of time.<br/><br/>Im trying to find out if there is a place on any of the MS pages that has the Home XP theme music.  You know, the tune that play's while your loading XP on your system for the first time or from a 'devastating restore?'<br/><br/>Nice tune, and I'd like to hear it more than just once during an XP install, hehheh.<br/><br/>Again, my apologies ahead of time if my question is out of place.<br/><br/>Thanks in advance,<br/>MikeSun, 30 Aug 2009 22:32:51 Z2009-10-22T10:19:22Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/1316d8cb-e92c-41b4-8d32-3a38b8d571dchttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/1316d8cb-e92c-41b4-8d32-3a38b8d571dcD.Muruganhttp://social.microsoft.com/Profile/en-US/?user=D.Murugandefragment<p>there is unknown error prevented tune up from performing this disk degragment.&nbsp; i have antivirus progrme kaspersky2009.</p>Thu, 15 Oct 2009 16:29:02 Z2009-10-17T13:16:41Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/c2b33f2e-803f-4aa7-93ed-224a0f613b54http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/c2b33f2e-803f-4aa7-93ed-224a0f613b54Jenifer2705http://social.microsoft.com/Profile/en-US/?user=Jenifer2705pasting a clipboard information in a drive using vb excel macroHi All,<br /><br />I had placed a object(which is nothing but a text file)&nbsp;in excel sheet. By using VB excel macro i want to copy that object and i want to place in a particular folder location. How to achieve this?<br /><br />Is there any command to copy from clip board to drive?<br /><br />Please help me<br /><br />Regards,<br />venugopalPThu, 15 Oct 2009 13:05:57 Z2009-10-15T13:05:58Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/5ece1cd8-d8d2-4456-a544-0aeef55beec2http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/5ece1cd8-d8d2-4456-a544-0aeef55beec2ckjianhttp://social.microsoft.com/Profile/en-US/?user=ckjianDuplicating folders in VistaPlease check out the screenshot at http://img40.imageshack.us/img40/2685/dupfolders.jpg<br/> <br/> May I know what's wrong with my Vista? I've Norton Internet Security installed in my machine so I think it shouldn't be virus. Someone please help me to solve the issue.Sun, 19 Jul 2009 14:23:39 Z2009-10-15T11:26:03Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/5ce54508-ee25-4f3c-9948-eb7f2be599afhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/5ce54508-ee25-4f3c-9948-eb7f2be599afScooter Bhttp://social.microsoft.com/Profile/en-US/?user=Scooter%20BWhere is the On/Off control for MS Wireless Optical Mouse 2000?Where is the <strong>On/Off control</strong> for the Microsoft Wireless Optical Mouse 2000?<br /><br />I've spent two hours searching for an answer to this question and have come up with links to;<br />1. Customer reviews complaining there is no on/off switch<br />2. Multiple links&nbsp;citing an auto off function bult in to the usb receiver somewhere....&nbsp; Unfortunately every single link&nbsp;citing this feature only&nbsp;go to online retailers for&nbsp;all wireless&nbsp;mice/keyboard products&nbsp;without a single reference to the ellusive auto power off feature.&nbsp; (I even searched multiple user reviews from those hits)<br /><br />Unless I remove the batteries&nbsp;the red LED&nbsp;remains on 24/7. (I wanted to add 365 after 24/7&nbsp;but estimated battery life is&nbsp;6 months)<br /><br />There is no user manual specific to this device that I could find although several search results on various microsoft.com entry points&nbsp;indicated one in the link.<br /><br />Granted LED's are&nbsp;very low on power consumption by themselves but I prefer a zero consumption option when not in use without removing the batteries.&nbsp; I'm pretty sure their have to be sensors on as well even if it has a sleep mode.<br /><br />Q1&nbsp;Is there really an on/off function for this device anywhere without removing the batteries or do I have to buy a switch and install it myself with a soldering iron?<br /><br />Q2 With 100's of user reviews complaining about this issue why is there no user manual or&nbsp; FAQ link covering this concern?Sun, 11 Oct 2009 04:27:58 Z2009-10-11T04:27:59Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/24649500-54c6-4e74-ba45-2ec7e0123940http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/24649500-54c6-4e74-ba45-2ec7e0123940ceekellhttp://social.microsoft.com/Profile/en-US/?user=ceekellvistai have two computers running one is a emachine running vista basic the other which isnt much older running xp.&nbsp; why is it that the older on with xp is so much faster than the other?&nbsp; the older one i just started again and to me seems to be much more reliable than the new one?&nbsp; not everyone can afford to upgrade and to be honest i want to get rid of vista all together.&nbsp; what does one do to solve this problem?Thu, 08 Oct 2009 20:10:42 Z2009-10-08T20:10:43Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/c054095d-cef8-471b-917d-e588cc993f46http://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/c054095d-cef8-471b-917d-e588cc993f46crzyalldayhttp://social.microsoft.com/Profile/en-US/?user=crzyalldayNeed to increase font size for printing out IE or any Microsoft help pagesCan somebody please help me?  I want to print out the Help files for IE8 but the print is so small I can barely read it.  Is there a way to increase the font size so that I can read it?  I'm sure it must be an easy thing to do but I'm not very computer savvy and don't have a clue what to do.<br/>Sun, 13 Sep 2009 05:33:25 Z2009-10-08T16:15:56Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/da2d1d2d-5e27-4594-affb-5017b05e1d6chttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/da2d1d2d-5e27-4594-affb-5017b05e1d6csaimahhttp://social.microsoft.com/Profile/en-US/?user=saimahare passwords alone sufficient enough protection for IT systems?are passwords alone sufficent protection for IT systems?<br/> <br/> i am investigating this and would appreciate it if anyone has any ideas how i could go about doing this, i.e whether it would be a practical or research based project etc. <br/> and what sites i can use for researchMon, 28 Sep 2009 17:47:16 Z2009-10-08T16:02:19Zhttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/252bd0ec-ff0e-442d-9d8e-5798b4ff4caahttp://social.microsoft.com/Forums/en-US/msrgeneraladdin/thread/252bd0ec-ff0e-442d-9d8e-5798b4ff4caamikemike38http://social.microsoft.com/Profile/en-US/?user=mikemike38Update problemMy computer shows that I need to install a Microsoft silverlight update but for some reason I keep getting a error code 663 when I try to install itSat, 19 Sep 2009 15:59:36 Z2009-10-08T15:49:56Z