How to clear the administrative events in 'eventvwr' in Windows 7

Is anyone out there who can help me with this problem?   I'll tell you.

(1) first run the command eventvwr...

(2) this will open the Event Viewer log...

(3) then click on "Custom views" and make a double click on it...

(4) then you will see "Events Administrative", click on it...

(5) a window opens showing all, WARINGS, error messages...

I talked with Microsoft about this, they said there is no way to delete these...  I was able to clear all sections within a field by doing a "REFRESH in all...»  Microsoft also said to get rid of this, is only to restore your computer to a factory State...   I know that this can be done without a complete restoration...

Can someone help, please

Stephen

Original title: Windows 7 'RUN' command 'eventvwr '.

Moved to Virus & Malware

Hi, thanks for trying, but your response was not useful at all, sorry...   I am looking for a way to remove all the symbols warning under "Administration events Logs '...  I know how to clear all the undernearth, but it is the main I want to erase without having to do a factory restore.

Thank you

Steve

(1) I don't know why you're moping around the event viewer and what you're trying to achieve by disabling the administrative events. They are just the alerts and messages that won't just compensation without tackling the real problems reflected by alerts administrative event.

(2) by design, you cannot delete it interface in the Event Viewer because it isn't 'really' a newspaper. Its a kind of a filter of administrative events of all cumulative newspapers (Application/security/system other applications etc.) you see in the eventvwr.

(3) factory restore to clear the administrative events is a kind of a solution that might be similar to "Burn down your House to kill the rat"

(4) so how do? Do it yourself manually. Create a file beats using below and run it... (Run as Admin)

off @echo FOR /F "tokens = 1, 2 *" %%d IN ('bcdedit'), DO DEFINE adminTest = % V IF (noAdmin goto %adminTest%)==(Access) for /F "tokens = *" %%d in ('wevtutil.exe el') DO (call: do_clear ' % G ') echo echo, event logs have been cleared! ^ goto theEnd: do_clear echo %1 wevtutil.exe cl %1 goto of compensation: eof: noAdmin echo, you must run this script as an administrator! echo ^ ) : theEnd pause > NULL

More details step by step

https://www.YouTube.com/watch?v=1ehpcI7TZmw

http://aspnettutorialonline.blogspot.com/2014/02/how-to-clear-administrative-events-in.html

(5) results on my pc after doing... (Please note that it is dynamically regenerating alerts even after clearing alerts.) It's a sort of ephemeral clearing! )

WARNING: -.
It is a self-help guide that is tested before posting. Guide tested for Windows 10. However, use at your own risk.

Tags: Windows

