BSOD after rebuilding OS

gablumberg

New member
Windows 7 Home Professional 64bit
Dell Studio 1557
OEM, purchased Dec 2010

System previously froze periodically and then crashed. Yesterday, could NOT boot system up, so I restored system based on a system image created on 18 Mar 2012. Then, I uninstalled every program I hadn't used and tried to update all drivers. Computer worked great with multiple restarts.

I finally updated Window Updates which required 42 updates. System created BSOD on restart.

Please evaluate to see if I need to rebuild from scratch or if I missed updating a driver or something else.

Thanks
 
Last edited:

My Computer

Computer Manufacturer/Model Number
Dell Inc. / Studio 1557
OS
Windows 7 Home Premium 64bit
CPU
Intel Core i7 CPU Q 720 @ 1.6 GHz
Memory
4 GB
Graphics Card(s)
ATI Mobility Radeon HD 4500/5100 Series
Monitor(s) Displays
notebook monitor
Hard Drives
ST9500420AS ATA
Let's see if we can't get your computer updated.

Please follow the procedure I give to the letter. Skip no step. Install each and every update. This is Win 7 and not eXPired.

Read the write-up carefully. Pay attention to the action to take when the install appears to be hung.

UPDATING YOUR WIN 7
1. ASSURE THAT YOU RECEIVE ALL UPDATES
WIN | type WINDOWS UPDATE | ENTER |
Change settings (left-hand column) |
checkmark all four of the boxes | OK
button

Approve any dialog boxes presented. Let Windows install any update features.

WIN is the key with the Microsoft flag on top.

2. INSTALL CRITICAL UPDATES
Check for Updates
(left-hand column)
Install ALL critical updates.
Restart your computer (even if not prompted)

Repeat this procedure until there are no more critical updates.

DO NOT TRUST the “Windows is up to date” in center of dialog. until you see that TWICE IN A ROW!

3. INSTALL IMPORTANT UPDATES
Use the “critical update” procedure until all important updates are installed.

4. INSTALL OPTIONAL UPDATES
Use the “critical update” procedure until all optional updates are installed.

Under Optional updates you will be presented with a list of about 34 language updates.
You can hide those updates so that aren't continually notified of those updates. When you click on 34 optional updates are available, then you
a) highlight all of the language updates,
b) right-click anywhere in the highlighted list.
c) click on Hide Updates,
d) OK button.


UPDATE GOLDEN RULES

Install ALL, yes, ALL updates.
This is Win 7 and not Vista or XP (eXPired).

UPDATE IS HUNG –TAKING FOREVER
Hung is very doubtful unless you interrupted updates.

CTRL + SHIFT + ESC key combo will pop-up the Task Manager.
Lo and behold, Windows Update is still running!

You hold down the CTRL and SHIFT keys.
While holding them down, tap the ESC key once.
======================================
======================================

Afterwards, I'll give you a script to run which will indicate then installed and uninstalled updates. The uninstalled updates should be empty!
 

My Computer

Computer Manufacturer/Model Number
Toshiba Satellite S875D-S7239 laptop
OS
MS Windows 7 Ultimate SP1 64-bit
CPU
AMD A10-4600M
Motherboard
AMD Pumori (Socket FT1)
Memory
6.00 GB Dual-Channel DDR3 @ 798MHz (11-11-12-28)
Graphics Card(s)
AMD Radeon HD 7660G
Sound Card
High Definition Audio Device
Monitor(s) Displays
Generic PnP Monitor (1600x900@60Hz)
Screen Resolution
1600x900@60Hz
Hard Drives
SSD 119GB Corsair CSSD-V128GB2 ATA Device
Keyboard
Standard PS/2 Keyboard
Mouse
HP Wireless Optical Mobile Mouse Model FHA-3410
Internet Speed
What the local pub, local coffee shop offers.
Other Info
Optical Drive:MATSHITA BD-CMB UJ160B ATA Device


Also have an Asus ha1002xp netbook with Win 7 Ultimate installed.
Software status

So you caught me. I do NOT have either Microsoft Outlook or Microsoft InfoPath installed, so I have been picking and choosing on what Microsoft updates to install. Well, apparently your directions are correct. See this link for confirmation:

Do I need Outlook updates when I do not have Outlook installed?
Do I need Outlook updates when I do not have Outlook installed? - Microsoft Windows Vista Community Forums - Vistaheads

After checking for Microsoft updates twice, the only update that is NOT installed is Microsoft Bing Desktop which is listed as optional.

Computer status

Computer has been working great since the OS restore from the image. Computer restarted twice with no problems.

FYI, my hometown is San Antonio, TX. Austin is a nice a place.
 

My Computer

Computer Manufacturer/Model Number
Dell Inc. / Studio 1557
OS
Windows 7 Home Premium 64bit
CPU
Intel Core i7 CPU Q 720 @ 1.6 GHz
Memory
4 GB
Graphics Card(s)
ATI Mobility Radeon HD 4500/5100 Series
Monitor(s) Displays
notebook monitor
Hard Drives
ST9500420AS ATA
Excellent.

Here is the promised script to run and instructions on how.

