Instead of Update trigger error

Hi all
I tried to solve this problem of course 4-5 days... I'm unable to solve... Can someone please...

I hhave a requirement I need to update 4 tables from a single form... I created a view that will get the required fields as well as primary keys for all these tables of 4.

Then I created a trigger Instead of Update as below

CREATE OR REPLACE TRIGGER "HOMEPAGEVIEW_UPDATE".
Instead of UPDATE on cts_homepageview
BEGIN
DECLARE
vID NUMBER;
UPDATE cts_hardware_info
SET BATCH =: NEW. BATCH,
COMPUTERNAME =: NEW.COMPUTER_NAME,
OPERATINGSYSTEM_ID =: NEW. OPERATINGSYSTEM_ID
where computer_id =: NEW.COMPUTER_ID;

UPDATE cts_server_administrator
SET PRIMARY_ADMIN_ID =: NEW. PRIMADMIN_ID,
SECONDARY_ADMIN_ID =: NEW. SECONDADMIN_ID
WHERE ID =: NEW.ID;

UPDATE cts_location_info
SET BUILDING_ROOM_RACK =: NEW. BUILDING_ROOM_RACK
WHERE LOCATION_ID =: NEW. LOCATION_ID;

UPDATE cts_maintenace_info
SET MAINTENANCE_WINDOW =: NEW. MAINTENANCE_WINDOW
WHERE MAINTENANCE_ID =: NEW. MAINTENANCE_ID;
END;


When I try to update a record, am gettting the following error

ORA-20505: DML error: p_rowid = 488, p_alt_rowid = COMPUTER_ID, p_rowid2 =, p_alt_rowid2 is. ORA-02014: cannot select the UPDATES view DISTINCT, GROUP BY, etc.
Error failed to process row in the CTS_HOMEPAGEVIEW table.
Ok


I've already posted this question on the forum, but force the answers so try my luck again... Can someone please... I searched the forum for similar requests ths... Found a post the solution bt is not given...


Thank you
Yvette

Published by: user0012 on April 29, 2009 09:54

Yvette:

Most likely you typoed a name table or a column in the code in the trigger name. Check that the table names and column names referenced in the trigger are valid. Take a look at the line with

OPERATING_SYS =: NEW. OPERATING_SYS

Is this a valid column?

CITY

Tags: Database