Similar Questions

  • How to clear the administrative events - Event Viewer log

    Hello:

    Anyone know how to clear the administrative events log listed under custom in the event viewer views?

    All the logs listed in Windows logs do not have options to clear, but the back above.

    Thank you

    ColTom2

    Hey Colonel,

    It is because this isn't 'really' a newspaper, in itself.
    This is a Search of the newspaper (and there is MUCH more that most people know), filtered to show all events in administrative type.
    The source column shows you which newspaper it came from originally.

    To get rid of them, you will need to erase all records.

    If you want to get an idea:
    Go down to the Applications and Services logs, and expand.
    Microsoft, expand it.
    Then Windows.

    Nice list?
    You need to open and delete all. To really delete it.
    VP Tech Services

  • DESELECT THE ADMINISTRATIVE EVENTS IN EVENT VIEWER

    HOW CAN I CLEAR THE ADMINISTRATIVE EVENTS IN EVENT VIEWER

    The category of administrative events is just an aggregate of all the events.

    If you are wanting to clear the administrative events, you will need to go to each subcategory of Windows logs, and then right-click and select 'Clear log'.  If it asks you to save the log, just click again on 'clear log '.

    Once you have done this for all categories, then you will be able to see that there is nothing in the administrative events.

  • How to clear the Jquery Autocomplete text.

    Hi all


    I've implemented a text using jquery AutoComplete element. Every thing seems fine, but when we have a clear of the country which State should be cleared.
    Here is the code, can any body hep me where and how to clear the values.
    --
    <script type="text/javascript">
    $( function() {
        
        $("#P16_ENG_CTRY").autocomplete({
            source : function( request , response) { 
                            data = getCountry(request.term);
                            response( data );
                     } ,
            focus  : function(event , ui){
                        event.preventDefault();
                     }
     
        });
    });
     
    function getCountry(key)
    { 
       document.getElementById('P16_ENG_CTRY')==''; 
       var ajaxRequest = new htmldb_Get( null , '&APP_ID.' , 'APPLICATION_PROCESS=GET_COUNTRY' , 0);
       ajaxRequest.add( 'G_MX01' , key);
       ajaxResult = ajaxRequest.get(); 
       
       return ((ajaxResult.length>0)? ajaxResult.split( '~' ):null);
     
    }
    
    
    $( function() {
        
        $("#P16_ENG_STATE").autocomplete({
            source : function( request , response) { 
                            data = getStateJ(request.term);
                            response( data );
                     } ,
            focus  : function(event , ui){
                        event.preventDefault();
                     }
     
        });
    });
     
    function getStateJ(key)
    { 
    
      
    document.getElementById('P16_ENG_STATE')=='';
          var ajaxRequest = new htmldb_Get( null , '&APP_ID.' , 'APPLICATION_PROCESS=GET_JSTATE' , 0);
    
              ajaxRequest.add('G_MX01',document.getElementById('P16_ENG_CTRY').value);        
              ajaxRequest.add( 'G_MX03' , key);
              ajaxResult = ajaxRequest.get(); 
       
       return ((ajaxResult.length>0)? ajaxResult.split( '~' ):null);
     
    }
    
    
    $( function() {
        
        $("#P16_ENG_CITY").autocomplete({
            source : function( request , response) { 
                            data = getCityJ(request.term);
                            response( data );
                     } ,
            focus  : function(event , ui){
                        event.preventDefault();
                     }
     
        });
    });
    Thank you
    David...

    Try this then and you can replace the blur with an event of jquery as you like

    $("#P16_ENG_CTRY").blur(function() {
    //clear the value
      if ($(this).val()==null || $(this).val()=="") {
         $("#P16_ENG_STATE").val('');
      }
     }
    });
    
  • How to clear the children containers?

    My little app is coming along, has managed to get this well with the excellent advice of those here. My last problem is that when I leave the area of detail and select a new (master1) I don't know how to clear the details of the previous selections (master 2). When I select of (master1) DataGrid (master 2) is poplulated, but the Image on the canvas is still the Image previously selected until I select a new on in (master 2). Is there anyway to dump on a new event (master1)? My attempt to define my layout is less. If it is not enough just let me know and I'll post everything that is necessary. Thanks again for all the previous Help and in advance for this one.

    Presentation of the step:

    mxDataGrid (master1)
    /mxDataGrid

    tabNavigator
    MX:canvas
    dataProvider {master1} MX:image
    /MX:canvas

    MX:canvas
    dataProvider {master1} MX:DataGrid
    MX:columns (master 2)
    /MX:DataGrid
    dataProvider {master2} MX:image
    /MX:canvas

    /MX:tabNavigator

    I just changed the 'visible' attribute instead of compensation on the value, and all is good. Thank you.

  • How to clear the hard drive on my old iMac of 2008?

    I have a 2008 iMac I want to recycle. How to clear the hard drive?

    (What is PPC?)

    PPC stands for Power PC. Is the name used to refer to the old Macs that uses a Motorola processor instead of Intel chips used today. To clear your old Mac follow the advice in this document from Apple... What to do before you sell or give away your Mac - Apple Support

  • How to clear the cache of firefox

    How to clear the cache of firefox

    Settings-Advanced below 'Network' and clear here

    https://support.Mozilla.org/ru/KB/Kak-ochistit-KESH-Firefox?redirectlocale=ru & redirectslug = Kak-ochistit-Kesh

  • How to clear the history?

    How to clear the history?

    https://support.Mozilla.org/en-us/KB/how-do-i-clear-private-data-Firefox-Android

  • Portege Z930 - how to clear the memory of the fingerprint sensor?

    Hello

    Tell me how to clear the memory of the fingerprint sensor?
    Reinstall the operating system and now I can not add your impressions.

    They have their No....

    > Reinstall the operating system and now I can not add your impressions.
    Stand by. You have reinstalled OS using original recovery image?

  • Re: How to clear the model of Toshiba satellite PS271L - 6K 906 CMOS PASSWORD?

    In: Toshiba

    How to clear the model Toshiba Satellite PS271L - 6K 906 CMOS PASSWORD?
    Please respond to my E-mail [email protected]
    Thank you

    To: King

    http://forums.computers.Toshiba-Europe.com/forums/thread.jspa?MessageID=127837
    Read this thread very carefully!

  • How to clear the cache in 9.0.3

    Techno-bouffon here, in conflict on how to clear the cache in 9.0.3 (OS X 10.11.3 El Capitan). Some recommend to delete entire cache folder. Others say just clear com.apple.Safari, which I did. So... what happens if I delete the contents of the entire folder Caches? (I have nothing special set up on this computer.)

    Open Safari Preferences--> advanced.  Downstairs, make sure that ' see her develop menu in the menu bar "is checked.  Then go up to develop-> empty Caches.

  • How to clear the cmos on satellite p20 552 settings?

    How to clear the cmos on satellite p20 552 settings?

    Hello

    I guess you want to remove the BIOS password. Am I wrong?

  • How to clear the print queue on a printer hp x 6420

    How to clear the print queue on printer HP 4620?

    Hello

    From the desktop, hold down the Windows key and press R.  In the run window, type services.msc and press to enter.  Scroll down to the print spooler service, right click and select Properties, then click the Stop button.  Now search for C:\Windows\System32\Spool\PRINTERS, then delete the work inside this folder - you may need to click a command prompt to get the authority to open the PRINTERS folder.

    Restart the computer and you should find that the documents have been deleted.

    Kind regards

    DP - K

  • can someone tell me please how to clear the cache of adobe flash

    Hi can someone please tell me how to clear the cache of adobe flash? Please, I beg you. Thank you.  Tom.   for windows xp.

    Just click on clear all Web sites, and that's all!
    I hope this helps!
  • How to clear the table dhcp clients

    Does anyone know how to clear the Table of Clients DHCP?

    I have a WRV54G.

    Concerning

    I understand this is a very old post, but since I found it when I was looking for the same answer in 2009, I thought go ahead and give my $.02 worth.

    I have a different router, so it may not be present in your.

    I use a version of the firmware WRT54GLwith 4.30.7 and finally found on the status under "Local network" page a link to the DHCP table. You can click on that and delete existing IP addresses.

Maybe you are looking for