Windows7 64bit: Computer freezes / no Bluescreen

Page 2 of 6 FirstFirst 1234 ... LastLast

  1. Posts : 10,200
    MS Windows 7 Ultimate SP1 64-bit
       #11

    Tina,

    Please run the following script and upload as an attachment the resulting txt file that is placed on your desktop.

    Script:
    # ************************************************************
    # Places CRITICALandERROREVENTS.TXT on your DESKTOP
    #
    # Displays 100 most recent critical and error events in a Grid View
    # Writes 100 most recent critical and error events to CriticalAndErrorEvents.txt
    #
    # Change the $MAX value for more or fewer events
    # Change the $Lwidth value to 254 for example for longer lines
    # **********************************************************

    $MAX 100
    $LWidth 
    132
    $a 
    Get-WinEvent -FilterHashtable @{logname='*';  level=1,2} `
    -max 
    $MAX  -verbose:$false -erroraction:silentlycontinue |
    sort-object -property 
    `
    @{
    expression="level";Descending=$false}, `
    @{expression="timecreated";Descending=
    $true} |
    select-object -property leveldisplayname, timecreated, ID,  Message 
    $a | out-gridview -Title "Critical and Error Events"
    $a | format-table  @{Label = "Level"; Expression =  {$_.leveldisplayname} }, timecreated, ID, Message -wrap -auto |
    out-file 
    $env:userprofile\Desktop\CRITICALandERROREVENTS.TXT -width $Lwidth

    EXIT
    EXIT

    # ************************************************************ 
    # **********************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
    # ************************************************************
    ==========================================
    ==========================================

    Use SPECCY to keep an eye on your temps.
      My Computer


  2. Posts : 23
    Windows 7 Home Premium SP1 64bit
    Thread Starter
       #12

    My results (txt-file) are attached.
    Windows7 64bit: Computer freezes / no Bluescreen Attached Files
      My Computer


  3. Posts : 10,200
    MS Windows 7 Ultimate SP1 64-bit
       #13

    Tina,
    I would like for you to fill out your system specs.
    Please follow this write-up and use SPECCY to gather info.

    Update your SevenForums System Specs
    User CP (located on the top menu bar) |
    Your Profile | Edit System Spec
    (left-hand column)

    To gather info, use Speccy (my favorite) or SIW or System Info

    In the System Manufacturer Block, enter:
    Ř Manufacturer and Model OR Custom build.
    Ř ADD the word laptop, desktop, netbook or tablet.
    For example:
    Toshiba Satellite L305D notebook.

    Provide full windows version info, for example:
    MS Windows 7 Ultimate SP1 64-bit

    Use the “Other Info” block for Optical Reader,
    Mouse, touchpad, wifi adapter, speakers, monitor, etc

    Scroll down and click on SAVE CHANGES.

    With Speccy, you can select with your mouse/touchpad info from the display
    and paste that info into your specs.

    SIW is a marvelous program, but the free version does not offer
    this capability.
      My Computer


  4. Posts : 23
    Windows 7 Home Premium SP1 64bit
    Thread Starter
       #14

    Done.
      My Computer


  5. Posts : 10,200
    MS Windows 7 Ultimate SP1 64-bit
       #15

    Thanks.

    That info satisfies nearly all needs.

    There are a couple of other hardware points I'd like to investigate.

    What that means is:

    SPECCY | FILE | SAVE SNAPSHOT | SAVE button

    That will generate a file with the extension of .SPECCY.

    Would you please zip up that file and attach to your next post?

    The "snapshot" format does not include your product key which is excellent since that product key is what you need to install Windows.

    I could ask many questions and have you run several scripts to gather all of the info but this is simpler.
      My Computer


  6. Posts : 23
    Windows 7 Home Premium SP1 64bit
    Thread Starter
       #16

    Here it is.
    Windows7 64bit: Computer freezes / no Bluescreen Attached Files
      My Computer


  7. Posts : 23
    Windows 7 Home Premium SP1 64bit
    Thread Starter
       #17

    After the last boot (about 10) minutes ago, I had a freeze.
    Attached are the events from the eventviewer short before the freeze was.
    Windows7 64bit: Computer freezes / no Bluescreen Attached Files
      My Computer


  8. Posts : 10,200
    MS Windows 7 Ultimate SP1 64-bit
       #18

    Tina,
    A good idea would be to once again capture the critical and error events so that I have the before and after list.
    thanks,
    Oh yes, will be back in about 2 hours.
      My Computer


  9. Posts : 23
    Windows 7 Home Premium SP1 64bit
    Thread Starter
       #19

    karlsnooks said:
    Tina,
    A good idea would be to once again capture the critical and error events so that I have the before and after list.
    thanks,
    Oh yes, will be back in about 2 hours.
    I think I did that. See my last attachment (last post).
    Or did I understand you wrong?
      My Computer


  10. Posts : 10,200
    MS Windows 7 Ultimate SP1 64-bit
       #20

    tina,
    you said:
    Attached are the events from the eventviewer short before the freeze was.
    I would also like one after the freeze.
    Thanks,
    karl
      My Computer


 
Page 2 of 6 FirstFirst 1234 ... LastLast

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 01:06.
Find Us