System Randomly Shuts Off - Since Yesterday [Problem Details Within]

Page 4 of 6 FirstFirst ... 23456 LastLast

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

    Let's also get the last 100 critical and error entries in the event log files:

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

    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

    # ************************************************************ 
      My Computer


  2. Posts : 36
    Windows 7 Professional x64
    Thread Starter
       #32

    Just checked now and my memory dump requirements were already set accordingly.

    Here are my results for the last 100 critical and error entries in the event log files:

    Attachment 229023
      My Computer


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

    run this script for me please:
    Script:
    # **************************************************************
    # Puts MiniDumpSettings.TXT in your user profile folder
    # WIN | type %userprofile%\ then click on MiniDumpSettings.TXT
    # to view the important minidump settings
    # WIN = key with Microsoft logo on top
    # **************************************************************
    gwmi Win32_OSRecoveryConfiguration 
    select minidumpdirectoryexpandedminidumpdirectoryoverwriteexistingdebugfilekerneldumponly,`
    debuginfotype, autoreboot, writedebuginfo, writetosystemlog | fl > 
    $env:userprofile\desktop\minidumpsettings.txt

    EXIT
    EXIT 
    =============================
    attach minidumpsettings.txt to your next post.
    thanks, karl
      My Computer


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

    Have you been responding to messages from the Action Center?
      My Computer


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

    Carry out following:
    Install CCleaner:
    CCleaner - PC Optimization and Cleaning - Free Download

    list of STARTUP PROGRAMS

    CCleaner | Tools
    icon | Startup button | Windows tab |
    click on Save to text file button (bottom right side) |
    accept Startup.txt as file name | SAVE button

    list of SCHEDULED TASKS

    CCleaner | Tools
    icon | Startup button | Scheduled Tasks tab |
    click on Save to text file button (bottom right side) |
    enter Scheduled Tasks as File name | Save button

    List of INSTALLED PROGRAMS

    CCleaner | Tools
    icon | Uninstall button |
    click on Save to text file button (bottom right side) |
    accept install.txt as File name | Save button


    UPLOAD, as an attachment, the startup.txt file
    UPLOAD, as an attachment, the Scheduled Tasks.txt file
    UPLOAD, as an attachment, the install.txt file.

    HOW TO UPLOAD
    Post a File or Screenshot in Seven Forums
      My Computer


  6. Posts : 36
    Windows 7 Professional x64
    Thread Starter
       #36

    Here are the requested files:

    Attachment 229027

    Attachment 229028

    Attachment 229029

    Attachment 229030

    I always respond to messages from the Action Center. There's currently no reported issues - there usually isn't - the only thing that I've ever been notified lately at all was the last time my AV subscription license ran out.
      My Computer


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

    Do you maybe have some of the turned off?

    This is from the critical error list:
    Critical 27/08/2012 19:28:42 100 System maintenance detected issues requiring your attention. A notification was sent to the Actio
    n Center.
      My Computer


  8. Posts : 36
    Windows 7 Professional x64
    Thread Starter
       #38

    This is the current status of everything under the Action Center:

    Screenshot
      My Computer


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

    Your minidump settings are correct. Excellent.

    WIN | type MSCONFIG | ENTER | STARTUP tab |
    Uncheck ALL

    REBOOT!

    You have just told Win 7 to not run unchecked programs at start up time.

    You have not disabled the programs. They will be run when needed.

    WIN = key with the Microsoft logo on top
      My Computer


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

    CCLEANER | TOOLS icon | STARTUP tab | SCHEDULED TASKS tab |
    Use DISABLE button to disable ALL except for:
    Script:
    Adobe Flash Player Updater    Adobe Systems Incorporated    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    CCleanerSkipUAC    Piriform Ltd    
    "C:\Program Files\CCleaner\CCleaner.exe" $(Arg0
    Close CCleaner.


    REBOOT!


    You have not disabled any programs. You have disabled the scheduled running.
    Later, after your system is running smoothly, you may reenable desired programs.
      My Computer


 
Page 4 of 6 FirstFirst ... 23456 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 16:31.
Find Us