Similar Questions

  • Create a trigger instead of update several tables in a view

    Dear everybody

    I am trying to create a trigger that updates instead of to day joined several tables in a view, but I can't get my trigger to work. The create view command was as follows:
    CREATE OR REPLACE VIEW VIEW_MI_JOIN_GC
    AS
    SELECT MAP_INDEX.mi_prinx,
           index_type_id,
           original_map_publication_id,
           original_map_sheet_number_id,
           name_of_feature,
           geog_coordinates_id,
           GEOG_COORDINATES.mi_prinx AS "mi_prinx_polygon",
           GEOG_COORDINATES.geographical_coordinates,
           GEOG_COORDINATES.mapinfo_style_row
     FROM MAP_INDEX
      JOIN GEOG_COORDINATES
       ON geog_coordinates_id=GEOG_COORDINATES.mi_prinx;
    The view above connects a polygon table to the table of function names which means that a polygon appears several times in a view, even though one version of the polygon exists in the base table. This means the direct update of view cannot take place, since 1 polygon can appear multiple times in a view. The two original base tables and their columns names are:
    MAP_INDEX
    ---------
    MI_PRINX
    INDEX_TYPE_ID
    ORIGINAL_MAP_PUBLICATION_ID
    ORIGINAL_MAP_SHEET_NUMBER_ID
    NAME_OF_FEATURE
    MAPINFO_STYLE_ROW
    GEOGRAPHICAL_COORDINATES
    GEOG_COORDINATES_ID
    
    GEOG_COORDINATES
    ----------------
    MI_PRINX
    GEOGRAPHICAL_COORDINATES
    MAPINFO_STYLE_ROW
    Relax, I created was as follows:
    CREATE OR REPLACE TRIGGER TRIG_VIEW_MI_JOIN_GC
       INSTEAD OF UPDATE ON VIEW_MI_JOIN_GC
          REFERENCING NEW AS NEW
     FOR EACH ROW
    BEGIN
     UPDATE MAP_INDEX
      SET mi_prinx = :NEW.mi_prinx,
          index_type_id = :NEW.index_type_id,
          original_map_publication_id = :NEW.original_map_publication_id,
          original_map_sheet_number_id = :NEW.original_map_sheet_number_id,
          name_of_feature = :NEW.name_of_feature,
          mapinfo_style_row = :NEW.mapinfo_style_row,
          geographical_coordinates = :NEW.geographical_coordinates,
          geog_coordinates_id = :NEW.geog_coordinates_id
       WHERE geog_coordinates_id = :OLD.geog_coordinates_id;
     UPDATE GEOG_COORDINATES
      SET mi_prinx = :NEW.mi_prinx,
          geographical_coordinates = :NEW.geographical_coordinates,
          mapinfo_style_row = :NEW.mapinfo_style_row
       WHERE mi_prinx = :OLD.mi_prinx;
    END;
    /
    The idea is that when I draw a new polygon in MapInfo and assign him a revised number geog_coordinates_id and the number of mi_prinx_polygon, which are the same, once I have save the view as then it updates the underlying tables. Geographical_coordinates and mapinfo_style_row of map_index table columns are columns with ancient polygon data which while not having currently new data inserted into them, are required for the previous data they contain. These data are currently being added to the geog_coordinates table with other scripts. The idea is that all the data is then read using a view and updates made to the view, triggering instead of relaxing, so data are not duplicated but still visible as if it were.

    When I created first the relaxation above in SQLdeveloper it seems to run constantly. Then my computer crashed, not related to this work, and I lost session because I did not commit it. I was not ready to commit it because I believe that something is wrong.

    I am in the trigger syntax correctly and I go about it in the right way? I want to only update the rows that have changed, that's why I was using: NEWS and: OLD.

    Kind regards

    Tim

    Published by: user467357 on November 18, 2008 18:07
    I modified my script a little because there were a few errors. for example. start and old as old and view name typo

    Something like this->

    satyaki>
    satyaki>select * from v$version;
    
    BANNER
    ----------------------------------------------------------------
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    
    Elapsed: 00:00:01.78
    satyaki>
    satyaki>
    satyaki>create table MAP_INDEX
      2   (
      3        mi_prinx                    NUMBER(10) not null,
      4        index_type_id                NUMBER(6) not null,
      5        original_map_publication_id  NUMBER(6) not null,
      6        original_map_sheet_number_id NUMBER(6) not null,
      7        name_of_feature              VARCHAR2(80) not null,
      8        mapinfo_style_row            VARCHAR2(80),
      9        geographical_coordinates    SDO_GEOMETRY,
     10        geog_coordinates_id          NUMBER(10),
     11        constraints pk_mi_prinx primary key(mi_prinx)
     12   );
    
    Table created.
    
    Elapsed: 00:00:04.39
    satyaki>
    satyaki>create table GEOG_COORINDATES
      2   (
      3     mi_prinx NUMBER(10) not null,
      4     geographical_coordinates SDO_GEOMETRY,
      5     mapinfo_style_row VARCHAR2(80),
      6     constraints pk_mi_prinx_n primary key(mi_prinx)
      7   );
    
    Table created.
    
    Elapsed: 00:00:00.30
    satyaki>
    satyaki>
    satyaki>CREATE OR REPLACE VIEW VIEW_MI_JOIN_GC
      2  AS
      3  SELECT MAP_INDEX.mi_prinx,
      4         MAP_INDEX.index_type_id,
      5         MAP_INDEX.original_map_publication_id,
      6         MAP_INDEX.original_map_sheet_number_id,
      7         MAP_INDEX.name_of_feature,
      8         MAP_INDEX.geog_coordinates_id,
      9         GEOG_COORINDATES.mi_prinx AS "mi_prinx_polygon",
     10         GEOG_COORINDATES.geographical_coordinates,
     11         GEOG_COORINDATES.mapinfo_style_row
     12   FROM MAP_INDEX , GEOG_COORINDATES
     13   WHERE MAP_INDEX.geog_coordinates_id=GEOG_COORINDATES.mi_prinx;
    
    View created.
    
    Elapsed: 00:00:00.32
    satyaki>
    satyaki>
    satyaki>insert into MAP_INDEX values(
      2                                 &mi_prinx,
      3                                 &index_type_id,
      4                                 &original_map_publication_id,
      5                                 &original_map_sheet_number_id,
      6                                 '&name_of_feature',
      7                                 '&mapinfo_style_row',
      8                                 null,
      9                                 &geog_coordinates_id);
    Enter value for mi_prinx: 1
    old   2:                                &mi_prinx,
    new   2:                                1,
    Enter value for index_type_id: 44
    old   3:                                &index_type_id,
    new   3:                                44,
    Enter value for original_map_publication_id: 5678
    old   4:                                &original_map_publication_id,
    new   4:                                5678,
    Enter value for original_map_sheet_number_id: 356
    old   5:                                &original_map_sheet_number_id,
    new   5:                                356,
    Enter value for name_of_feature: AA
    old   6:                                '&name_of_feature',
    new   6:                                'AA',
    Enter value for mapinfo_style_row: GG
    old   7:                                '&mapinfo_style_row',
    new   7:                                'GG',
    Enter value for geog_coordinates_id: 9
    old   9:                                &geog_coordinates_id)
    new   9:                                9)
    
    1 row created.
    
    Elapsed: 00:00:00.16
    satyaki>/
    Enter value for mi_prinx: 2
    old   2:                                &mi_prinx,
    new   2:                                2,
    Enter value for index_type_id: 55
    old   3:                                &index_type_id,
    new   3:                                55,
    Enter value for original_map_publication_id: 6789
    old   4:                                &original_map_publication_id,
    new   4:                                6789,
    Enter value for original_map_sheet_number_id: 357
    old   5:                                &original_map_sheet_number_id,
    new   5:                                357,
    Enter value for name_of_feature: BB
    old   6:                                '&name_of_feature',
    new   6:                                'BB',
    Enter value for mapinfo_style_row: 10
    old   7:                                '&mapinfo_style_row',
    new   7:                                '10',
    Enter value for geog_coordinates_id: 8
    old   9:                                &geog_coordinates_id)
    new   9:                                8)
    
    1 row created.
    
    Elapsed: 00:00:00.04
    satyaki>
    satyaki>commit;
    
    Commit complete.
    
    Elapsed: 00:00:00.03
    satyaki>
    satyaki>
    satyaki>insert into GEOG_COORINDATES values(&mi_prinx,null,'&mapinfo_style_row');
    Enter value for mi_prinx: 9
    Enter value for mapinfo_style_row: FFG
    old   1: insert into GEOG_COORINDATES values(&mi_prinx,null,'&mapinfo_style_row')
    new   1: insert into GEOG_COORINDATES values(9,null,'FFG')
    
    1 row created.
    
    Elapsed: 00:00:00.07
    satyaki>/
    Enter value for mi_prinx: 8
    Enter value for mapinfo_style_row: GGT
    old   1: insert into GEOG_COORINDATES values(&mi_prinx,null,'&mapinfo_style_row')
    new   1: insert into GEOG_COORINDATES values(8,null,'GGT')
    
    1 row created.
    
    Elapsed: 00:00:00.05
    satyaki>
    satyaki>commit;
    
    Commit complete.
    
    Elapsed: 00:00:00.02
    satyaki>
    satyaki>select * from VIEW_MI_JOIN_GC;
    
      MI_PRINX INDEX_TYPE_ID ORIGINAL_MAP_PUBLICATION_ID ORIGINAL_MAP_SHEET_NUMBER_ID NAME_OF_FEATURE                                                                  GEOG_COORDINATES_ID mi_prinx_polygon GEOGRAPHICAL_COORDINATES(SDO_GTYPE, SDO_SRID, SDO_POINT(X, Y, Z), SDO_ELEM_INFO, SDO_ORDINATES)
    ---------- ------------- --------------------------- ---------------------------- -------------------------------------------------------------------------------- ------------------- ---------------- ---------------------------------------------------------------------------------------------------------------
             1            44                        5678                          356 AA                                                                                                 9                9
             2            55                        6789                          357 BB                                                                                                 8                8                                                                                                                 
    
    Elapsed: 00:00:00.09
    satyaki>
    satyaki>
    satyaki>CREATE OR REPLACE TRIGGER TRIG_VIEW_MI_JOIN_GC
      2  INSTEAD OF UPDATE ON VIEW_MI_JOIN_GC
      3  FOR EACH ROW
      4  DECLARE
      5   m_info_svw  varchar2(80);
      6  BEGIN
      7   m_info_svw :=  :NEW.mapinfo_style_row;
      8
      9   UPDATE MAP_INDEX
     10    SET mi_prinx = :NEW.mi_prinx,
     11        index_type_id = :NEW.index_type_id,
     12        original_map_publication_id = :NEW.original_map_publication_id,
     13        original_map_sheet_number_id = :NEW.original_map_sheet_number_id,
     14        name_of_feature = :NEW.name_of_feature,
     15        mapinfo_style_row = m_info_svw,
     16        geographical_coordinates = :NEW.geographical_coordinates,
     17        geog_coordinates_id = :NEW.geog_coordinates_id
     18     WHERE geog_coordinates_id = :OLD.geog_coordinates_id;
     19   UPDATE GEOG_COORINDATES
     20    SET mi_prinx = :NEW.geog_coordinates_id,
     21        geographical_coordinates = :NEW.geographical_coordinates,
     22        mapinfo_style_row = m_info_svw
     23     WHERE mi_prinx = :OLD.geog_coordinates_id;
     24  END;
     25  /
    
    Trigger created.
    
    Elapsed: 00:00:00.20
    satyaki>
    satyaki>select * from VIEW_MI_JOIN_GC;
    
      MI_PRINX INDEX_TYPE_ID ORIGINAL_MAP_PUBLICATION_ID ORIGINAL_MAP_SHEET_NUMBER_ID NAME_OF_FEATURE                                                                  GEOG_COORDINATES_ID mi_prinx_polygon GEOGRAPHICAL_COORDINATES(SDO_GTYPE, SDO_SRID, SDO_POINT(X, Y, Z), SDO_ELEM_INFO, SDO_ORDINATES)
    ---------- ------------- --------------------------- ---------------------------- -------------------------------------------------------------------------------- ------------------- ---------------- ---------------------------------------------------------------------------------------------------------------
             1            44                        5678                          356 CC                                                                                                 9                9
             2            55                        6789                          357 BB                                                                                                 8                8                                                                                                                 
    
    Elapsed: 00:00:00.09
    satyaki>
    satyaki>select mi_prinx,mapinfo_style_row from GEOG_COORINDATES;
    
      MI_PRINX MAPINFO_STYLE_ROW
    ---------- --------------------------------------------------------------------------------
             9 FFG
             8 GGT
    
    Elapsed: 00:00:00.07
    satyaki>select * from MAP_INDEX;
    
      MI_PRINX INDEX_TYPE_ID ORIGINAL_MAP_PUBLICATION_ID ORIGINAL_MAP_SHEET_NUMBER_ID NAME_OF_FEATURE                                                                  MAPINFO_STYLE_ROW                                                                GEOGRAPHICAL_COORDINATES(SDO_GTYPE, SDO_SRID, SDO_POINT(X, Y, Z), S
    ---------- ------------- --------------------------- ---------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------
             1            44                        5678                          356 CC                                                                               HHH
             2            55                        6789                          357 BB                                                                               HHH                                                                                                                                                  
    
    Elapsed: 00:00:00.12
    satyaki>
    satyaki>update VIEW_MI_JOIN_GC
      2    set name_of_feature = 'DD'
      3  where mi_prinx = 1;
    
    1 row updated.
    
    Elapsed: 00:00:00.05
    satyaki>
    satyaki>select * from VIEW_MI_JOIN_GC;
    
      MI_PRINX INDEX_TYPE_ID ORIGINAL_MAP_PUBLICATION_ID ORIGINAL_MAP_SHEET_NUMBER_ID NAME_OF_FEATURE                                                                  GEOG_COORDINATES_ID mi_prinx_polygon GEOGRAPHICAL_COORDINATES(SDO_GTYPE, SDO_SRID, SDO_POINT(X, Y, Z), SDO_ELEM_INFO, SDO_ORDINATES)
    ---------- ------------- --------------------------- ---------------------------- -------------------------------------------------------------------------------- ------------------- ---------------- ---------------------------------------------------------------------------------------------------------------
             1            44                        5678                          356 DD                                                                                                 9                9
             2            55                        6789                          357 BB                                                                                                 8                8                                                                                                                 
    
    Elapsed: 00:00:00.08
    satyaki>
    satyaki>select mi_prinx,mapinfo_style_row from GEOG_COORINDATES;
    
      MI_PRINX MAPINFO_STYLE_ROW
    ---------- --------------------------------------------------------------------------------
             9 FFG
             8 GGT
    
    Elapsed: 00:00:00.06
    satyaki>
    satyaki>update VIEW_MI_JOIN_GC
      2     set mapinfo_style_row = 'OOOO'
      3     where mi_prinx = 1;
    
    1 row updated.
    
    Elapsed: 00:00:00.05
    satyaki>
    satyaki>select mi_prinx,mapinfo_style_row from GEOG_COORINDATES;
    
      MI_PRINX MAPINFO_STYLE_ROW
    ---------- --------------------------------------------------------------------------------
             9 OOOO
             8 GGT
    
    Elapsed: 00:00:00.06
    satyaki>
    satyaki>select mapinfo_style_row from MAP_INDEX;
    
    MAPINFO_STYLE_ROW
    --------------------------------------------------------------------------------
    OOOO
    HHH
    
    Elapsed: 00:00:00.06
    satyaki>
    

    Hope this will help you.

    Kind regards.

    LOULOU.

  • Updated the macbook pro of el capitan and now will not start. Instead, I get the error message "your computer restarted due to a problem". Someone at - it suggestions on how to solve this problem?

    Updated macbook pro today for the latest version of el capitan and now will not start. Instead, I get the error message "your computer restarted due to a problem". Someone at - it suggestions on how to solve this problem?

    It would be helpful to post what the screen says.

    -Try to reset memory NVRAM/PRAM and SMC

    MacIntel: Reset of the controller (SMC) system management

    https://support.Apple.com/en-us/HT201295

    Subject of memory NVRAM and PRAM

    https://support.Apple.com/en-us/HT204063

    -Try to start safe mode

    OS x: what is Safe Boot, Safe Mode?

    https://support.Apple.com/en-us/HT201262

    -Start to recovery and repair the startup disk

    OS X: on OS X Recovery - Apple Support

    https://support.Apple.com/en-us/HT201314

    -If it is repairable reinstall the OSX

    How to reinstall OS X on your Mac - Apple Support

    https://support.Apple.com/en-us/HT204904

    -If you do not have a backup using disk utility to restore the internal drive to an external drive, so that you can try to recover the data.

  • Table is the mutation of error in after the update trigger

    Hello

    In all of my table, I have columns EDITDATE and EDITUSER. So whenever a table is updated I need to update these two fields with the USER and SYSDATE. For this I use a BEFORE UPDATE trigger. This trigger is activated, but I get "ORA-04091: table %s.%s is changing, function of triggering/can not see" error every time I update the table. I used this method in SQL Server. I understand that Oracle doesn't have to be the same as SQL Server but I do not know there is a way to do this. Do you know what it is?

    EDIT: Here is the Code of the trigger

    create or replace
    TR_LEGISLATION_CALCUL_AE RELAXATION
    BEFORE THE UPDATE
    ON LEGISLATION_CALCUL
    FOR EACH LINE
    DECLARE
    v_LEGISLATIONCALCULID NUMBER (10,0);

    BEGIN
    SELECT: NEW. LEGISLATIONCALCULID

    IN v_LEGISLATIONCALCULID
    FROM DUAL;
    UPDATE LEGISLATION_CALCUL
    SET EDITUSER_ID = UID,
    EDITDATE = SYSDATE
    WHERE LEGISLATIONCALCULID = v_LEGISLATIONCALCULID;
    END;

    Published by: Mikhail on 12 March 2012 23:54

    Mikhail says:
    Hello

    In all of my table, I have columns EDITDATE and EDITUSER. So whenever a table is updated I need to update these two fields with the USER and SYSDATE. For this I use the AFTER UPDATE trigger. This trigger is activated, but I get "ORA-04091: table %s.%s is changing, function of triggering/can not see" error every time I update the table. I used this method in SQL Server. I understand that Oracle doesn't have to be the same as SQL Server but I do not know there is a way to do this. Do you know what it is?

    EDIT: Here is the Code of the trigger

    create or replace
    TR_LEGISLATION_CALCUL_AE RELAXATION
    BEFORE THE UPDATE
    ON LEGISLATION_CALCUL
    FOR EACH LINE

    just put this in your before update (and not after the update as you mentioned) for each trigger line:

    BEGIN
    
    :new.EDITUSER_ID := UID;
    :new.EDITDATE := SYSDATE;
    
    END;
    
  • DB trigger error - update even table in the script of the trigger

    Hi all
    I have a table tab1, whenever any update is done on this table on column col1 and col2 also needs to get the update. (These are related to user forms can be updated only col1 form frontend)
    So I created a trigger as follows.
    ----------------
    CREATE OR REPLACE TRIGGER tri1
    AFTER UPDATE
    ON tab1
    FOR EACH LINE
    WHERE (NEW.col1 = 'YES')
    DECLARE
    PRAGMA AUTONOMOUS_TRANSACTION;
    BEGIN
    Tab1 SET col2 = 1 UPDATE
    WHERE transaction_id =: OLD.transaction_id;
    COMMIT;
    END;
    --------
    When there is no update on this table, I get following error. Please let me know if I'm missing something.
    ORA-00060: Deadlock detected while you wait resource
    ORA-06512: at "user1.tab1", line 5
    ORA-04088: error during execution of trigger 'user1.tab1 '.
    Please let me know if I'm not clear. Thank you

    Published by: DharV on August 23, 2011 05:17

    Your transaction_id is unique?

    If this is the case, then you could perhaps use AFTER UPDATE BEFORE UPDATE:

    CREATE OR REPLACE TRIGGER tri1
    BEFORE UPDATE
    ON tab1
    FOR EACH ROW
    WHEN (NEW.col1 = 'YES')
    BEGIN
       :NEW.col2 := 1;
    END;
    

    If your transaction_id is not unique - if you really want to update more than one line in tab1 - your update cannot update the same line that the trigger has responded, even with the use of an autonomous transaction. Then you could combine the BEFORE UPDATE trigger above with your own AFTER UPDATE, but then add ROWID! =: OLD. ROWID to where clause, but it would be a bad idea because some of your lines will be updated in a single transaction and others in another transaction.

    In general the autonomous transaction is not a great way to solve the problem of changing table within a trigger. I hope that you have a unique transaction_id and can do BEFORE the UPDATE - if it is then a better way is to save the update id in an overall picture in FOR EACH ROW triggers, and only then AFTER an UPDATE fire is NOT "for each line" update the list of saved IDs

  • What causes update extension errors?

    Today about 15:00 Firefox tells me there where some add-on updates available, but I noticed most of them didn't upload instead I received an error message failed to update. So I corrected by manually installing updates.
    But it made me think what is the cause of these errors? Occurs when mozilla.org has difficulties or a moat in Firefox is unable to connect to the server what exactly?
    Anyone has the answer to my question? Thank you times to follow if you do.

    We signed some add-ons chosen Friday as paving the way for additional signature feature.

    These signed versions had their version number hit, adding a ". 1-sign" for them. The goal was to have control of the update a new version to detect and install the newly signed versions.

    Signature changed their hashes, but the CDN modules files cached an older version of the file. Long story short, that files would be finally served properly once the CDN got emptied, but that's why some of you had this problem of incompatibility of hash.

    However, in the meantime, we discovered that the signature of Add on could cause some problems in older versions of Firefox (28 and below). We thus returned change, and that's why the versions that were seen as updates are no longer.

    If you have installed these versions signed, no problem, you need not to downgrade or uninstall/reinstall. We'll be resigning these modules in the future.

  • Updated Micrsoft error 0 x 80190194 on muv4wuredir.cab and error 0 x 80091007 on 4977235_28b8de5708f29a19b05b4f954e8cea567b534478.cab

    Hello

    We have a computer in the domain that was not able to run Microsoft Updates (Windows Update worked great, no problem).  See below for the newspaper (sorry for the long list).  The error lines have been marked in bold.

    I have tried all suggestions in http://support.microsoft.com/kb/971058 , including the step 4.

    Please suggest what to do about it!

    Thank you

    El

    2012-11-08 12:45:29:495 1424 e68 Misc = logging initialized (build: 7.6.7600.256, tz: + 1300) =.
    2012-11-08 12:45:29:495 1424 e68 Misc = process: C:\Program may Explorer\IEXPLORE. EXE
    2012-11-08 12:45:29:495 1424 e68 Misc = Module: C:\WINDOWS\system32\wuapi.dll
    2012-11-08 12:45:29:495 1424 e68 COMAPI - COMAPI: IUpdateServiceManager::AddService -.
    2012-11-08 12:45:29:495 1424 e68 COMAPI - ServiceId = {7971f918-a847-4430-9279-4a52d1efe18d}
    2012-11-08 12:45:29:495 1424 e68 COMAPI - AuthorizationCabPath = C:\WINDOWS\SoftwareDistribution\AuthCabs\muauth.cab
    2012-11-08 12:45:29:542 1124 5 a 8 Misc validation signature for C:\WINDOWS\SoftwareDistribution\AuthCabs\Downloaded\7971f918-a847-4430-9279-4a52d1efe18d.auth.cab.temp\muauth.cab:
    2012-11-08 12:45:29:557 1124 5 a 8 Misc Microsoft signed: Yes
    2012-11-08 12:45:29:839 1112 764 Misc = logging initialized (build: 7.6.7600.256, tz: + 1300) =.
    2012-11-08 12:45:29:839 1112 764 Misc = process: C:\WINDOWS\system32\wuauclt.exe
    2012-11-08 12:45:29:839 1112 764 Misc = Module: C:\WINDOWS\system32\wuaueng.dll
    Properties of the update service DtaStor 1112 764 2012 12:45:29:839 / 11 / 08: registered with AU service is {7971F918-A847-4430-9279-4A52D1EFE18D}
    2012-11-08 12:45:29:839 1424 COMAPI e68 - added service, URL = http://www.update.microsoft.com/microsoftupdate/
    2012-11-08 12:45:29:839 1424 e68 COMAPI - COMAPI: IUpdateServiceManager::RegisterServiceWithAU -.
    2012-11-08 12:45:29:839 1424 e68 COMAPI - ServiceId = {7971f918-a847-4430-9279-4a52d1efe18d}
    2012-11-08 12:45:29:886 1424 e68 Misc = logging initialized (build: 7.6.7600.257, tz: + 1300) =.
    2012-11-08 12:45:29:886 1424 e68 Misc = process: C:\Program may Explorer\IEXPLORE. EXE
    2012-11-08 12:45:29:886 1424 e68 Misc = Module: C:\WINDOWS\system32\muweb.dll
    2012-11-08 12:45:29:886 1424 e68 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2012-11-08 12:45:29:964 1424 e68 Misc Microsoft signed: Yes
    2012-11-08 12:45:30:026 1424 e68 Misc WARNING: DownloadFileInternal failed for http://download.windowsupdate.com/v9/1/windowsupdate/redir/muv4wuredir.cab: error 0 x 80190194
    2012-11-08 12:45:30:026 1424 e68 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2012-11-08 12:45:30:042 1424 e68 Misc Microsoft signed: Yes
    2012-11-08 12:45:30:089 1424 e68 Misc WARNING: DownloadFileInternal failed for http://download.microsoft.com/v9/1/windowsupdate/redir/muv4wuredir.cab: error 0 x 80190194
    2012-11-08 12:45:30:089 1424 e68 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2012-11-08 12:45:30:104 1424 e68 Misc Microsoft signed: Yes
    2012-11-08 12:45:31:401 1424 e68 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2012-11-08 12:45:31:417 1424 e68 Misc Microsoft signed: Yes
    2012-11-08 12:45:31:433 1424 e68 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WebSetup\wuident.cab:
    2012-11-08 12:45:31:464 1424 e68 Misc Microsoft signed: Yes
    2012-11-08 12:45:33:480 1424 e68 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WebSetup\wuident.cab:
    2012-11-08 12:45:33:495 1424 e68 Misc Microsoft signed: Yes
    2012-11-08 12:45:33:714 1424 e68 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WebSetup\wsus3setup.cab:
    2012-11-08 12:45:33:730 1424 e68 Misc Microsoft signed: Yes
    2012-11-08 12:45:33:745 1424 e68 Setup * configuration: check if it is necessary to update *.
    2012-11-08 12:45:33:745 1424 e68 Setup * Inf file: C:\WINDOWS\SoftwareDistribution\WebSetup\wsus3setup.inf
    2012-11-08 12:45:33:777 1424 e68 installation NOT required for the C:\WINDOWS\system32\wuweb.dll update: target = 7.6.7600.257, required version = 7.0.6000.381 version
    2012-11-08 12:45:33:777 1424 e68 Setup * IsUpdateRequired = No
    2012-11-08 12:45:33:808 1424 e68 Misc = logging initialized (build: 7.6.7600.257, tz: + 1300) =.
    2012-11-08 12:45:33:808 1424 e68 Misc = process: C:\Program may Explorer\IEXPLORE. EXE
    2012-11-08 12:45:33:808 1424 e68 Misc = Module: C:\WINDOWS\system32\wuweb.dll
    2012-11-08 12:45:33:808 1424 e68 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2012-11-08 12:45:33:824 1424 e68 Misc Microsoft signed: Yes
    2012-11-08 12:45:33:855 1424 e68 Misc WARNING: DownloadFileInternal failed for http://download.windowsupdate.com/v9/1/windowsupdate/redir/muv4wuredir.cab: error 0 x 80190194
    2012-11-08 12:45:33:855 1424 e68 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2012-11-08 12:45:33:870 1424 e68 Misc Microsoft signed: Yes
    2012-11-08 12:45:33:917 1424 e68 Misc WARNING: DownloadFileInternal failed for http://download.microsoft.com/v9/1/windowsupdate/redir/muv4wuredir.cab: error 0 x 80190194
    2012-11-08 12:45:33:917 1424 e68 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2012-11-08 12:45:33:933 1424 e68 Misc Microsoft signed: Yes
    2012-11-08 12:45:34:120 1424 e68 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2012-11-08 12:45:34:136 1424 e68 Misc Microsoft signed: Yes
    2012-11-08 12:45:34:136 1424 e68 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WebSetup\wuident.cab:
    2012-11-08 12:45:34:152 1424 e68 Misc Microsoft signed: Yes
    2012-11-08 12:45:34:402 1424 e68 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WebSetup\wuident.cab:
    2012-11-08 12:45:34:417 1424 e68 Misc Microsoft signed: Yes
    2012-11-08 12:45:34:417 1424 e68 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WebSetup\wsus3setup.cab:
    2012-11-08 12:45:34:433 1424 e68 Misc Microsoft signed: Yes
    2012-11-08 12:45:34:433 1424 e68 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WebSetup\wsus3setup.cab:
    2012-11-08 12:45:34:449 1424 e68 Misc Microsoft signed: Yes
    2012-11-08 12:45:34:464 1424 e68 Setup * configuration: check if it is necessary to update *.
    2012-11-08 12:45:34:464 1424 e68 Setup * Inf file: C:\WINDOWS\SoftwareDistribution\WebSetup\wsus3setup.inf
    2012-11-08 12:45:34:480 1424 e68 installation NOT required for the C:\WINDOWS\system32\cdm.dll update: target = 7.6.7600.256, = 7.6.7600.256 required version version
    2012-11-08 12:45:34:480 1424 e68 installation NOT required for the C:\WINDOWS\system32\wuapi.dll update: target = 7.6.7600.256, = 7.6.7600.256 required version version
    2012-11-08 12:45:34:511 1424 e68 installation NOT required for the C:\WINDOWS\system32\wuapi.dll.mui update: target = 7.6.7600.256, = 7.6.7600.256 required version version
    2012-11-08 12:45:34:511 1424 e68 installation NOT required for C:\WINDOWS\system32\wuauclt.exe update: target = 7.6.7600.256, = 7.6.7600.256 required version version
    2012-11-08 12:45:34:511 1424 e68 installation NOT required for the C:\WINDOWS\system32\wuaucpl.cpl update: target = 7.6.7600.256, = 7.6.7600.256 required version version
    2012-11-08 12:45:34:527 1424 e68 installation NOT required for the C:\WINDOWS\system32\wuaucpl.cpl.mui update: target = 7.6.7600.256, = 7.6.7600.256 required version version
    2012-11-08 12:45:34:527 1424 e68 installation NOT required for the C:\WINDOWS\system32\wuaueng.dll update: target = 7.6.7600.256, = 7.6.7600.256 required version version
    2012-11-08 12:45:34:542 1424 e68 installation NOT required for the C:\WINDOWS\system32\wuaueng.dll.mui update: target = 7.6.7600.256, = 7.6.7600.256 required version version
    2012-11-08 12:45:34:542 1424 e68 installation NOT required for the C:\WINDOWS\system32\wucltui.dll update: target = 7.6.7600.256, = 7.6.7600.256 required version version
    2012-11-08 12:45:34:574 1424 e68 installation NOT required for the C:\WINDOWS\system32\wucltui.dll.mui update: target = 7.6.7600.256, = 7.6.7600.256 required version version
    2012-11-08 12:45:34:574 1424 e68 installation NOT required for the C:\WINDOWS\system32\wups.dll update: target = 7.6.7600.256, = 7.6.7600.256 required version version
    2012-11-08 12:45:34:574 1424 e68 installation NOT required for the C:\WINDOWS\system32\wups2.dll update: target = 7.6.7600.256, = 7.6.7600.256 required version version
    2012-11-08 12:45:34:574 1424 e68 Setup * IsUpdateRequired = No
    2012-11-08 12:45:39:387 1424 e68 COMAPI-
    2012-11-08 12:45:39:387 1424 e68 COMAPI - START - COMAPI: search [ClientId = MicrosoftUpdate]
    2012-11-08 12:45:39:387 1424 e68 COMAPI-
    2012-11-08 12:45:39:402 1124 e84 Agent *.
    2012-11-08 12:45:39:402 1424 COMAPI e68<-- submitted="" --="" comapi:="" search="" [clientid="">
    2012-11-08 12:45:39:402 1124 e84 Agent * START * Agent: finding updates [CallerId = MicrosoftUpdate] of
    2012-11-08 12:45:39:402 1124 e84 Agent *.
    2012-11-08 12:45:39:402 1124 e84 Agent * Online = Yes; Ignore download priority = No
    2012-11-08 12:45:39:402 1124 e84 Agent * criteria = "IsInstalled = 0 and IsHidden = 0".
    2012-11-08 12:45:39:402 1124 e84 Agent * ServiceID = {7971F918-A847-4430-9279-4A52D1EFE18D} third service
    2012-11-08 12:45:39:402 1124 e84 Agent * Search Scope = {Machine}
    2012-11-08 12:45:39:418 1124 e84 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2012-11-08 12:45:39:434 1124 e84 Misc Microsoft signed: Yes
    2012-11-08 12:45:39:465 1124 e84 Misc WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0 x 80190194
    2012-11-08 12:45:39:465 1124 e84 Misc WARNING: WinHttp: ShouldFileBeDownloaded failed with 0 x 80190194
    2012-11-08 12:45:39:465 1124 e84 Misc WARNING: DownloadFileInternal failed for http://download.windowsupdate.com/v9/1/windowsupdate/redir/muv4wuredir.cab: error 0 x 80190194
    2012-11-08 12:45:39:465 1124 e84 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2012-11-08 12:45:39:480 1124 e84 Misc Microsoft signed: Yes
    2012-11-08 12:45:39:512 1124 e84 Misc WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0 x 80190194
    2012-11-08 12:45:39:512 1124 e84 Misc WARNING: WinHttp: ShouldFileBeDownloaded failed with 0 x 80190194
    2012-11-08 12:45:39:512 1124 e84 Misc WARNING: DownloadFileInternal failed for http://download.microsoft.com/v9/1/windowsupdate/redir/muv4wuredir.cab: error 0 x 80190194
    2012-11-08 12:45:39:512 1124 e84 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2012-11-08 12:45:39:512 1124 e84 Misc Microsoft signed: Yes
    2012-11-08 12:45:39:902 1124 e84 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\muv4wuredir.cab:
    2012-11-08 12:45:39:902 1124 e84 Misc Microsoft signed: Yes
    2012-11-08 12:45:39:918 1124 e84 Agent looking for updates auth cab for 7971f918-a847-4430-9279-4a52d1efe18d to http://ds.download.windowsupdate.com/v10/1/microsoftupdate/redir/muauth.cab service
    2012-11-08 12:45:39:918 1124 e84 Misc validation signature for C:\WINDOWS\SoftwareDistribution\AuthCabs\authcab.cab:
    2012-11-08 12:45:39:934 1124 e84 Misc Microsoft signed: Yes
    2012-11-08 12:45:39:965 1124 e84 Misc validation signature for C:\WINDOWS\SoftwareDistribution\AuthCabs\authcab.cab:
    2012-11-08 12:45:39:980 1124 e84 Misc Microsoft signed: Yes
    2012-11-08 12:45:39:980 1124 e84 Misc validation signature for C:\WINDOWS\SoftwareDistribution\AuthCabs\authcab.cab:
    2012-11-08 12:45:39:996 1124 e84 Misc Microsoft signed: Yes
    Properties of the update service DtaStor 1112 764 2012 12:45:39:996 / 11 / 08: registered with AU service is {7971F918-A847-4430-9279-4A52D1EFE18D}
    2012-11-08 12:45:46:731 1124 e84 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WuRedir\7971F918-A847-4430-9279-4A52D1EFE18D\muredir.cab:
    2012-11-08 12:45:46:762 1124 e84 Misc Microsoft signed: Yes
    2012-11-08 12:45:46:778 1124 e84 Misc validation signature for C:\WINDOWS\SoftwareDistribution\WuRedir\7971F918-A847-4430-9279-4A52D1EFE18D\muredir.cab:
    2012-11-08 12:45:46:778 1124 e84 Misc Microsoft signed: Yes
    2012-11-08 12:45:46:794 1124 e84 PT +++ PT: Synchronizing server updates +++
    2012-11-08 12:45:46:794 1124 e84 PT + ServiceId = {7971F918-A847-4430-9279-4A52D1EFE18D}, URL of the server = https://update.microsoft.com/v6/ClientWebService/client.asmx
    2012-11-08 12:45:57:826 1124 e84 PT WARNING: ECP: could not validate the downloaded cab file digest from http://download.windowsupdate.com/msdownload/update/common/2012/04/4977235_28b8de5708f29a19b05b4f954e8cea567b534478.cab with error 0 x 80091007
    2012-11-08 12:45:57:826 1124 e84 PT WARNING: ECP: this trip contained some optimized updates failed. New number of update = 25, old Count = 30
    2012-11-08 12:46:04:061 1124 e84 PT WARNING: synchronization of updates: 0x8024402f
    2012-11-08 12:46:04:061 1124 e84 PT WARNING: SyncServerUpdatesInternal failed: 0x8024402f
    2012-11-08 12:46:04:061 1124 e84 Agent * WARNING: could not synchronize, error = 0x8024402F
    2012-11-08 12:46:04:061 524-1124 (non-interactive) Offline detection trigger
    2012-11-08 12:46:04:061 524-1124 TO THE #.
    2012-11-08 12:46:04:061 524-1124 to THE # START # to THE: research updates
    2012-11-08 12:46:04:061 524-1124 TO THE #.
    AU 12:46:04:061 524 1124 2012-11-08<## submitted="" ##="" au:="" search="" for="" updates="" [callid="">
    2012-11-08 12:46:04:092 1124 e84 Agent * WARNING: exit code = 0x8024402F
    2012-11-08 12:46:04:092 1124 e84 Agent *.
    2012-11-08 12:46:04:092 1124 e84 Agent * END * Agent: finding updates [CallerId = MicrosoftUpdate] of
    2012-11-08 12:46:04:092 1124 e84 Agent *.
    2012-11-08 12:46:04:092 1124 e84 Agent WARNING: customer WU didn't search for the update with error 0x8024402f
    2012-11-08 12:46:04:108 1124 e84 Agent *.
    2012-11-08 12:46:04:108 1124 e84 Agent * START * Agent: finding updates [CallerId = AutomaticUpdates]
    2012-11-08 12:46:04:108 1124 e84 Agent *.
    2012-11-08 12:46:04:108 1124 e84 Agent * Online = No; Ignore download priority = No
    2012-11-08 12:46:04:108 1124 e84 Agent * criteria = "IsHidden = 0 and IsInstalled = 0 and DeploymentAction = 'Installation' and IsAssigned = 1 or IsHidden = 0 and IsPresent = 1 and DeploymentAction = 'Uninstall' and IsAssigned = 1 or IsHidden = 0 and IsInstalled = 1 and DeploymentAction = 'Installation' and IsAssigned = 1 and = 1 RebootRequired or IsHidden = 0 and IsInstalled = 0 and DeploymentAction = 'Uninstall' and IsAssigned = 1 and = 1 RebootRequired."
    2012-11-08 12:46:04:108 1124 e84 Agent * ServiceID = {7971F918-A847-4430-9279-4A52D1EFE18D} third service
    2012-11-08 12:46:04:108 1124 e84 Agent * Search Scope = {Machine}
    2012-11-08 12:46:04:124 1424 6bc COMAPI > COMAPI - RECOVERY -: search [ClientId = MicrosoftUpdate]
    2012-11-08 12:46:04:124 1424 6bc COMAPI - updates found = 0
    2012-11-08 12:46:04:124 1424 6bc COMAPI - WARNING: exit code = 0x00000000, result code = 0x8024402F
    2012-11-08 12:46:04:124 1424 6bc COMAPI-
    2012-11-08 12:46:04:124 1424 6bc COMAPI - END--COMAPI: search [ClientId = MicrosoftUpdate]
    2012-11-08 12:46:04:124 1424 6bc COMAPI-
    2012-11-08 12:46:04:171 1424 e68 COMAPI WARNING: operation failed because the previous error, hr = 8024402F
    2012-11-08 12:46:04:171 1424 e68 COMAPI FATALE: impossible search asynchronous complete. (hr = 8024402F)
    2012-11-08 12:46:14:734 1124 e84 Agent update {1428A603-509C-40D6-B5C0-3108687BA385}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {9F3DD20A-1004-470E-BA65-3DC62D982958}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {28BC880E-0592-4CBF-8F95-C79B17911D5F}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {68623613-134C-4B18-BCEC-7497AC1BFCB0}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {1E602215-B397-46CA-B1A8-7EA0059517BC}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {ED036C16-1BD6-43AB-B546-87C080DFD819}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {935C5617-D17A-37CC-DBCF-423E5BEAB8EA}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {7145181B-9556-4B11-B659-0162FA9DF11F}.51 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {0580151D-FD22-4401-AA2B-CE1E3AE62BC9}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {0FA1201D-4330-4FA8-8AE9-B877473B6441}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {69E6D51D-1462-42E0-95E8-9C889AD82909}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {CD5FFD1E-E932-4E3A-BF74-18BF0B1BBD83}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {E7BA9D21-4C88-4F88-94CB-A23488E59EBD}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {5E870422-BD8F-4FD2-96D3-9C5D9AAFDA22}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {5EF2C723-3E0B-4F87-B719-78B027E38087}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {1403F223-A63F-F572-82BA-C92391218055}.113 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {B54E7D24-7ADD-428F-8B75-90A396FA584F}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {0D675426-E657-48AF-A8EF-ED65B58975FE}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {6D992428-3B47-4957-BB1A-157BD8C73D38}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {E0789628-CE08-4437-BE74-2495B842F43B}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {4E487029-F550-4C22-8B31-9173F3F95786}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {23F5EB29-DDC6-4263-9958-CF032644DEEA}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {C8C19432-F207-4D9D-AB10-764F3D29744D}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {7FFF3336-2479-4623-A697-BCEFCF1B9F92}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {56309036-4C77-4DD9-951A-99EE9C246A94}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {2B496C37-F722-4E7B-8467-A7AD1E29E7C1}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {B52EF437-21A1-4FBA-9FD0-15D242F19FE5}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {35C4463B-35DC-42AC-B0BA-1D9B5C505DE2}.103 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {6ED4A93E-E443-4965-B666-5BC7149F793C}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {EA5C4346-B59B-49D6-BC51-A8E457A3A601}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {523A2448-8B6C-458B-9336-307E1DF6D6A6}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {B567E54E-648B-4AC6-9171-149A19A73DA8}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {E6CF1350-C01B-414D-A61F-263D14D133B4}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {504AE250-57C5-484A-8A10-A2C35EA0689B}.102 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {F76B7F51-B762-4FD0-A35C-E04F582ACF42}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {CB090352-C615-4C0F-A2AB-E86220921A2E}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {116A3557-3847-4858-9F03-38E94B977456}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {B3D0AF68-8A86-4BFC-B458-AF702F35930E}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {78F4E068-1609-4E7A-AC8E-174288FA70A1}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {4F93EB69-8B97-4677-8DE4-D3FCA7ED10E6}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {BF93416A-5128-433E-B31C-70057E7AD6F4}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {477B856E-65C4-4473-B621-A8B230BB70D9}.105 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {CA9E8C72-81C4-11DC-8284-F47156D89593}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {8BC19572-A4B6-4910-B70D-716FECFFC1EB}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {0A4C6C73-8887-4D7F-9CBE-D08FA8FA9D1E}.51 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {2A42BA79-317B-469F-91DF-BDB315C99FC4}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {FE729F7E-3945-11DC-8E0C-CD1356D89593}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {EC231084-85C2-4DAF-BFC4-50BBE4022257}.102 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {2425DE84-F071-4358-AAC9-6BBD6E0BFAA7}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {60916385-7546-4E9B-836E-79D65E517BAB}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {48CE8C86-6850-4F68-8E9D-7DC8535CED60}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {8508AF86-B85E-450F-A518-3B6F8F204EEA}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {03C7C488-F8ED-496C-B6E0-BE608ABB8A79}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {7A62BA8B-E865-47CB-9F43-075EF26AF7B4}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {23B3DA8B-060E-4517-A431-3CB10F040794}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {B0C3B58D-1997-4B68-8D73-AB77F721D099}.202 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {AFD77D9E-F05A-431C-889A-34C23C9F9AF5}.103 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {041E4F9F-3A3D-4F58-8B2F-5E6FE95C4591}.126 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {2AF51AA0-509A-4B1D-9218-7E7508F05EC3}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {EC9AACA2-F868-4F06-B201-FB8EEFD84CEF}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {68C5B0A3-D1A6-4553-AE49-01D3A7827828}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {A36724A5-DA1A-47B2-B8BE-95E7CD9BC909}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {26A5D0A5-B108-46F1-93FA-F2A9CF10D029}.102 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {41DCE4A6-71DD-4A02-BB36-76984107376D}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {22BF57A8-4FE1-425F-BDAA-32B4F655284B}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {F8C3C9A9-10DE-4F09-BC16-5EB1B861FB4C}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {377473AF-531B-4FAB-AD0F-5A60A4A947C4}.103 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {6964AAB4-C5B5-43BD-A17D-FFB4346A8E1D}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {04D85AC2-C29F-4414-9CB6-5BCD6C059070}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {558F4BC3-4827-49E1-ACCF-EA79FD72D4C9}.102 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {EBFC1FC5-71A4-4F7B-9ACA-3B9A503104A0}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {42A2ADC5-2930-4E96-A6F5-FE888B739A6F}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {9F9B1ACE-A810-11DB-BAD5-F7F555D89593}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {B4832BD8-E735-4761-8DAF-37F882276DAB}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {A0C687DC-5AA5-11DD-940F-554E56D89593}.100 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {EEF074E9-61D6-4DAC-B102-3DBE15FFF3EA}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {0F3412F2-3405-4D86-A0FF-0EDE802227A8}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {9476D3F6-A119-4D6E-9952-8AD28A55BBA6}.101 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:734 1124 e84 Agent update {C96C35FC-A21F-481B-917C-10C4F64792CB}.102 has no local extended metadata. Do not return.
    2012-11-08 12:46:14:750 1124 e84 Agent * found 0 updates day and 0 categories in the search. evaluated Appl. rules of 469 out of 1392 deployed entities
    2012-11-08 12:46:14:750 1124 e84 Agent *.
    2012-11-08 12:46:14:750 1124 e84 Agent * END * Agent: finding updates [CallerId = AutomaticUpdates]
    2012-11-08 12:46:14:750 1124 e84 Agent *.
    2012-11-08 12:46:14:766 1124 80 c to THE > # RETURN # to THE: research updates [CallId = {F1B38A61-FFF8-4D5A-8710-9CBE80988184}]
    2012-11-08 12:46:14:766 1124 e84 report REPORT EVENT: {D39657D6-D6C3-40E8-B985-3A0B3D955425} 2012-11-08 + 1300 1 148 101 12:46:04:092 {00000000-0000-0000-0000-000000000000} 0 software MicrosoftUpdate failure 8024402f from Windows Update Client sync did not detect with error 0x8024402f.
    2012-11-08 12:46:14:766 1124 80 c to # 0 updates detected
    2012-11-08 12:46:14:766 1124 80 C TO THE #.
    2012-11-08 12:46:14:766 1124 80 c to # END # in THE: research updates [CallId = {F1B38A61-FFF8-4D5A-8710-9CBE80988184}]
    2012-11-08 12:46:14:766 1124 80 C TO THE #.
    2012-11-08 12:46:14:766 1124 80 c to THE present notification is disabled.
    2012-11-08 12:46:14:766 1124 80 c time of installation to THE adjustment to THE planned for 2012-11-08 06:00

    Hello

    Thanks for posting the question in the Microsoft Community.

    I apologise for the inconvenience.

    The question you have posted better suited in the TechNet Forums.

    Here is the link:

    http://social.technet.Microsoft.com/forums/en/category/w7itpro, windowsvistaitpro, windowsxpitpro, windowsintune

    Hope the helps of information. Please respond to help you further.

  • Windows Vista Home Premium SP2 32-bit not updated, the error code 80070005.

    Windows Vista Home Premium SP2 32-bit not updated, the error code 80070005.  Have tried little about everything without success. AV is Microsoft Security Essentials, Norton has preloaded, ran Norton total clean. Don't know the last updated time to race day, I re-load of updates (right term?) who cleaned the logs.  Have the free version of Malwarebytes, run regularly, nothing comes.

    Fixed, had run as before, but didn't save Subinacl desktop instead of folder mentioned in fix

  • On Win 7 after update itunes Error Message error 7 (Windows error 127) whenever I have start download iTunes

    On Win 7 after update itunes Error Message error 7 (Windows error 127) whenever I have start download iTunes

    HI MikeGeorgen,

    I understand that you have updated iTunes on your Windows 7 computer, but now you see an error when you try to open it. I know it's important to have iTunes working properly, so you can sync your device, so I'm happy to help you.

    Make sure that you logged in as an administrator on your computer, and that you have the latest Windows updates. Then check out the additional troubleshooting steps that are listed here:

    Remove and reinstall iTunes and the components of the software for Windows 7 and later versions

    Thank you for using communities Support from Apple. See you soon!

  • Windows Vista update 80070490 error code

    Hello

    Can someone help me with this problem! I tried everything under the Sun to fix this, so I hope you is more aware that me can help! ??

    Hello

    This issue of update Vista seems to be known to Microsoft:

    + If you receive the Windows Update 80070490 error, this means that a file (CBS Manifest) that is needed to install updates is corrupt. To correct this problem, you will need repair Windows. Repair Windows will not damage your personal files or the programs that are installed on your computer. +

    More details here how to solve this problem:

    [Windows Update 80070490 error code: http://windows.microsoft.com/en-us/windows-vista/windows-update-error-80070490]

  • Pavilion dv7-6b20ex: since the upgrade to windows 10 I get the update message error 0 x 80240017 Windows Defender

    hi..

    Since the upgrade to windows 10 I get the update message error 0 x 80240017 Windows Defender

    I hope to have useful response... Thank you

    This letter specifically;

    Updated definition for Windows Defender - error (definition 1.203.2341.0) KB2267602 - 0 x 80240017

    Updated definition for Windows Defender - error (definition 1.203.2341.0) KB2267602 - 0 x 80240017

    https://support.Microsoft.com/en-us/KB/918355

  • I have a 2008 standard server, installing kb2585542 last updated security. error code is 80070005. my server is 32-bit xenon.

    original title: kb2585542

    I have a 2008 standard server, installing kb2585542 last updated security. error code is 80070005. my server is 32-bit xenon.

    THX

    kg

    Hello

    Your question is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for Windows Server on TechNet forum
    http://social.technet.Microsoft.com/forums/en-us/winserverwsus/threads

  • Vista update problems, error 80072EFE code

    When trying to get updates happen error 80072EFE code and I can't update Windows or essential as I keep are redirected to other sites (Wal-Mart and computer repair shops in my area)

    When trying to get updates happen error 80072EFE code and I can't update Windows or essential as I keep are redirected to other sites (Wal-Mart and computer repair shops in my area)

    Without guarantees, but the success reported using TDSSKiller.exe which will remove the malware, which belongs to the 'family' Rootkit.Win32.TDSS, of your machine.
    Here is the link:
    http://support.Kaspersky.com/viruses/solutions?QID=208280684

    You can read this link error code 80072efe reagarding responses.
    It confirms the result of the use of TDSSkiller.exe to remove malicious software
    Reference link:

    For the benefits of others looking for answers, please mark as answer suggestion if it solves your problem.

  • Updates Windows error 80072efe

    My laptop says that it cannot check the updates, the error message is: 80072EFE. I looked through the various error messages and I saw this one on the list.

    My laptop says that it cannot check the updates, the error message is: 80072EFE. I looked through the various error messages and I saw this one on the list.

    Hey saswaros

    read the information on the microsoft link all rectify your problem 80072EFE below update

    http://support.Microsoft.com/kb/836941

    Walter, the time zone traveller

  • Windows 7 could not search for new updates code error C80003FA

    I just activated Windows 7. When I tried to update, I have "Windows 7 could not search for new updates C80003FA error code".

    Tried three times with the same result. Could someone, please?

    C80003FA ReadVerifyFailure - a read verification error occurred.

    1. What is the suite of security/antivirus installed?
    2 is a 3rd party firewall installed?
    3 - is an upgrade to another edition of Windows?

    Please click on the round of departure. In the search field type programs and files in wups2.dll

    Under programs right click wups2.dll and choose Properties, when the Properties window opens, click the Details tab.
    Version of the file and the product should be showing 7.4.7600.226
    Now do the same for c:\windows\system32\wuaueng.dll
    He, too, should show file version and product like 7.4.7600.226
     
    If the version is earlier than that, you will need to install the more recent Version of the Windows Update Agent.
    The easiest way to do this is therefore download and Save the Fixit found here - How to reset the Windows Update components?
    Once the download completes close all open programs and browsers.
    Run MicrosoftFixit50202.msi and choose its default mode.

    BUT, if the installed firewall antivirus/security suite or a 3rd party is causing the "reading check error" then the Fixit may/does not work.
    If this is the case, then Configure the system to boot after download and Save the Fixit.
    Then, run the Fixit after the reboot to clean boot state.
    Restart and Cancel the clean boot steps, restart again to normal Windows mode.

    NOTE:
    in the boot minimum state all the 3rd party firewalls will be disabled. When you run the Fixit either unplug the system from it is the network connection or make sure the native firewall of Windows 7 is now on by opening the control panel > Windows Firewall.

    Expert MowGreen Windows IT Pro - consumer safety

Maybe you are looking for