Event Viewer

Page 4 of 5 FirstFirst ... 2345 LastLast

  1. Posts : 582
    Microsoft Windows 7 Home Premium 64-bit 7601 Multiprocessor Free Service Pack 1
    Thread Starter
       #31

    just took another look at EV & see that WMI showed up 2 mins. after the i8042prt. Now I'll do the Fixit.
      My Computer


  2. Posts : 6,458
    x64 (6.3.9600) Win8.1 Pro & soon dual boot x64 (6.1.7601) Win7_SP1 HomePrem
       #32

    @grits: There a lots of folks around here that can help. You needn't wait for me. I got the info from Hammerhead and tried it. If it's a Mr.Fixit, you can be fairly sure that it will work - sometimes you might have to read the KB to be sure it's what you want (I know, I know.... that means you have to understand what they're talking about in the first place - lol). You'll be a guru fairly soon if you hang around here - I can already tell the difference - more confidence and clarity in your posts.
      My Computer


  3. Posts : 582
    Microsoft Windows 7 Home Premium 64-bit 7601 Multiprocessor Free Service Pack 1
    Thread Starter
       #33

    Now I'm off to look further into the keyboard issue.

    Thanks a million!!!
      My Computer


  4. Posts : 1,965
    win 7 X64 Ultimate SP1
       #34

    Clean Boot?


    I had to help someone install a CB in a truck. So I was busy yesterday afternoon. I am wondering where you stand now on your errors at boot. Have some of them went away? You have been busy.
      My Computer


  5. Posts : 582
    Microsoft Windows 7 Home Premium 64-bit 7601 Multiprocessor Free Service Pack 1
    Thread Starter
       #35

    The WMI is gone since I did the MSFixit yesterday, although I haven't re-booted this morning. (left machine on overnight to check up on my System Restore which isn't working right but that'a another issue). Now I have a couple DNS Client Events, ID 1014 that I'll need to check out.

    Have a couple other small issues in other areas that I need to check out so will leave Events alone for a bit.

    Thanks for your help.
      My Computer


  6. Posts : 1,965
    win 7 X64 Ultimate SP1
       #36

    One More


    If you haven't done it yet try this. Open a command prompt. Open it as administrator. (left click and select run as admin). Type in "SFC /Scannow". Wait for results if it finds problems. Run it again (at least 3 times) till it reports no problems. Also you can boot into safe mode and run it (might help).
      My Computer


  7. Posts : 6,458
    x64 (6.3.9600) Win8.1 Pro & soon dual boot x64 (6.1.7601) Win7_SP1 HomePrem
       #37

    @grits: Don't worry too much about the Events Log, it's most useful when you're experiencing some particular issue. Otherwise, it's just there collecting information on events. There's way too much information presented and you can filter out ones that you know are unimportant (starting xyz, stopping xyz), but I generally only use Event viewer to chase down a problem.

    The Action Center (Control Panel => Action Center or the flag in the notification area) should alert you of any issues that you need to address - no need to go looking / deciphering events.

    the 1014 error is probably just telling you that it can't connect at this time - perhaps it's a bit hasty launching DHCP services before dependent services are fully active. But yeah - you should check it out, for your own satisfaction.
      My Computer


  8. Posts : 582
    Microsoft Windows 7 Home Premium 64-bit 7601 Multiprocessor Free Service Pack 1
    Thread Starter
       #38

    I don't know if this is related to my clearing Events yesterday or running the MSFixit for WMI or something else.

    I didn't pay any attention to the Taskbar yesterday so don't know when it happened but this morning I see a change in the icon for my Windows Mail. What if anything should I do? I did click on it earlier & my mail window did open. Here's what I have now.
    Attached Thumbnails Attached Thumbnails Event Viewer-capture-_-my-windows-mail-icon-changed.png  
      My Computer


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

    grits,
    I recommend clearing the Event Logs to get rid of all of the chaff.

    A master explanation of all possible events would be nice. Does not exist. There are some commercial products which will cover many of them.

    Your best bet is always to read the description inside EventViewer and to google the event.

    CLEAR EVENT LOGS USING POWERSHELL


    Step 1: Create a powershell script
    Open NotePad.

    Copy following into notepad:
    Get-WinEvent -ListLog * -Force |
    % { $_.logname;Wevtutil.exe cl $_.logname };
    Wevtutil.exe cl system

    Save as ClearEvents.ps1 in %userprofile%\desktop

    Close Notepad

    Step 2: Create a shortcut to have powershell run the script
    Right-Click
    on an empty spot on your desktop
    Choose NEW -> Shortcut

    In the box,
    Enter powershell.exe & %userprofile%\desktop\ClearEvents.ps1
    NEXT
    button

    Type CLEAR EVENTS (or any name of your choice)
    FINISH button


    Step 3: Run the script
    The shortcut must be run as administrator.
    RIGHT-CLICK on your CLEAR EVENTS shortcut
    Choose Run as Administrator

    If Powershell complains,then
    Run PowerShell as administrator and set the script execution policy
    START ORB |
    type PowerShell | do NOT hit Enter |
    right-click on PowerShell (at top of list) |
    choose Run as administrator

    Enter following commands:
    Set-ExecutionPolicy remotesigned
    EXIT

    You can now proudly declare yourself a PowerShell user and aficionado. Now all you need is a COMPUTER GEEK badge. Batch files are so blasé.

    There is nothing magic about %userprofile%\desktop. If you already have a C:\Scripts folder, then you may prefer to store the ClearEvents.ps1 script there.

    Want to stay in Powershell after running the script? Add -noexit to the shortcut’s target (right-click on the shortcut. Properties, Shortcut tab, Target field).
    powershell.exe -noexit & %userprofile%\desktop\ClearEvents.ps1


    =========================================================================

    CLEAR EVENT LOGS USING A BATCH FILE


    The number of events in the event logs can be overwhelming.
    Purging the logs so that only fresh events are present can be helpful
    in troubleshooting.


    OPEN NOTEPAD
    Start Orb | type NOTEPAD | ENTER

    COPY AND PASTE FOLLOWING INTO NOTEPAD

    @echo off
    FOR /F "tokens=1,2*" %%V IN ('bcdedit') DO SET adminTest=%%V
    IF (%adminTest%)==(Access) goto noAdmin
    for /F "tokens=*" %%G in ('wevtutil.exe el') DO (call :do_clear "%%G")
    echo.
    goto theEnd
    :do_clear
    echo clearing %1
    wevtutil.exe cl %1
    goto :eof
    :noAdmin
    Exit
    :theEnd
    :ause

    SAVE AS CLEARLOGS.BAT

    CLOSE NOTEPAD

    RUN CLEARLOGS.BAT AS ADMINISTRATOR
    Right-click on ClrEventLogs.BAT
    Click on Run as Administrator

    The list of cleared logs will fly by on the screen.
    If you would like to see the list, then remove the two double colons
    in front of the pause statement at the very end of the BAT file.
      My Computer


  10. Posts : 582
    Microsoft Windows 7 Home Premium 64-bit 7601 Multiprocessor Free Service Pack 1
    Thread Starter
       #40

    I did use that batch file yesterday, guess my posts, #26, #31, #33 weren't clear about that.

    My concern today is my post # 38. My bad for not starting a new thread I suppose but clearing the EV & running the MSFixit were the only things I did yesterday & hadn't done anything yet this morning when I noticed the change.
      My Computer


 
Page 4 of 5 FirstFirst ... 2345 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 20:53.
Find Us