# **********************INSTRUCTIONS**************************
# STEP 1 ** RUN POWERSHELL AS ADMINISTRATOR ******************
# ************************************************************
#
# WIN key | type POWERSHELL | do NOT hit ENTER |
# in the PROGRAMS list, right-click on WINDOWS POWERSHELL |
# choose "Run as administrator" |
# Click on the YES button (if such appears)
#
# WIN key = key with Microsoft log on top
#
# for the guru:
# WIN | type POWERSHELL | CTRL+SHIFT+ENTER key combo | ALT+Y keycombo
# ************************************************************
# STEP 2 ** COPY AND PASTE ***********************************
# ************************************************************
#
# COPY the script using CTRL+C,
# COPY every line of script down thru both EXIT statements
#
# PASTE into Powershell
#----Right-Click at the PowerShell Prompt
#----(Ctrl+V does not work)
#
# Start copying with first script line without a # at start of the line
# Note: Actually, you can paste the entire file if you rather
#-------Lines starting with a # are ignored by PowerShell
# ************************************************************
# STEP 3 ** SCRIPT OUTPUT & SCRIPT PURPOSE *******************
# ************************************************************
# --The script output and purpose is given at the very front of the script
#
# --The script output and purpose is given at the very front of the script
#
# ************************************************************
# ***************** NOTE - POWERSHELL VERSION*****************
# if you receive this error msg:
#--The system can not find the path specified
# you may need to update your PowerShell
# you must be using Powershell 2.0 or later.
#
# To determine your Powershell version:
#---Run PowerShell
#---enter $host.version
#---you should see at least:
# Major Minor Build Revision
# ----- ----- ----- --------
# 2......0......-1.....-1
#
# If you do not see the above, update your Vista/Win 7.
# ************************************************************
# *************** NOTE - EXECUTION POLICY*********************
# If you haven't set the execution policy, you may need to:
#---Run PowerShell
#---enter SET-EXECUTIONPOLICY -EXECUTIONPOLICY REMOTESIGNED
# ************************************************************

PHP:
# ************************************************************
# Places InstalledUpdates.txt on your DESKTOP
# Places NotInstalledUpdates.TXT on your DESKTOP
#
# Hidden updates are ignored.
# ************************************************************

Try
{
   $error.clear()
   $file = "$env:userprofile\Desktop\InstalledUpdates.TXT"
   If (test-path -path $file) {del $file}
   $update = new-object -com Microsoft.update.Session
   $searcher = $update.CreateUpdateSearcher()
   write-host "`n`n Patience. I'm slowly, but steadily working on fetching the list of installed updates.`n`n"
   $pending = $searcher.Search("IsInstalled=1") 
   foreach($entry in $pending.Updates) {
     IF ($entry.IsHidden -ne $true) {
       "Title: " + $entry.Title | Out-file -append $File
       "Downloaded? " + $entry.IsDownloaded | Out-file -append $File
       "Description: " + $entry.Description | Out-file -append $File
       foreach($category in $entry.Categories) {
           $d + "Category: " + $category.name | Out-file -append $File }
       "" | Out-file -append $file } }
   If ((Test-Path -path $file) -eq $false) {"No updates have been installed." | Out-file $file} 
# Now to check the uninstalled updates that aren't hidden
   $file = "$env:userprofile\Desktop\NotInstalledUpdates.TXT"
   If (test-path -path $file) {del $file}
   $update = new-object -com Microsoft.update.Session
   $searcher = $update.CreateUpdateSearcher()
   write-host "`n`n Patience. I'm slowly, but steadily working on fetching the list of uninstalled updates.`n`n"
   $pending = $searcher.Search("IsInstalled=0") 
   foreach($entry in $pending.Updates) {
   IF ($entry.IsHidden -ne $true) {
       "Title: " + $entry.Title | Out-file -append $File
       "Downloaded? " + $entry.IsDownloaded | Out-file -append $File
       "Description: " + $entry.Description | Out-file -append $File
       foreach($category in $entry.Categories) {
         $d + "Category: " + $category.name | Out-file -append $File }
       "" | Out-file -append $file } }
   If (-not(Test-Path -path -$file)) {"There are no uninstalled updates which are unhidden." | Out-file $file} 
}
Catch { "Unable to fetch update list from Microsoft site" }
Finally { "End of script"; EXIT }

EXIT
EXIT
 

My Computer

Computer Manufacturer/Model Number
Toshiba Satellite S875D-S7239 laptop
OS
MS Windows 7 Ultimate SP1 64-bit
CPU
AMD A10-4600M
Motherboard
AMD Pumori (Socket FT1)
Memory
6.00 GB Dual-Channel DDR3 @ 798MHz (11-11-12-28)
Graphics Card(s)
AMD Radeon HD 7660G
Sound Card
High Definition Audio Device
Monitor(s) Displays
Generic PnP Monitor (1600x900@60Hz)
Screen Resolution
1600x900@60Hz
Hard Drives
SSD 119GB Corsair CSSD-V128GB2 ATA Device
Keyboard
Standard PS/2 Keyboard
Mouse
HP Wireless Optical Mobile Mouse Model FHA-3410
Internet Speed
What the local pub, local coffee shop offers.
Other Info
Optical Drive:MATSHITA BD-CMB UJ160B ATA Device


Also have an Asus ha1002xp netbook with Win 7 Ultimate installed.
Script ran. Files are attached.

The "NotInstalledUpdates.txt" file states "There are no uninstalled updates which are unhidden."

Computer has working great with no BSOD.
 

My Computer

Computer Manufacturer/Model Number
Dell Inc. / Studio 1557
OS
Windows 7 Home Premium 64bit
CPU
Intel Core i7 CPU Q 720 @ 1.6 GHz
Memory
4 GB
Graphics Card(s)
ATI Mobility Radeon HD 4500/5100 Series
Monitor(s) Displays
notebook monitor
Hard Drives
ST9500420AS ATA
Back
Top