Failure running IP due to missing entry in RSSDBATCH

I am getting failures of some IPs due to the fact that there is no entry in table RSSDBATCH for the IP.
The IPs are set to 'Start Data load immediately', it is the first time these IPs have been run on this system. I have tried DataSource replication and reactivation of transfer rules and this has made no difference.
We are on SAP NetWeaver 2004s.
Can anyone help?
Thanks
Gill

Well, it's kind of logical that as you put more jar files (classes) in Tomcat, it changes the error to ask for the classes (inside a jar) it cannot find.
There was a good class->jar finder on the internet some years ago, but i don't remember the address. Try looking for that and search all the missing classes (NotDefined) and their correspondig jar files.
Good Luck!

Similar Messages

  • I always receive receive a message onscreen Error in C\WINDOWS\SYSTEM32\SPOOL\DRIVERS\W32X86\3\DLCFtime.dll have to click on run. Would like missing entry permanently installed on computer file

    I always receive a message onscreen Error in C\WINDOWS\SYSTEM32\SPOOL\DRIVERS\W32X86\3\DLCFtime.dll
    Missing entry: Run DLL entry
    I then click onto the run box below the message and then can access my homepage by double clicking on the Mozilla icon.
    Can anybody tell me how to get the missing entry permanently into my programme files?

    Probably problem with Dell printer,DLCFtime.dll is part of Dell printer driver software, maybe you must update the driver or re-install the software, read here for more information:
    http://answers.microsoft.com/en-us/windows/forum/windows_vista-performance/missing-entry-run-dll-entry/dd6f8f71-ad23-4eff-8a9d-ac8b86d9a199
    http://support.euro.dell.com/support/topics/global.aspx/support/kcs/document?c=uk&l=en&s=gen&docid=DSN_28E393B4B4A5ADEEE040A68F5B2849AA&isLegacy=true
    http://www.tek-tips.com/viewthread.cfm?qid=1396261
    http://forums.majorgeeks.com/showthread.php?t=229356
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • Error in third party posting due to missing entry in T51R6_FUNDINFO

    Hi,
    We are getting error "No entry in table T51R6_FUNDINFO for key xxxxx" while doing third party posting on a particular due date.I tried undo evaluation run through program RPURMD00 but getting a error message "partially posted evaluation runs can not be deleted/undone/reversed". Has anyone faced this issue before and has the solution for it?
    Thanks,
    Monika

    Hi Maddy,
    If your issue is not solved, please continue the same old thread instead of creating a new thread. This helps others to follow the discussion and understand the process to resolve the issue.
    You have posted this same thread twice and please remove one before the moderator locks it.
    Regards,
    Ravi

  • Problems running servlet due to missing classes?

    Hi everyone,
    I am doing a project which requires me to convert a java coding into a servlet. This java coding I am working on is some kind of location based service which tracks people (receiving an argument of a string as IP). It imports an external SDK called Ekahau SDK (some off the shelve product). Now I wish to convert it into a servlet so that the function that the java coding performs can be run from a webpage i created.
    I have previously posted a thread on this forum called "Converting java coding into servlets?" when I had trouble compiling the servlet. Now that I could compile the servlet already, I still have problems running the servlet from my browser.
    The webserver I am using is Apache Tomcat. Previously I was trying Apache HTTP server but since now I need to use servlet, I have shifted to Tomcat instead. I have been getting these "java.lang.NoClassDefFoundError:" when running the servlet from the browser. From the previous thread, I got suggestions from the replies saying that I need to put the jar files I need into my "C:\Tomcat\webapps\try\WEB-INF\lib" directory. I have been looking for the missing jar files from the internet and putting them into my "C:\Tomcat\webapps\try\WEB-INF\lib", but each time after adding a new jar file, I get another new "java.lang.NoClassDefFoundError:". Are the missing jar files really the problems? Cause it seems a bit weird to me that I need some many jar files which I dont even know why I need them for.
    The HTTP status 500 error look like this:
    description
    The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Servlet execution threw an exception
    root cause
    java.lang.NoClassDefFoundError: org/apache/excalibur/configuration/CascadingConfiguration
    com.ekahau.G.N.A(Unknown Source)
    com.ekahau.G.N.<init>(Unknown Source)
    com.ekahau.sdk.imp.yax.D.<init>(Unknown Source)
    com.ekahau.sdk.imp.yax.E.connect(Unknown Source)
    com.ekahau.sdk.PositioningEngine.connect(Unknown Source)
    coreservlets.testing.find(testing.java:75)
    coreservlets.testing.doGet(testing.java:36)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    Here are the series of jar files I have been looking from the internet to add them into my "C:\Tomcat\webapps\try\WEB-INF\lib" directory:
    1) org/apache/commons/collections/Closure
    2) org/apache/log4j/Logger
    3) org/apache/commons/lang/Validate
    4) org/apache/excalibur/configuration/CascadingConfiguration
    Please help~~ Thanks a lot.
    My servlet coding is like this:
    package coreservlets;
    import java.io.*;
    import java.util.*;
    import java.io.IOException;
    import java.io.PrintWriter;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import com.ekahau.sdk.*;
    public class testing extends HttpServlet
         String ipAddress;
         int result;
           public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
                  ipAddress = request.getParameter("deviceIP");
              try
                   result = find();     
              catch (IOException e)
                   System.out.println("Error..." + e.toString());
              catch (EngineException e)
                   System.out.println("Error..." + e.toString());
              response.setContentType("text/html");
                  PrintWriter write = response.getWriter();
              write.println("<HTML>\n" +
    "<HEAD><TITLE>Tryget</TITLE></HEAD>\n" +
    "<BODY BGCOLOR=\"#FDF5E6\">\n" +
    result +
    "</BODY></HTML>");
           public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
                  doGet(request, response);
         public int find() throws EngineException, IOException
              PositioningEngine.connect();
                  // Find the given device:
                  Device[] devices = PositioningEngine.findDevice("NETWORK.IP-ADDRESS", ipAddress);
                  if (devices.length == 0)
                         System.err.println("Device with IP address " + ipAddress + " not found.");
                   PositioningEngine.disconnect();
                   return 0;
              else
                         TrackedDevice device = new TrackedDevice(devices[0]);
                         // Create a simple handler for locations for one-time usage:
                         LocationEstimateListener estimateListener = new LocationEstimateListener()
                           public void handleLocationEstimate(LocationEstimate locationEstimate, TrackedDevice device)
                                  // Change getLatestLocation to getAccurateLocation if you want
                                  // a bit more accurate but a few seconds delayed location.
                                  Location loc = locationEstimate.getLatestLocation();
                             final double coX = loc.getX();
                             final double coY = loc.getY();
                             try{
                             FileWriter file = new FileWriter ("C:\\Documents and Settings\\xamule\\Desktop\\Testing\\output\\output.txt");
                             String x = Double.toString(coX);
                             String y = Double.toString(coY);
                             String coor = x + "\t" + y;
                             file.write(coor);
                             file.close();
                             catch (IOException e){
                             System.out.println("Error..." + e.toString());
                   StatusListener statusListener = new StatusListener()
                           public void handleStatus(Status status, TrackedDevice device)
                                  System.err.println(new Date()+"\tStatus for device: " + status);
                         // Add listeners and start tracking
                         device.addLocationEstimateListener(estimateListener);
                         device.addStatusListener(statusListener);
                         device.setTrackingParameter("EPE.LOCATION_UPDATE_INTERVAL","6000");
                         device.setTracking(true);
                         // Wait until user inputs something. When he/she does, stop tracking and quit application
                         //BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                         //in.readLine();
                         // Stop tracking and disconnect from the positioning engine:
                         device.setTracking(false);
                         PositioningEngine.disconnect();
                   return 1;
    }

    Well, it's kind of logical that as you put more jar files (classes) in Tomcat, it changes the error to ask for the classes (inside a jar) it cannot find.
    There was a good class->jar finder on the internet some years ago, but i don't remember the address. Try looking for that and search all the missing classes (NotDefined) and their correspondig jar files.
    Good Luck!

  • Due to attribute change run(sid's is missing)...process chain is failed

    Hi All,
    Due to attribute change run (SID's is missing) process chain is failed.kindly suggest me how we can rectify for this issue.
    Thanks
    Ragav

    if master data is loading at same time while the attr/hier change run is occuring,it cause the change run to fail.
    Usually u get error message like..user ALEREMOTE has locked the MD tables..
    Wait for some time and then try attr change run manually by going to rsa1->tools->apply hier/attr change..
    if it still shows locked..try to see in rsmo if a MD load has got stuck..
    else..see in sm12 to find lock is on which tables..
    last resort..delete lock forcefully from sm12..
    first option is wait for some time and give a try again..
    cheers,
    Vishvesh

  • Datafile not restored due to missing or corrupt data

    Hi all,
    I was asked to restore a RMAN backup which we got from another region, the rman backup contains controlfiles and datafiles as compressed backupset.
    oracle version is 10.2.0.3.0
    aix version 6
    First, I have restored the control file using the below command:
    run
    +{+
    allocate channel t1 type disk;
    restore controlfile from '/oracle/app/prod/rman/cf_t799873684_s17_p1';
    alter database mount;
    +}+
    Second, I have cataloged the backup piece:
    catalog backuppiece '/oracle/app/prod/rman/df_t794754324_s12_p1';
    catalog backuppiece '/oracle/app/prod/rman/df_t793567544_s13_p1';
    catalog backuppiece '/oracle/app/prod/rman/df_t731097654_s14_p1';
    catalog backuppiece '/oracle/app/prod/rman/df_t792538698_s15_p1';
    catalog backuppiece '/oracle/app/prod/rman/df_t792183472_s16_p1';
    catalog backuppiece '/oracle/app/prod/rman/cf_t799873684_s17_p1';
    Third, used below command to restore:
    +run {+
    allocate channel t1 type disk;
    allocate channel t2 type disk;
    allocate channel t3 type disk;
    allocate channel t4 type disk;
    set newname for datafile 01 to '/oracle/app/oradata/dbprod/system01.dbf';
    set newname for datafile 02 to '/oracle/app/oradata/dbprod/undotbs01.dbf';
    set newname for datafile 03 to '/oracle/app/oradata/dbprod/sysaux01.dbf';
    set newname for datafile 04 to '/oracle/app/oradata/dbprod/users01.dbf';
    set newname for datafile 06 to '/oracle/app/oradata/dbprod/datafile005.dbf';
    set newname for datafile 07 to '/oracle/app/oradata/dbprod/datafile006.dbf';
    set newname for datafile 08 to '/oracle/app/oradata/dbprod/datafile007.dbf';
    set newname for datafile 09 to '/oracle/app/oradata/dbprod/datafile008.dbf';
    set newname for datafile 10 to '/oracle/app/oradata/dbprod/datafile009.dbf';
    set newname for datafile 11 to '/oracle/app/oradata/dbprod/datafile010.dbf';
    set newname for datafile 14 to '/oracle/app/oradata/dbprod/datafile001.dbf';
    set newname for datafile 15 to '/oracle/app/oradata/dbprod/datafile002.dbf';
    set newname for datafile 16 to '/oracle/app/oradata/dbprod/datafile003.dbf';
    set newname for datafile 17 to '/oracle/app/oradata/dbprod/datafile004.dbf';
    set newname for datafile 18 to '/oracle/app/oradata/dbprod/indfile001.dbf';
    set newname for datafile 19 to '/oracle/app/oradata/dbprod/indfile002.dbf';
    set newname for datafile 20 to '/oracle/app/oradata/dbprod/indfile011.dbf';
    restore database;
    switch datafile all;
    recover database;
    +}+
    But while restoring, I got error like below:
    Starting restore at 22-OCT-12
    channel t1: starting datafile backupset restore
    channel t1: specifying datafile(s) to restore from backup set
    restoring datafile 00004 to /glotam3/oracle10g/oradata/T24DEV3/users01.dbf
    restoring datafile 00007 to /glotam3/oracle10g/oradata/T24DEV3/datafile006.dbf
    restoring datafile 00011 to /glotam3/oracle10g/oradata/T24DEV3/datafile010.dbf
    restoring datafile 00012 to /glotam3/oracle10g/oradata/T24DEV3/recop01.dbf
    restoring datafile 00014 to /glotam3/oracle10g/oradata/T24DEV3/datafile001.dbf
    channel t1: reading from backup piece /oracle/app/prod/rman/df_t793567544_s13_p1
    channel t2: starting datafile backupset restore
    channel t2: specifying datafile(s) to restore from backup set
    restoring datafile 00001 to /oracle/app/oradata/dbprod/system01.dbf
    restoring datafile 00003 to /oracle/app/oradata/dbprod/sysaux01.dbf
    restoring datafile 00008 to /oracle/app/oradata/dbprod/datafile007.dbf
    restoring datafile 00015 to /oracle/app/oradata/dbprod/datafile002.dbf
    restoring datafile 00018 to /oracle/app/oradata/dbprod/indfile001.dbf
    channel t2: reading from backup piece /oracle/app/prod/rman/df_t792538698_s15_p1
    channel t3: starting datafile backupset restore
    channel t3: specifying datafile(s) to restore from backup set
    restoring datafile 00002 to /oracle/app/oradata/dbprod/undotbs01.dbf
    restoring datafile 00009 to /oracle/app/oradata/dbprod/datafile008.dbf
    restoring datafile 00013 to /oracle/app/oradata/dbprod/prefstat01.dbf
    restoring datafile 00016 to /oracle/app/oradata/dbprod/datafile003.dbf
    restoring datafile 00019 to /oracle/app/oradata/dbprod/indfile002.dbf
    channel t3: reading from backup piece /oracle/app/prod/rman/df_t731097654_s14_p1
    channel t4: starting datafile backupset restore
    channel t4: specifying datafile(s) to restore from backup set
    restoring datafile 00006 to /oracle/app/oradata/dbprod/datafile005.dbf
    restoring datafile 00010 to /oracle/app/oradata/dbprod/datafile009.dbf
    restoring datafile 00017 to /oracle/app/oradata/dbprod/datafile004.dbf
    restoring datafile 00020 to /oracle/app/oradata/dbprod/indfile011.dbf
    channel t4: reading from backup piece /oracle/app/prod/rman/df_t794754324_s12_p1
    ORA-19870: error reading backup piece /oracle/app/prod/rman/
    df_t793567544_s13_p1
    ORA-19612: datafile 11 not restored due to missing or corrupt data
    channel t3: restored backup piece 1
    failover to piece handle=/oracle/app/prod/rman/
    df_t731097654_s14_p1 tag=TAG20120822T184703
    channel t3: restore complete, elapsed time: 01:06:05
    channel t2: restored backup piece 1
    failover to piece handle=/oracle/app/prod/rman/
    df_t792538698_s15_p1 tag=TAG20120822T184703
    channel t2: restore complete, elapsed time: 01:09:10
    ORA-19870: error reading backup piece /oracle/app/prod/rman/
    df_t794754324_s12_p1
    ORA-19612: datafile 20 not restored due to missing or corrupt data
    failover to previous backup
    released channel: t1
    released channel: t2
    released channel: t3
    released channel: t4
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 10/22/2012 15:11:23
    RMAN-06026: some targets not found - aborting restore
    RMAN-06023: no backup or copy of datafile 20 found to restore
    RMAN-06023: no backup or copy of datafile 17 found to restore
    RMAN-06023: no backup or copy of datafile 10 found to restore
    RMAN-06023: no backup or copy of datafile 6 found to restore
    RMAN>
    This same rman backup has been restored in other server, the commands were same but the db was not restored in my server.
    Kindly help me....
    Thanks in advance,
    nonuday

    Hi mseberg,
    When I executed the below command with same date. This is what is got and am not able to understand what it says.
    RMAN> run
    +{+
    SET UNTIL TIME "TO_DATE('10/22/2012','MM/DD/YYYY')";
    restore database preview;
    +}2> 3> 4> 5>+
    executing command: SET until clause
    Starting restore at 23-OCT-12
    using channel ORA_DISK_1
    List of Backup Sets
    +===================+
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    +8 Full 11.68G DISK 02:10:15 22-AUG-12+
    BP Key: 18   Status: AVAILABLE  Compressed: YES  Tag: TAG20120822T184703
    Piece Name: /oracle/app/prod/rman/df_t793567544_s13_p1
    List of Datafiles in backup set 8
    File LV Type Ckp SCN    Ckp Time  Name
    +4 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/users01.dbf+
    +7 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/datafile006.dbf+
    +11 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/datafile010.dbf+
    +12 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/recop01.dbf+
    +14 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/datafile001.dbf+
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    +10 Full 11.35G DISK 02:15:49 22-AUG-12+
    BP Key: 16   Status: AVAILABLE  Compressed: YES  Tag: TAG20120822T184703
    Piece Name: /oracle/app/prod/rman/df_t792538698_s15_p1
    List of Datafiles in backup set 10
    File LV Type Ckp SCN    Ckp Time  Name
    +1 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/system01.dbf+
    +3 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/sysaux01.dbf+
    +8 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/datafile007.dbf+
    +15 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/datafile002.dbf+
    +18 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/indfile001.dbf+
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    +11 Full 10.78G DISK 02:20:07 22-AUG-12+
    BP Key: 15   Status: AVAILABLE  Compressed: YES  Tag: TAG20120822T184703
    Piece Name: /oracle/app/prod/rman/df_t731097654_s14_p1
    List of Datafiles in backup set 11
    File LV Type Ckp SCN    Ckp Time  Name
    +2 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/undotbs01.dbf+
    +9 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/datafile008.dbf+
    +13 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/prefstat01.dbf+
    +16 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/datafile003.dbf+
    +19 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/indfile002.dbf+
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    +12 Full 16.83G DISK 03:25:43 22-AUG-12+
    BP Key: 14   Status: AVAILABLE  Compressed: YES  Tag: TAG20120822T184703
    Piece Name: /oracle/app/prod/rman/df_t794754324_s12_p1
    List of Datafiles in backup set 12
    File LV Type Ckp SCN    Ckp Time  Name
    +6 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/datafile005.dbf+
    +10 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/datafile009.dbf+
    +17 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/datafile004.dbf+
    +20 Full 30013719101 16-AUG-12 /u01/oradata/dbproddata/datafile011.dbf+
    archive logs generated after SCN 30013719101 not found in repository
    Media recovery start SCN is 30013719101
    Recovery must be done beyond SCN 30013719101 to clear data files fuzziness
    Finished restore at 23-OCT-12
    RMAN>
    Thanks for reply,
    Nonuday

  • HP Officejet Pro 8500 A 910 - Missing entry: RunDLLEntry

    Each time I boot up my computer, I get the following error message on the Desktop:
    Error in C:\Program Files\HP\HP Officejet Pro 8500 A 910\bin\HPStatusBL.dll Missing entry: RunDLLEntry
    I can't find this file. I uninstalled the printer and reinstalled it - and still get the message.
    How do I fix it?

    Hi Sunriver10,
    I see you are getting the Error "C:\Program Files\HP\HP Officejet Pro 8500 A 910\bin\HPStatusBL.dll Missing entry: RunDLLEntry" when you boot up your computer.
    I will be happy to help you.
    Hold down the Windows Logo key () on the keyboard and the 'R' to open the run box, type %temp%.
    Delete all files and folders from the temp folder. Choose skip if any pop ups appear saying any of the files could not be deleted.
    Uninstall the software again - Uninstalling the Printer Software.
    When the uninstall has completed restart the computer.
    Follow these steps to reset the registry settings and options for Windows Installer.
    Hold down the Windows Logo key on the keyboard and the 'R' to open the run box
    In the Openbox, type msiexec /unregister, and then click OK.
    Hold down the Windows Logo key on the keyboard and the 'R' to open the run box.
    In the Open box, type msiexec /regserver, and then click OK.
    If you have any difficulty with this step, please use this link to perform it another way.
    Restarting Windows Installer.
    Run Disk cleanup from Accessories\ System Tool <How to Delete files using Disk Cleanup
    Download and install the latest version of Adobe flash player http://www.adobe.com/support/flashplayer/downloads.html
    Restart the computer.
    Do a msconfig and turn off any start up programs and Antivirus Software before running the Wizard.
    Turn then on again after. How to use MSCONFIG.
    Download and run the HP Printer Install Wizard for Windows.
    The HP Printer Install Wizard for Window was created to help Windows 7, Windows 8, and Windows 8.1 users download and install the latest and most appropriate HP software solution for their HP Printer.
    Please let me know if this does resolve the issue.
    Thank you for posting on the HP Forums.
    Have a great day.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • ORA-19612: datafile 0 not restored due to missing data

    Hello,
    I'm testing a restore of the controlfile. The database is in archivelog mode and autobackup is set to ON. I successfully did a full backup and backup as copy database.
    To test I did the following:
    - note the DBID
    - shutdown the database
    - renamed both controlfiles:
    $ mv /u02/rcat/control01.ctl /u02/rcat/control01.ctl_old
    $ mv /u02/fra/rcat/control02.ctl /u02/fra/rcat/control02.ctl_old
    When I try to restore the controlfile form autobackup I receive the following error. What could be reason please?
    [rcat@oel54]$ rman target /
    Recovery Manager: Release 11.2.0.1.0 - Production on Fri Dec 10 00:07:41 2010
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: RCAT (not mounted)
    RMAN> set dbid 502889862;
    executing command: SET DBID
    RMAN> restore controlfile from autobackup;
    Starting restore at 10-DEC-10
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=19 device type=DISK
    recovery area destination: /u02/fra
    database name (or database unique name) used for search: RCAT
    channel ORA_DISK_1: AUTOBACKUP /u02/fra/RCAT/autobackup/2010_12_09/o1_mf_s_737336682_6j2pyv2l_.bkp found in the recovery area
    channel ORA_DISK_1: looking for AUTOBACKUP on day: 20101210
    channel ORA_DISK_1: looking for AUTOBACKUP on day: 20101209
    channel ORA_DISK_1: restoring control file from AUTOBACKUP /u02/fra/RCAT/autobackup/2010_12_09/o1_mf_s_737336682_6j2pyv2l_.bkp
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 12/10/2010 00:09:55
    ORA-19870: error while restoring backup piece /u02/fra/RCAT/autobackup/2010_12_09/o1_mf_s_737336682_6j2pyv2l_.bkp
    ORA-19612: datafile 0 not restored due to missing data
    $ ll /u02/fra/RCAT/autobackup/2010_12_09/o1_mf_s_737336682_6j2pyv2l_.bkp
    -rw-r----- 1 oracle dba 10354688 Dec  9 23:44 /u02/fra/RCAT/autobackup/2010_12_09/o1_mf_s_737336682_6j2pyv2l_.bkpThanks!

    The file was indeed corrupted as below will show.
    Very strange. Perhaps something with the latest Virtualbox or the SSD/hybrid harddrive. (host MacOSX 10.6, guest Oracle Linux 5.5 UEK)
    $ mv /u02/rcat/control01.ctl_old /u02/rcat/control01.ctl
    $ mv /u02/fra/rcat/control02.ctl_old /u02/fra/rcat/control02.ctl
    SQL> startup mount
    ORACLE instance started.
    SQL> recover database;
    ORA-00283: recovery session canceled due to errors
    ORA-00264: no recovery required
    SQL> alter database open;
    Database altered.
    $ rman target /
    connected to target database: RCAT (DBID=502889862)
    RMAN> backup current controlfile;
    piece handle=/u02/fra/RCAT/backupset/2010_12_10/o1_mf_ncnnf_TAG20101210T012420_6j2wsoko_.bkp
    Finished backup at 10-DEC-10
    Starting Control File and SPFILE Autobackup at 10-DEC-10
    piece handle=/u02/fra/RCAT/autobackup/2010_12_10/o1_mf_s_737342662_6j2wspvf_.bkp comment=NONE
    Finished Control File and SPFILE Autobackup at 10-DEC-10
    RMAN> restore validate controlfile;
    piece handle=/u02/fra/RCAT/autobackup/2010_12_10/o1_mf_s_737342662_6j2wspvf_.bkp tag=TAG20101210T012422
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: validation complete, elapsed time: 00:00:02
    Finished restore at 10-DEC-10
    SQL> shutdown immediate
    $ mv /u02/rcat/control01.ctl /u02/rcat/control01.ctl_old
    $ mv /u02/fra/rcat/control02.ctl /u02/fra/rcat/control02.ctl_old
    SQL> startup nomount
    $ rman target /
    connected to target database: RCAT (not mounted)
    RMAN> set dbid 502889862;
    RMAN> restore controlfile from autobackup;
    Starting restore at 10-DEC-10
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=19 device type=DISK
    recovery area destination: /u02/fra
    database name (or database unique name) used for search: RCAT
    channel ORA_DISK_1: AUTOBACKUP /u02/fra/RCAT/autobackup/2010_12_10/o1_mf_s_737342662_6j2wspvf_.bkp found in the recovery area
    channel ORA_DISK_1: looking for AUTOBACKUP on day: 20101210
    channel ORA_DISK_1: restoring control file from AUTOBACKUP /u02/fra/RCAT/autobackup/2010_12_10/o1_mf_s_737342662_6j2wspvf_.bkp
    channel ORA_DISK_1: control file restore from AUTOBACKUP complete
    output file name=/u02/rcat/control01.ctl
    output file name=/u02/fra/rcat/control02.ctl
    Finished restore at 10-DEC-10

  • WARNING - Attempting to resync due to missed delta reports (sp return code = 7)

    Hello,
    I have investigated and found out that there are more than 150 machines which are not reporting their H/W inventory.
    When checking on some of the machines, there are following entries in dataldr.log
    Processing Inventory for Machine: ABC   Version 44.2  Generated: 12/05/2014 11:42:15
    SMS_INVENTORY_DATA_LOADER 12/5/2014 4:13:09 PM
    15432 (0x3C48)
    Begin transaction: Machine=ABC(GUID:############)
    SMS_INVENTORY_DATA_LOADER 12/5/2014 4:13:09 PM
    15432 (0x3C48)
    WARNING - Attempting to resync due to missed delta reports (sp return code = 7)
    SMS_INVENTORY_DATA_LOADER 12/5/2014 4:13:09 PM
    15432 (0x3C48)
    Rollback transaction: Machine=ABC(GUID:#############)
    SMS_INVENTORY_DATA_LOADER 12/5/2014 4:13:09 PM
    15432 (0x3C48)
    SQL MESSAGE: spAddInventoryLog - Inventory Log for machine:ABC,Server:1.10,Client:44.2,Message:Missing Delta. Resync,Detail:
    SMS_INVENTORY_DATA_LOADER 12/5/2014 4:13:09 PM
    15432 (0x3C48)
    Remote client hardware inventory resync generated for client GUID:#############; update/insert result = 1
    SMS_INVENTORY_DATA_LOADER 12/5/2014 4:13:09 PM
    15432 (0x3C48)
    Send resync command to local site for machine GUID:#############.
    SMS_INVENTORY_DATA_LOADER 12/5/2014 4:13:09 PM
    15432 (0x3C48)
    STATMSG: ID=2722 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_INVENTORY_DATA_LOADER" SYS=<primary server> SITE=SiteCode PID=19068 TID=15432 GMTDATE=Fri Dec 05 10:43:09.184 2014 ISTR0="ABC" ISTR1="" ISTR2=""
    ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0
    SMS_INVENTORY_DATA_LOADER 12/5/2014 4:13:09 PM
    15432 (0x3C48)
    Cannot process MIF XHAOPNXZQ.MIF, moving it to C:\Program Files\Microsoft Configuration Manager\inboxes\auth\dataldr.box\BADMIFS\DeltaMismatch\1ub4cajr.MIF
    SMS_INVENTORY_DATA_LOADER 12/5/2014 4:13:09 PM
    15432 (0x3C48)

    Hey Garth,
    I have forced the full inventory already but here are the results.
    Inventoryagent.log - Before the full inventory
    Inventory: *********************** Start of message processing. ***********************
    InventoryAgent 12/6/2014 6:23:14 PM
    5776 (0x1690)
    Inventory: Message type is InventoryAction InventoryAgent
    12/6/2014 6:23:15 PM 5776 (0x1690)
    Inventory: Temp directory = C:\Windows\CCM\Inventory\Temp\
    InventoryAgent 12/6/2014 6:23:15 PM
    5776 (0x1690)
    Inventory: Clearing old collected files. InventoryAgent
    12/6/2014 6:23:15 PM 5776 (0x1690)
    Inventory: Opening store for action {00000000-0000-0000-0000-000000000001} ...
    InventoryAgent 12/6/2014 6:23:15 PM
    5776 (0x1690)
    Inventory: Action=Hardware, ReportType=Delta, MajorVersion=48, MinorVersion=1
    InventoryAgent 12/6/2014 6:24:09 PM
    5776 (0x1690)
    Inventory: Initialization completed in 54.553 seconds
    InventoryAgent 12/6/2014 6:24:09 PM
    5776 (0x1690)
    Inventoryagent.log - Full Inventory
    Inventory: *********************** Start of message processing. ***********************
    InventoryAgent 12/6/2014 6:31:11 PM
    5668 (0x1624)
    Inventory: Message type is InventoryAction InventoryAgent
    12/6/2014 6:31:11 PM 5668 (0x1624)
    Inventory: Temp directory = C:\Windows\CCM\Inventory\Temp\
    InventoryAgent 12/6/2014 6:31:11 PM
    5668 (0x1624)
    Inventory: Clearing old collected files. InventoryAgent
    12/6/2014 6:31:11 PM 5668 (0x1624)
    Inventory: Opening store for action {00000000-0000-0000-0000-000000000001} ...
    InventoryAgent 12/6/2014 6:31:11 PM
    5668 (0x1624)
    CInvState::VerifyInventoryVersionNumber: Mismatch found for '{00000000-0000-0000-0000-000000000001}': 48.1 vs. 0.0
    InventoryAgent 12/6/2014 6:32:05 PM
    5668 (0x1624)
    Inventory: Version number mismatch; will do a Full report.
    InventoryAgent 12/6/2014 6:32:05 PM
    5668 (0x1624)
    Inventory: Action=Hardware, ReportType=ReSync, MajorVersion=49, MinorVersion=0
    InventoryAgent 12/6/2014 6:32:05 PM
    5668 (0x1624)
    Inventory: Initialization completed in 53.212 seconds
    InventoryAgent 12/6/2014 6:32:05 PM
    5668 (0x1624)
    *+*+*++*+*+*+
    *+*+*+*+*+*+
    Collection: 57/69 inventory data items successfully inventoried.
    InventoryAgent 12/6/2014 6:32:29 PM
    6596 (0x19C4)
    Inventory: Collection Task completed in 23.993 seconds
    InventoryAgent 12/6/2014 6:32:29 PM
    6596 (0x19C4)
    Inventory: 12 Collection Task(s) failed. InventoryAgent
    12/6/2014 6:32:29 PM 6596 (0x19C4)
    Inventory: Temp report = C:\Windows\CCM\Inventory\Temp\d3d81696-58c0-4313-a108-258996a0a75f.xml
    InventoryAgent 12/6/2014 6:32:29 PM
    6596 (0x19C4)
    dataldr.log
    *** [22001][8152][Microsoft][SQL Server Native Client 11.0][SQL Server]String or binary data would be truncated. : pINSTALLED_SOFTWARE_DATA
    SMS_INVENTORY_DATA_LOADER 12/6/2014 3:03:16 PM
    11696 (0x2DB0)
    ERROR - SQL Error in SMS_INVENTORY_DATA_LOADER
    12/6/2014 3:03:16 PM 11696 (0x2DB0)
    ERROR - is NOT retyrable. SMS_INVENTORY_DATA_LOADER
    12/6/2014 3:03:16 PM 11696 (0x2DB0)
    Rollback transaction: Machine=ABC(GUID:EE4DB508-7271-4568-9A6D-0C4A64569AE4)
    SMS_INVENTORY_DATA_LOADER 12/6/2014 3:03:16 PM
    11696 (0x2DB0)
    Cannot process MIF XHFR7KJDQ.MIF, moving it to C:\Program Files\Microsoft Configuration Manager\inboxes\auth\dataldr.box\BADMIFS\ErrorCode_4\hnue114o.MIF
    SMS_INVENTORY_DATA_LOADER 12/6/2014 3:03:16 PM
    11696 (0x2DB0)
    STATMSG: ID=2703 SEV=W LEV=M SOURCE="SMS Server" COMP="SMS_INVENTORY_DATA_LOADER" SYS=PRIMARY SERVER SITE=SITECODE PID=12272 TID=11696 GMTDATE=Sat Dec 06 09:33:16.513 2014 ISTR0="XHFR7KJDQ.MIF" ISTR1="C:\Program Files\Microsoft
    Configuration Manager\inboxes\auth\dataldr.box\BADMIFS\ErrorCode_4\hnue114o.MIF" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0
    SMS_INVENTORY_DATA_LOADER 12/6/2014 3:03:16 PM
    11696 (0x2DB0)
    The error here is C:\Program Files\Microsoft Configuration Manager\inboxes\auth\dataldr.box\BADMIFS\ErrorCode_4, but it is different for other machines where i tried the full inventory.

  • Admin is unabled to install Flash ActiveX due to missing rights

    Hello!
    I have been using FlashPlayer ActiveX for a very long time without any problems. Now I tried to upgrade to 11.2.202.253 ActiveX and received the fllowing error message:
    "A neccesary file (C:\Windows\system32\Macromed\Flash\FlashUtil32_11_2_202_235_ActiveX.exe:5) could not be written due to missing access rights
    ." (I translated this from the orinial german error message, so the original english one might look different).
    This happens on Windows 7 32bit Home Premium.
    I am logged in with admin-rights (in fact I have tried with three diferent admin account).
    The Flashplugin for Firefox installe without any problem.
    Here is my flashinstalllog:
    =O====== M/11.2.202.235 2012-05-21+13-23-59.004 ========
    0000 [I] 00000010 "D:\Users\Public\install_flash_player_ax_32bit.exe"
    0001 [W] 00001036 Software\Macromedia\FlashPlayer\SafeVersions/11.0 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 [W] 00001036 Software\Macromedia\FlashPlayer\SafeVersions/11.0 2
    0004 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0005 [I] 00000020 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0006 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0007 [I] 00000013 C:\Windows\system32\Macromed\Flash\Flash32_11_2_202_235.ocx
    0008 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil32_11_2_202_235_ActiveX.exe
    0009 [E] 00001031 C:\Windows\system32\Macromed\Flash\FlashUtil32_11_2_202_235_ActiveX.exe:5
    0010 [I] 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil32_11_2_202_235_ActiveX.dll
    0011 [W] 00001026 C:\Windows\system32\Macromed\Flash\FlashUtil32_11_2_202_235_ActiveX.dll 5
    0012 [I] 00000021 C:\Windows\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0013 [W] 00001106
    0014 [W] 00001106
    =X====== M/11.2.202.235 2012-05-21+13-30-03.038 ========
    Any ideas / any help?
    Thanks!

    Hello!
    I have followed both instructions and tried to install FlashPlayer again. Unfortuately nothing changed:
    while the PlugIn for Firefox/Opera/... installs without any problems, the ActiveX-Installation has the same error message. The OCX-file is placed in the installation directory though, but it is not registered as the installation fails.
    I will copy the flashinstall.log of the new installation ans a report recorded by Processmonitor (as CSV). I hope somebody can help!
    flashinstall.log:
    =O====== M/11.2.202.235 2012-05-22+19-11-05.554 ========
    0000 [W] 00001113 C:\Windows\system32\Macromed\Flash\\* 3
    0001 [I] 00000010 "D:\Users\root\Desktop\BI\install_flash_player_ax_32bit.exe"
    0002 [W] 00001036 Software\Macromedia\FlashPlayer\SafeVersions/11.0 2
    0003 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 [W] 00001036 Software\Macromedia\FlashPlayer\SafeVersions/11.0 2
    0005 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0006 [I] 00000020 C:\Windows\system32\FlashPlayerCPLApp.cpl
    0007 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0008 [I] 00000013 C:\Windows\system32\Macromed\Flash\Flash32_11_2_202_235.ocx
    0009 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil32_11_2_202_235_ActiveX.exe
    0010 [E] 00001031 C:\Windows\system32\Macromed\Flash\FlashUtil32_11_2_202_235_ActiveX.exe:5
    0011 [I] 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil32_11_2_202_235_ActiveX.dll
    0012 [W] 00001026 C:\Windows\system32\Macromed\Flash\FlashUtil32_11_2_202_235_ActiveX.dll 5
    0013 [I] 00000021 C:\Windows\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    =X====== M/11.2.202.235 2012-05-22+19-11-25.990 ========
    procmon-report:
    "Time of Day","Process Name","PID","Operation","Path","Result","Detail"
    "21:14:06,7367309","install_flash_player_ax_32bit.exe","2432","CreateFile","C:\Windows\Pre fetch\INSTALL_FLASH_PLAYER_AX_32BIT-F2B2A34F.pf","NAME NOT FOUND","Desired Access: Generic Read, Disposition: Open, Options: Synchronous IO Non-Alert, Attributes: n/a, ShareMode: None, AllocationSize: n/a"
    "21:14:15,5201705","install_flash_player_ax_32bit.exe","624","CreateFile","C:\Windows\Pref etch\INSTALL_FLASH_PLAYER_AX_32BIT-F2B2A34F.pf","NAME NOT FOUND","Desired Access: Generic Read, Disposition: Open, Options: Synchronous IO Non-Alert, Attributes: n/a, ShareMode: None, AllocationSize: n/a"
    "21:14:15,5203269","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Control\Session Manager","REPARSE","Desired Access: Read"
    "21:14:15,5253714","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Control\SafeBoot\Option","REPARSE","Desired Access: Query Value, Set Value"
    "21:14:15,5254022","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Control\SafeBoot\Option","NAME NOT FOUND","Desired Access: Query Value, Set Value"
    "21:14:15,5254355","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Control\Srp\GP\DLL","REPARSE","Desired Access: Read"
    "21:14:15,5254552","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Control\Srp\GP\DLL","NAME NOT FOUND","Desired Access: Read"
    "21:14:15,5255371","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Policies\Microsoft\Windows\safer\codeidentifiers\TransparentEnabled","NAME NOT FOUND","Length: 80"
    "21:14:15,5255888","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKCU\Software\P olicies\Microsoft\Windows\Safer\CodeIdentifiers","NAME NOT FOUND","Desired Access: Query Value"
    "21:14:15,5296590","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\sechost.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:15,5330118","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Control\Nls\Sorting\Versions","REPARSE","Desired Access: Read"
    "21:14:15,5331516","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Control\Session Manager","REPARSE","Desired Access: Query Value"
    "21:14:15,5331922","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\System\ CurrentControlSet\Control\Session Manager\SafeDllSearchMode","NAME NOT FOUND","Length: 16"
    "21:14:15,5344344","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\imm32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5356680","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\imm32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5368787","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\imm32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:15,5381259","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Control\Error Message Instrument","REPARSE","Desired Access: Read"
    "21:14:15,5381542","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Control\Error Message Instrument","NAME NOT FOUND","Desired Access: Read"
    "21:14:15,5382429","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\GRE_Initialize\DisableMetaFiles","NAME NOT FOUND","Length: 20"
    "21:14:15,5383506","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\Compatibility32\install_flash_player_ax_32bit","NAME NOT FOUND","Length: 172"
    "21:14:15,5383790","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\Software\M icrosoft\Windows NT\CurrentVersion\IME Compatibility","NAME NOT FOUND","Desired Access: Read"
    "21:14:15,5386130","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKCU\Control Panel\Desktop\MuiCached\MachineLanguageConfiguration","NAME NOT FOUND","Desired Access: Read"
    "21:14:15,5386629","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\Software\P olicies\Microsoft\MUI\Settings","NAME NOT FOUND","Desired Access: Read"
    "21:14:15,5387257","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKCU\Software\P olicies\Microsoft\Control Panel\Desktop","NAME NOT FOUND","Desired Access: Read"
    "21:14:15,5387762","install_flash_player_ax_32bit.exe","624","RegEnumValue","HKCU\Control Panel\Desktop\LanguageConfiguration","NO MORE ENTRIES","Index: 0, Length: 512"
    "21:14:15,5388156","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\Software\P olicies\Microsoft\MUI\Settings","NAME NOT FOUND","Desired Access: Read"
    "21:14:15,5388772","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKCU\Software\P olicies\Microsoft\Control Panel\Desktop","NAME NOT FOUND","Desired Access: Read"
    "21:14:15,5389246","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKCU\Control Panel\Desktop\PreferredUILanguages","NAME NOT FOUND","Length: 12"
    "21:14:15,5389918","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\Software\P olicies\Microsoft\MUI\Settings","NAME NOT FOUND","Desired Access: Read"
    "21:14:15,5390743","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKCU\Control Panel\Desktop\MuiCached\MachinePreferredUILanguages","BUFFER OVERFLOW","Length: 12"
    "21:14:15,5395873","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\Software\M icrosoft\Windows NT\CurrentVersion\Diagnostics","NAME NOT FOUND","Desired Access: Read"
    "21:14:15,5400904","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Ole\PageAllocatorUseSystemHeap","NAME NOT FOUND","Length: 144"
    "21:14:15,5401416","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Ole\PageAllocatorSystemHeapIsPrivate","NAME NOT FOUND","Length: 144"
    "21:14:15,5402167","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\Software\M icrosoft\OLE\Tracing","NAME NOT FOUND","Desired Access: Read"
    "21:14:15,5412889","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Progr am Files\ThreatFire\TFWAH.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:15,5417403","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\SideBySide\PreferExternalManifest","NAME NOT FOUND","Length: 20"
    "21:14:15,5440024","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\OLEAUT","NAME NOT FOUND","Desired Access: Query Value"
    "21:14:15,5440633","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\OLEAUT","NAME NOT FOUND","Desired Access: Query Value"
    "21:14:15,5446503","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Control\Nls\CustomLocale","REPARSE","Desired Access: Read"
    "21:14:15,5447001","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\System\ CurrentControlSet\Control\Nls\CustomLocale\de-DE","NAME NOT FOUND","Length: 532"
    "21:14:15,5447266","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Control\Nls\ExtendedLocale","REPARSE","Desired Access: Read"
    "21:14:15,5447654","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\System\ CurrentControlSet\Control\Nls\ExtendedLocale\de-DE","NAME NOT FOUND","Length: 532"
    "21:14:15,5452797","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\Globalization\Sorting\SortDefault.nls","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5462755","install_flash_player_ax_32bit.exe","624","QueryOpen","D:\Users\root\De sktop\BI\SspiCli.dll","NAME NOT FOUND",""
    "21:14:15,5474666","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\sspicli.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:15,5483257","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Rpc\MaxRpcSize","NAME NOT FOUND","Length: 144"
    "21:14:15,5483959","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Control\ComputerName\ActiveComputerName","REPARSE","Desired Access: Read"
    "21:14:15,5485714","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\Software\P olicies\Microsoft\Windows NT\Rpc","NAME NOT FOUND","Desired Access: Read"
    "21:14:15,5486158","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\Software\P olicies\Microsoft\SQMClient\Windows","NAME NOT FOUND","Desired Access: Read"
    "21:14:15,5499454","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\kernel32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5511476","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\KernelBase.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5520461","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\ntdll.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5532021","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\advapi32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5545416","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\kernel32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5579189","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\user32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5598503","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\kernel32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5619904","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\shell32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5693967","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\kernel32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5710977","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\user32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5724643","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\ntdll.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5740440","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\kernel32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5761163","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\user32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5793206","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\kernel32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5805690","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\ntdll.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5818524","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\advapi32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5837948","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\user32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5858684","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\kernel32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,5890019","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\advapi32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6001102","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\kernel32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6114192","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\advapi32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6136246","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\user32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6167562","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\kernel32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6218573","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\shell32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6275442","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\kernel32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6334201","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\advapi32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6390546","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\kernel32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6447673","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\user32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6492070","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\kernel32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6517511","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\advapi32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6545520","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\user32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6571165","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\kernel32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6666469","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{1AC14E77-02E7-4E5D-B744-2E B1AE5198B7}\ParentFolder","NAME NOT FOUND","Length: 144"
    "21:14:15,6666586","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{1AC14E77-02E7-4E5D-B744-2E B1AE5198B7}\Description","NAME NOT FOUND","Length: 144"
    "21:14:15,6666697","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{1AC14E77-02E7-4E5D-B744-2E B1AE5198B7}\RelativePath","NAME NOT FOUND","Length: 144"
    "21:14:15,6666801","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{1AC14E77-02E7-4E5D-B744-2E B1AE5198B7}\ParsingName","NAME NOT FOUND","Length: 144"
    "21:14:15,6666912","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{1AC14E77-02E7-4E5D-B744-2E B1AE5198B7}\InfoTip","NAME NOT FOUND","Length: 144"
    "21:14:15,6667017","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{1AC14E77-02E7-4E5D-B744-2E B1AE5198B7}\LocalizedName","NAME NOT FOUND","Length: 144"
    "21:14:15,6667122","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{1AC14E77-02E7-4E5D-B744-2E B1AE5198B7}\Icon","NAME NOT FOUND","Length: 144"
    "21:14:15,6667232","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{1AC14E77-02E7-4E5D-B744-2E B1AE5198B7}\Security","NAME NOT FOUND","Length: 144"
    "21:14:15,6667337","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{1AC14E77-02E7-4E5D-B744-2E B1AE5198B7}\StreamResource","NAME NOT FOUND","Length: 144"
    "21:14:15,6667442","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{1AC14E77-02E7-4E5D-B744-2E B1AE5198B7}\StreamResourceType","NAME NOT FOUND","Length: 144"
    "21:14:15,6667547","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{1AC14E77-02E7-4E5D-B744-2E B1AE5198B7}\LocalRedirectOnly","NAME NOT FOUND","Length: 144"
    "21:14:15,6667651","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{1AC14E77-02E7-4E5D-B744-2E B1AE5198B7}\Roamable","NAME NOT FOUND","Length: 144"
    "21:14:15,6667756","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{1AC14E77-02E7-4E5D-B744-2E B1AE5198B7}\PreCreate","NAME NOT FOUND","Length: 144"
    "21:14:15,6667861","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{1AC14E77-02E7-4E5D-B744-2E B1AE5198B7}\Stream","NAME NOT FOUND","Length: 144"
    "21:14:15,6667971","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{1AC14E77-02E7-4E5D-B744-2E B1AE5198B7}\PublishExpandedPath","NAME NOT FOUND","Length: 144"
    "21:14:15,6668082","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{1AC14E77-02E7-4E5D-B744-2E B1AE5198B7}\Attributes","NAME NOT FOUND","Length: 144"
    "21:14:15,6668187","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{1AC14E77-02E7-4E5D-B744-2E B1AE5198B7}\FolderTypeID","NAME NOT FOUND","Length: 144"
    "21:14:15,6668292","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{1AC14E77-02E7-4E5D-B744-2E B1AE5198B7}\InitFolderHandler","NAME NOT FOUND","Length: 144"
    "21:14:15,6674906","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\Software\M icrosoft\Windows\CurrentVersion\Explorer\KnownFolderSettings","NAME NOT FOUND","Desired Access: Query Value"
    "21:14:15,6675263","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\Software\M icrosoft\Windows\CurrentVersion\Explorer\KnownFolderSettings","NAME NOT FOUND","Desired Access: Query Value"
    "21:14:15,6685486","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\version.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6696307","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\version.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6707035","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\version.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:15,6753520","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\dwmapi.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6765240","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\dwmapi.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6776221","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\dwmapi.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:15,6823008","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\atl.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6963904","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\atl.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,6974743","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\atl.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:15,7176609","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\ntmarta.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,7491891","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\ntmarta.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,7503377","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\ntmarta.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:15,7530068","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Services\LDAP","REPARSE","Desired Access: Read"
    "21:14:15,7531140","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Services\LDAP","REPARSE","Desired Access: Read"
    "21:14:15,7531534","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\System\ CurrentControlSet\services\ldap\UseOldHostResolutionOrder","NAME NOT FOUND","Length: 144"
    "21:14:15,7531836","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Services\LDAP","REPARSE","Desired Access: Read"
    "21:14:15,7532218","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\System\ CurrentControlSet\services\ldap\UseHostnameAsAlias","NAME NOT FOUND","Length: 144"
    "21:14:15,7574219","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\winmm.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,7585323","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\winmm.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,7596088","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\winmm.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:15,7644458","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\dsound.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,7856800","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\dsound.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:15,7867737","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\dsound.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:15,9627054","install_flash_player_ax_32bit.exe","624","QueryOpen","D:\Users\root\De sktop\BI\POWRPROF.dll","NAME NOT FOUND",""
    "21:14:15,9644643","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\powrprof.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:15,9809859","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Setup\SourcePath","NAME NOT FOUND","Length: 144"
    "21:14:15,9814379","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\System\ CurrentControlSet\Control\WMI\Security\12e1ddac-7ebb-434f-bc58-54c27d745f8f","NAME NOT FOUND","Length: 524"
    "21:14:15,9861425","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\d3d9.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:16,0054878","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\d3d9.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:16,0066635","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\d3d9.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:16,0074105","install_flash_player_ax_32bit.exe","624","QueryOpen","D:\Users\root\De sktop\BI\d3d8thk.dll","NAME NOT FOUND",""
    "21:14:16,0083756","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\d3d8thk.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:16,2468883","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Control\GraphicsDrivers\Scheduler","REPARSE","Desired Access: Query Value"
    "21:14:16,2477739","install_flash_player_ax_32bit.exe","624","RegEnumKey","HKCU\Software\M icrosoft\Direct3D","NO MORE ENTRIES","Index: 1, Length: 288"
    "21:14:16,2479531","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Direct3D\Drivers\Size","NAME NOT FOUND","Length: 144"
    "21:14:16,2479710","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Direct3D\Drivers\Name","NAME NOT FOUND","Length: 144"
    "21:14:16,2480948","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Direct3D\DX6TextureEnumInclusionList\Size","NAME NOT FOUND","Length: 144"
    "21:14:16,2481120","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Direct3D\DX6TextureEnumInclusionList\Name","NAME NOT FOUND","Length: 144"
    "21:14:16,2481668","install_flash_player_ax_32bit.exe","624","RegEnumKey","HKLM\SOFTWARE\M icrosoft\Direct3D","NO MORE ENTRIES","Index: 3, Length: 288"
    "21:14:16,2482142","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKCU\Software\M icrosoft\Direct3D\Drivers","NAME NOT FOUND","Desired Access: Read"
    "21:14:16,2483664","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Direct3D\Drivers\Direct3D HAL\Size","NAME NOT FOUND","Length: 144"
    "21:14:16,2483916","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Direct3D\Drivers\Direct3D HAL\Name","NAME NOT FOUND","Length: 144"
    "21:14:16,2485092","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Direct3D\Drivers\Ramp Emulation\Size","NAME NOT FOUND","Length: 144"
    "21:14:16,2485308","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Direct3D\Drivers\Ramp Emulation\Name","NAME NOT FOUND","Length: 144"
    "21:14:16,2486453","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Direct3D\Drivers\RGB Emulation\Size","NAME NOT FOUND","Length: 144"
    "21:14:16,2486675","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Direct3D\Drivers\RGB Emulation\Name","NAME NOT FOUND","Length: 144"
    "21:14:16,2487014","install_flash_player_ax_32bit.exe","624","RegEnumKey","HKLM\SOFTWARE\M icrosoft\Direct3D\Drivers","NO MORE ENTRIES","Index: 3, Length: 288"
    "21:14:16,2488024","install_flash_player_ax_32bit.exe","624","RegEnumKey","HKCU\Software\M icrosoft\Direct3D","NO MORE ENTRIES","Index: 1, Length: 288"
    "21:14:16,2489471","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Direct3D\Drivers\Size","NAME NOT FOUND","Length: 144"
    "21:14:16,2489644","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Direct3D\Drivers\Name","NAME NOT FOUND","Length: 144"
    "21:14:16,2490684","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Direct3D\DX6TextureEnumInclusionList\Size","NAME NOT FOUND","Length: 144"
    "21:14:16,2490851","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Direct3D\DX6TextureEnumInclusionList\Name","NAME NOT FOUND","Length: 144"
    "21:14:16,2491393","install_flash_player_ax_32bit.exe","624","RegEnumKey","HKLM\SOFTWARE\M icrosoft\Direct3D","NO MORE ENTRIES","Index: 3, Length: 288"
    "21:14:16,2491879","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKCU\System\Cur rentControlSet\Control\GraphicsDrivers\Scheduler","NAME NOT FOUND","Desired Access: Read"
    "21:14:16,2492483","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Control\GraphicsDrivers\Scheduler","REPARSE","Desired Access: Read"
    "21:14:16,2493197","install_flash_player_ax_32bit.exe","624","RegEnumKey","HKLM\System\Cur rentControlSet\Control\GraphicsDrivers\Scheduler","NO MORE ENTRIES","Index: 0, Length: 288"
    "21:14:16,2497366","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\Software\P olicies\Microsoft\SQMClient\Windows","NAME NOT FOUND","Desired Access: Read"
    "21:14:16,2566848","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\mscms.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:16,3080092","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\mscms.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:16,3099146","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\mscms.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:16,4712806","install_flash_player_ax_32bit.exe","624","QueryOpen","D:\Users\root\De sktop\BI\USERENV.dll","NAME NOT FOUND",""
    "21:14:16,4735543","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\userenv.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:16,4748778","install_flash_player_ax_32bit.exe","624","QueryOpen","D:\Users\root\De sktop\BI\profapi.dll","NAME NOT FOUND",""
    "21:14:16,4768966","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\profapi.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:16,4836495","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\System\ CurrentControlSet\Control\WMI\Security\d53270e3-c8cf-4707-958a-dad20c90073c","NAME NOT FOUND","Length: 524"
    "21:14:16,4908409","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\ieframe.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:16,4940039","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\ieframe.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:16,4957911","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\ieframe.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:16,5474013","install_flash_player_ax_32bit.exe","624","QueryOpen","D:\Users\root\De sktop\BI\OLEACC.dll","NAME NOT FOUND",""
    "21:14:16,5490099","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\oleacc.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:16,6833724","install_flash_player_ax_32bit.exe","624","QueryOpen","D:\Users\root\De sktop\BI\OLEACCRC.DLL","NAME NOT FOUND",""
    "21:14:16,6846441","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\oleaccrc.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:16,7239334","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\SideBySide\PreferExternalManifest","NAME NOT FOUND","Length: 20"
    "21:14:16,7247753","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\Software\M icrosoft\Windows\CurrentVersion\SideBySide\AssemblyStorageRoots","NAME NOT FOUND","Desired Access: Enumerate Sub Keys"
    "21:14:16,7249496","install_flash_player_ax_32bit.exe","624","QueryOpen","D:\Users\root\De sktop\BI\install_flash_player_ax_32bit.exe.Local","NAME NOT FOUND",""
    "21:14:16,7271420","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e69 75e2bd6f2b2\comctl32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:16,7282302","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e69 75e2bd6f2b2\comctl32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:16,7293179","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e69 75e2bd6f2b2\comctl32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:16,7315996","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\WindowsShell.Manifest","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:16,7317517","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\SideBySide\PreferExternalManifest","NAME NOT FOUND","Length: 20"
    "21:14:16,7407260","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\oleaccrc.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:16,7420772","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\oleaccrc.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:16,7434081","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\oleaccrc.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:16,7488153","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\dbghelp.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:16,7501530","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\dbghelp.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:16,7514998","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\dbghelp.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:16,7575205","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\uxtheme.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:16,7590404","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\uxtheme.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:16,7605049","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\uxtheme.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:16,7745391","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{3EB685DB-65F9-4CF6-A03A-E3 EF65729F3D}\ParentFolder","NAME NOT FOUND","Length: 144"
    "21:14:16,7745551","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{3EB685DB-65F9-4CF6-A03A-E3 EF65729F3D}\Description","NAME NOT FOUND","Length: 144"
    "21:14:16,7745859","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{3EB685DB-65F9-4CF6-A03A-E3 EF65729F3D}\ParsingName","NAME NOT FOUND","Length: 144"
    "21:14:16,7746001","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{3EB685DB-65F9-4CF6-A03A-E3 EF65729F3D}\InfoTip","NAME NOT FOUND","Length: 144"
    "21:14:16,7746192","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{3EB685DB-65F9-4CF6-A03A-E3 EF65729F3D}\LocalizedName","NAME NOT FOUND","Length: 144"
    "21:14:16,7746321","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{3EB685DB-65F9-4CF6-A03A-E3 EF65729F3D}\Icon","NAME NOT FOUND","Length: 144"
    "21:14:16,7746450","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{3EB685DB-65F9-4CF6-A03A-E3 EF65729F3D}\Security","NAME NOT FOUND","Length: 144"
    "21:14:16,7746672","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{3EB685DB-65F9-4CF6-A03A-E3 EF65729F3D}\StreamResource","NAME NOT FOUND","Length: 144"
    "21:14:16,7746807","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{3EB685DB-65F9-4CF6-A03A-E3 EF65729F3D}\StreamResourceType","NAME NOT FOUND","Length: 144"
    "21:14:16,7746937","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{3EB685DB-65F9-4CF6-A03A-E3 EF65729F3D}\LocalRedirectOnly","NAME NOT FOUND","Length: 144"
    "21:14:16,7747078","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{3EB685DB-65F9-4CF6-A03A-E3 EF65729F3D}\Roamable","NAME NOT FOUND","Length: 144"
    "21:14:16,7747208","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{3EB685DB-65F9-4CF6-A03A-E3 EF65729F3D}\PreCreate","NAME NOT FOUND","Length: 144"
    "21:14:16,7747337","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{3EB685DB-65F9-4CF6-A03A-E3 EF65729F3D}\Stream","NAME NOT FOUND","Length: 144"
    "21:14:16,7747466","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{3EB685DB-65F9-4CF6-A03A-E3 EF65729F3D}\PublishExpandedPath","NAME NOT FOUND","Length: 144"
    "21:14:16,7747602","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{3EB685DB-65F9-4CF6-A03A-E3 EF65729F3D}\Attributes","NAME NOT FOUND","Length: 144"
    "21:14:16,7747737","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{3EB685DB-65F9-4CF6-A03A-E3 EF65729F3D}\FolderTypeID","NAME NOT FOUND","Length: 144"
    "21:14:16,7747873","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{3EB685DB-65F9-4CF6-A03A-E3 EF65729F3D}\InitFolderHandler","NAME NOT FOUND","Length: 144"
    "21:14:16,7748156","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{3EB685DB-65F9-4CF6-A03A-E3EF6 5729F3D}\PropertyBag","NAME NOT FOUND","Desired Access: Read"
    "21:14:16,7750170","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKCU\Software\M icrosoft\Windows\CurrentVersion\Explorer\SessionInfo\1\KnownFolders","NAME NOT FOUND","Desired Access: Query Value"
    "21:14:16,7797665","install_flash_player_ax_32bit.exe","624","QueryOpen","D:\Users\root\De sktop\BI\CRYPTBASE.dll","NAME NOT FOUND",""
    "21:14:16,7807463","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\cryptbase.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:16,8258185","install_flash_player_ax_32bit.exe","624","CreateFile","D:\Users\root\A ppData\Local\Temp\{32BB2EA0-F4EF-439D-8D66-33CF243C0647}\fpb.tmp","NAME NOT FOUND","Desired Access: Read Attributes, Disposition: Open, Options: , Attributes: N, ShareMode: Read, Write, Delete, AllocationSize: n/a"
    "21:14:17,9398281","install_flash_player_ax_32bit.exe","624","CreateFileMapping","D:\Users \root\AppData\Local\Temp\{32BB2EA0-F4EF-439D-8D66-33CF243C0647}\fpb.tmp","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:17,9403109","install_flash_player_ax_32bit.exe","624","CreateFileMapping","D:\Users \root\AppData\Local\Temp\{32BB2EA0-F4EF-439D-8D66-33CF243C0647}\fpb.tmp","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:17,9452643","install_flash_player_ax_32bit.exe","624","CreateFileMapping","D:\Users \root\AppData\Local\Temp\{32BB2EA0-F4EF-439D-8D66-33CF243C0647}\fpb.tmp","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:17,9736184","install_flash_player_ax_32bit.exe","624","CreateFile","D:\Users\root\A ppData\Local\Temp\{89CA96C1-C821-4327-A95A-2A9236E39AE9}\fpb.tmp","NAME NOT FOUND","Desired Access: Read Attributes, Disposition: Open, Options: , Attributes: N, ShareMode: Read, Write, Delete, AllocationSize: n/a"
    "21:14:18,0319784","install_flash_player_ax_32bit.exe","624","CreateFileMapping","D:\Users \root\AppData\Local\Temp\{89CA96C1-C821-4327-A95A-2A9236E39AE9}\fpb.tmp","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:18,0324359","install_flash_player_ax_32bit.exe","624","CreateFileMapping","D:\Users \root\AppData\Local\Temp\{89CA96C1-C821-4327-A95A-2A9236E39AE9}\fpb.tmp","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:18,0549764","install_flash_player_ax_32bit.exe","624","CreateFileMapping","D:\Users \root\AppData\Local\Temp\{89CA96C1-C821-4327-A95A-2A9236E39AE9}\fpb.tmp","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:18,0560763","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows\CurrentVersion\SideBySide\PreferExternalManifest","NAME NOT FOUND","Length: 20"
    "21:14:18,0601015","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SYSTEM\Cur rentControlSet\Services\crypt32","REPARSE","Desired Access: Read"
    "21:14:18,0601607","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\System\ CurrentControlSet\services\crypt32\DebugHeapFlags","NAME NOT FOUND","Length: 144"
    "21:14:18,0644415","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\wininet.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:18,0685788","install_flash_player_ax_32bit.exe","624","QueryDirectory","C:\Windows\ System32\Macromed\Flash","NO MORE FILES",""
    "21:14:18,0688467","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKCU\Softwar e\Macromedia\FlashPlayer\RerunInUIMode","NAME NOT FOUND","Length: 144"
    "21:14:18,0690888","install_flash_player_ax_32bit.exe","624","CreateFile","C:\Windows\Syst em32\Macromed\Flash\mms.cfg","NAME NOT FOUND","Desired Access: Generic Read, Disposition: Open, Options: Synchronous IO Non-Alert, Non-Directory File, Attributes: N, ShareMode: Read, AllocationSize: n/a"
    "21:14:18,0693622","install_flash_player_ax_32bit.exe","624","CreateFile","C:\Windows\Syst em32\mms.cfg","NAME NOT FOUND","Desired Access: Generic Read, Disposition: Open, Options: Synchronous IO Non-Alert, Non-Directory File, Attributes: N, ShareMode: Read, AllocationSize: n/a"
    "21:14:18,0696535","install_flash_player_ax_32bit.exe","624","RegDeleteValue","HKCU\Softwa re\Macromedia\FlashPlayer\ConflictingProcs","NAME NOT FOUND",""
    "21:14:18,0709314","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\msimg32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:18,0720923","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\msimg32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:18,0732612","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\msimg32.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_EXECUTE"
    "21:14:18,0805640","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\CTF\Compatibility\install_flash_player_ax_32bit.exe","NAME NOT FOUND","Desired Access: Read"
    "21:14:18,0817859","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\rpcss.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:18,0829443","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\System32\rpcss.dll","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:18,0839500","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\CTF\EnableAnchorContext","NAME NOT FOUND","Length: 144"
    "21:14:18,0841015","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\CTF\KnownClasses","NAME NOT FOUND","Desired Access: Read"
    "21:14:18,0870299","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\Software\M icrosoft\Windows\CurrentVersion\SideBySide\AssemblyStorageRoots","NAME NOT FOUND","Desired Access: Enumerate Sub Keys"
    "21:14:18,0872738","install_flash_player_ax_32bit.exe","624","QueryOpen","D:\Users\root\De sktop\BI\install_flash_player_ax_32bit.exe.Local","NAME NOT FOUND",""
    "21:14:18,0904486","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Control\Nls\Locale","REPARSE","Desired Access: Read"
    "21:14:18,0905175","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Control\Nls\Locale\Alternate Sorts","REPARSE","Desired Access: Read"
    "21:14:18,0905600","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\System\Cur rentControlSet\Control\Nls\Language Groups","REPARSE","Desired Access: Read"
    "21:14:18,0914438","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\Software\M acromedia\FlashPlayer\SafeVersions","NAME NOT FOUND","Desired Access: Read"
    "21:14:18,1106321","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\FontSubstitutes\Tahoma","NAME NOT FOUND","Length: 144"
    "21:14:18,1118884","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\LanguagePack\DataStore_V1.0\Disable","NAME NOT FOUND","Length: 144"
    "21:14:18,1125105","install_flash_player_ax_32bit.exe","624","CreateFileMapping","C:\Windo ws\Fonts\StaticCache.dat","FILE LOCKED WITH ONLY READERS","SyncType: SyncTypeCreateSection, PageProtection: PAGE_READONLY"
    "21:14:18,1223371","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\LanguagePack\SurrogateFallback\Plane1","NAME NOT FOUND","Length: 144"
    "21:14:18,1224018","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\LanguagePack\SurrogateFallback\Plane3","NAME NOT FOUND","Length: 144"
    "21:14:18,1224209","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\LanguagePack\SurrogateFallback\Plane4","NAME NOT FOUND","Length: 144"
    "21:14:18,1224387","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\LanguagePack\SurrogateFallback\Plane5","NAME NOT FOUND","Length: 144"
    "21:14:18,1224578","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\LanguagePack\SurrogateFallback\Plane6","NAME NOT FOUND","Length: 144"
    "21:14:18,1224757","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\LanguagePack\SurrogateFallback\Plane7","NAME NOT FOUND","Length: 144"
    "21:14:18,1224941","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\LanguagePack\SurrogateFallback\Plane8","NAME NOT FOUND","Length: 144"
    "21:14:18,1225126","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\LanguagePack\SurrogateFallback\Plane9","NAME NOT FOUND","Length: 144"
    "21:14:18,1225317","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\LanguagePack\SurrogateFallback\Plane10","NAME NOT FOUND","Length: 144"
    "21:14:18,1225508","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\LanguagePack\SurrogateFallback\Plane11","NAME NOT FOUND","Length: 144"
    "21:14:18,1225693","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\LanguagePack\SurrogateFallback\Plane12","NAME NOT FOUND","Length: 144"
    "21:14:18,1225878","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\LanguagePack\SurrogateFallback\Plane13","NAME NOT FOUND","Length: 144"
    "21:14:18,1226068","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\LanguagePack\SurrogateFallback\Plane14","NAME NOT FOUND","Length: 144"
    "21:14:18,1226253","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\LanguagePack\SurrogateFallback\Plane15","NAME NOT FOUND","Length: 144"
    "21:14:18,1226438","install_flash_player_ax_32bit.exe","624","RegQueryValue","HKLM\SOFTWAR E\Microsoft\Windows NT\CurrentVersion\LanguagePack\SurrogateFallback\Plane16","NAME NOT FOUND","Length: 144"
    "21:14:18,1229025","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows NT\CurrentVersion\LanguagePack\SurrogateFallback\Arial","NAME NOT FOUND","Desired Access: Query Value"
    "21:14:18,1264670","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows NT\CurrentVersion\LanguagePack\SurrogateFallback\Arial","NAME NOT FOUND","Desired Access: Query Value"
    "21:14:24,6560929","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\Software\M acromedia\FlashPlayerActiveX","NAME NOT FOUND","Desired Access: Read"
    "21:14:24,6600652","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\CTF\KnownClasses","NAME NOT FOUND","Desired Access: Read"
    "21:14:26,1173517","install_flash_player_ax_32bit.exe","624","RegDeleteValue","HKCU\Softwa re\Macromedia\FlashPlayer\ConflictingProcs","NAME NOT FOUND",""
    "21:14:26,1175753","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\Software\M acromedia\FlashPlayer\SafeVersions","NAME NOT FOUND","Desired Access: Read"
    "21:14:26,1191975","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\Software\M acromedia\FlashPlayerActiveX","NAME NOT FOUND","Desired Access: Read"
    "21:14:26,1231229","install_flash_player_ax_32bit.exe","624","CreateFile","C:\Windows\Syst em32\FlashPlayerCPLApp.cpl","NAME NOT FOUND","Desired Access: Generic Read, Disposition: Open, Options: Synchronous IO Non-Alert, Non-Directory File, Attributes: N, ShareMode: Read, AllocationSize: n/a"
    "21:14:26,1233268","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKCR\CLSID\{D27 CDB6E-AE6D-11CF-96B8-444553540000}\InprocServer32","NAME NOT FOUND","Desired Access: Read"
    "21:14:26,1234155","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKCR\CLSID\{A48 3C63A-CDBC-426E-BF93-872502E8144E}\LocalServer32","NAME NOT FOUND","Desired Access: Read"
    "21:14:26,1234764","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKCR\CLSID\{191 14156-8E9A-4D4E-9EE9-17A0E48D3BBB}\LocalServer32","NAME NOT FOUND","Desired Access: Read"
    "21:14:26,1235466","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKCR\CLSID\{0BE 09CC1-42E0-11DD-AE16-0800200C9A66}\LocalServer32","NAME NOT FOUND","Desired Access: Read"
    "21:14:26,1236969","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKCR\CLSID\{D43 04BCF-B8E9-4B35-BEA0-DC5B522670C2}\LocalServer32","NAME NOT FOUND","Desired Access: Read"
    "21:14:26,1238681","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX","NAME NOT FOUND","Desired Access: Read/Write, Delete"
    "21:14:26,1239660","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{cdf0cc64-4741-4e43-bf97-fef8fa1d6f1c}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1240683","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{1ae3b442-f6e5-49a0-bf8b-0e8d56d7d450}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1241545","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{436EE5F2-71F0-4738-B8E7-93741EF4828F}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1242383","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{0B575FB2-30B1-48F2-80A3-977638C2D6BA}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1243208","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{F180E599-CC04-4971-8140-3F71F95D7944}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1244021","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{9600BCE2-9DEF-4930-ABF7-FB68ED538BF7}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1244852","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{0A28C610-EE06-4A33-BB56-A2155B524916}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1245665","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{0CB2ABF4-BB8D-4F87-9223-50F106B50D95}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1246490","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{6815FCDD-401D-481E-BA88-31B4754C2B46}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1247297","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{885A63EA-382B-4DD4-A755-14809B8557D6}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1248122","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{5E8A1B08-0FBD-4543-9646-F2C2D0D05750}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1248941","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{CD5C7EB6-937A-4E39-B847-A8A50568EE9B}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1249761","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{E8590564-FD80-4864-B219-619BD4B3EB83}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1250573","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{E67FAA8D-58E0-433C-833C-6647CDB14AB0}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1251393","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{F7BE8C66-4DFF-4480-A9B6-410E6FE4D399}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1252212","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{0B991365-EB79-40B3-92AE-5E09B4008553}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1253025","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{B0D584DC-3B46-4F6C-B9C3-BDC61304D3CD}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1253924","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{2927FFE6-25C2-4C86-B93C-EDEEA97B7CB7}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1254743","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{6D7EE95D-ADFB-4454-B28B-FAC56F84F186}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1255562","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{8A90EC49-E132-4AA5-BF74-A18CC3C6DF6D}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1256375","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{00C10AC2-32C3-4281-B8EB-011E00B5AE20}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1257188","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{2BBA59AE-9246-4348-8BB8-54EA1182817B}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1258007","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{A3703922-84E3-4318-B0A1-04EFAD449A04}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1258820","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{8A7DC982-6A96-4C3C-BBE1-D5025CD85AF5}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1259639","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{BB65C393-C76E-4F06-9B0C-2124AA8AF97B}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1260464","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{116E6EEC-0CBA-460E-8DEB-55CFF8E28C7D}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1261289","install_flash_player_ax_32bit.exe","624","RegOpenKey","HKLM\SOFTWARE\M icrosoft\Windows\CurrentVersion\Uninstall\{685A56F8-75B6-44AD-B3DA-FB0A3266B47C}","NAME NOT FOUND","Desired Access: Maximum Allowed"
    "21:14:26,1262102","install_flash_play

  • Error message at start up; missing entry:_rundllentry@16

    I have a HP200 Notebook, running Windows 7. At start-up I receive this error message:  system 32\spool\drivers\x64\lxcgtime.dll  missing entry:_rundllentry@16Error

    Hi @genoa1883 ,
    Thank you for visiting our English HP Support Forum. We are only able to reply to posts written in English. To insure a quick response it would be advisable to post your question in English. The following links are here to assist you if you prefer to post in the following Language Forum.
    English:                                 http://h30434.www3.hp.com
    Spanish:                               http://h30467.www3.hp.com
    French:                                 http://h30478.www3.hp.com
    Portuguese:                       http://h30487.www3.hp.com
    German:                              http://h30492.www3.hp.com
    Korean:                                http://h30491.www3.hp.com/t5/community/communitypage
    Simplified Chinese:         http://h30471.www3.hp.com/t5/community/communitypage
    Thank you ,
    George
    I work for HP

  • T77HAP_EX has a missing entry AA ORG_OBJECTIVES

    Hi Experts,
    I am implementing SAP Pre-defined Performance template.
    I have run the IMG entry u201CConfigure Performance Management Processu201D but when I run this I get the message u201CAn unexpected technical error has occurredu201D. Selecting the help text it mentions to run report RHHAP_CUSTOMIZING_CHECK.
    When I run report RHHAP_CUSTOMIZING_CHECK it identifies two errors
    1) table T77HAP - missing blank entry
    2) table V_T77HAP_EX - missing entry AA ORG_OBJECTIVES
    I went into these tables and added the necessary entries. I re-ran the IMG step u201CDefine Templates for Performance Managementu201D but still getting the error u201CAn unexpected technical error has occurredu201D but the report RHHAP_CUSTOMIZING_CHECK does not show any errors.
    Please can someone explain what could be missing or if they had this issue before and were able to solve this.
    Many thanks
    Oliver

    Hi Maurice,
    Thanks for your reply. Sorry not got back to you but only back at work today from my last post and sorry in advance for the amount of text below but wanted to give you the full information on the errors I have encountered in the IMG for pre-defined performance template.
    Now when I run the IMG step "Define Templates for Performance Management" and I hit the u201CEnd configurationu201D button, I am getting the following errors:
    Previous status '2' is not permitted for pushbutton 'OBJECTIVE'
    Error      Previous status '2' is not permitted for pushbutton 'OBJECTIVE
    Error      Element Appraisal Template 'Performance Management' contains errors. Cannot change status
    And warning messages
    You have maintained a description that is not displayed
    Warning      You have maintained a description that is not displayed
    So I went back into the template that I generated which sits beneath the Appraisal template structure as followsu2026.Personnel Appraisals>New Category>Performance Management
    And I then found where the word OBJECTIVE was against the dropdown for the Status flow for the template under heading In Planning>Schedule Planning>PUSHBUTTON and changed this to read u201CSend to Planning Approvalu201D u2013 is this the correct setting?
    When I now do template consistency check I get several yellow triangles for the elements e.g.  u201CReference Element: Criteria Group New Goalu201D and u201CReference Element: Criteria Group Aligned withu201D
    QUESTIONS
    1)     Do you think I have made the correct change for the status and removed the OBJECTIVE?
    2)     Do I need to do anything with the descriptions which are yellow triangle as described above?
    Now When I go into the second step for IMG> Configure Performance Management Process (which is the timeline and description) I get the technical error u2013 so at the start of this IMG step
    I then run the program RHHAP_CUSTOMIZING_CHECK which then tells me to that table T77HAP has missing entry u201CSpaceu201D and table T77HAP_EX has missing entry AA ORG_OBJECTIVES.
    So I can not progress with creating the timelines unless these are fixedu2026..
    How have you solved this or please can you offer any suggestions on this?
    Many thanks
    Oliver

  • TS3212 Error  reinstall itunes message  due to missing registry items on a Win 7 64bit system and the install is going to C:/program files/.

    I have downloaded itunes and run the installation but I keep getting an error message. the request is to reinstall itunes due to missing registry items.  The exact message is:
              The registry setting used by the iTunes drivers for importing and burning CDs and DVDs are missing. 
              This can happen as  a  result of installing other CD burning software.  Please reinstall iTunes.

    I'd start with the following document, with one modification. At step 12 after typing GEARAspiWDM press the Enter/Return key once prior to clicking OK. (Pressing Return adds a carriage return in the field and is important.)
    iTunes for Windows: "Registry settings" warning when opening iTunes

  • Background process BCTL_** terminated due to missing confirmation

    Hi Experts,
    I have a step in Process chain for activation of a request in DSO. But its failing frequently with error message "Background process BCTL_* terminated due to missing confirmation*". I tried to remove the step from process chain and rebuild it, this avoided the failure for a day. But its failing again at same place.
    Can you please guide if anything can be done to stop this failure in future?
    Regards,
    Nirmal

    Hi,
    I also faced the same issue.
    Error when activate DSO in SAP BI :          "Background process BCTL_*   terminated due to missing confirmation"
    I Resolved  by the following way:
    Steps :
    1.ODS Activation window > Click the button u201CActivate in parallelu201D> Changed    the Number of process  3  to 1-->Save
    2.ODS Activation window >Click the button u201CGet SIDs in parallelu201D> Changed    the Number of process  3  to  1--> Save
    Then start the activation
    Successfully completed.
    Hope it will help.
    Thanks &  Best Regards,
    Hema

  • RUNDLL error in P 17.dll missing entry:P17 hel

    Does anyone have a solution to the error message that appears?at bootup, ?"Rundll error in P7.dll missing entry: P7, helper" ? After reformating my computer and reinstalling the Audigy LS software from the CD that came with the card, this is the message I get. If I uninstall all the software and drivers per solution ID 72 and download and install the latest drivers and applications, the error message does not appear. BUT, I lose the graphic equalizer. When I do a Google search, a hacker web site appears. Yet, when I run a Trend antivirus scan from their website and an AVG virus scan, no infection is found. When I run AdAware SE, no adware or spyware is found. A search on this forum or the knowledge base turns up no results for this error message. The sound card, software and computer seem to run fine otherwise. Any ideas anyone? Thank you in advance for your suggestions.

    After uninstalling and reinstalling drivers, I had that same issue. Googling led me to believe it was spyware, so I installed several spyware removal tools which didn't solve the problem. I then downloaded several registry cleaners which didn't help either. I eventually did this...click Start, then Run. In the open box, type "msconfig" (w/o the quotes) and click OK. Click the Startup tab. Scroll down and look for the item "Rundll32 P7" and uncheck the box next to it. Upon reboot, you shouldn't receive that error message anymore. The first time you reboot, you will prolly receive a Windows dialog saying you're now running in Selecti've Startup, but there's an option not to show that message anymore. I don't think the whole P7 thing caused any probs on my machine, but it was annoying to get that message every startup.

Maybe you are looking for

  • Aperture 3.1 won't open after 10.6.8 update

    I've been working with Aperture 3.1 for awhile and recently updated to Snow Leopard 10.6.8. Aperture will not open after the update. I receive an error message that says I need to update Aperture, that it may not be compatible with my current version

  • Questions about movie clips

    I want to play a movie clip in a separate file. First, I use loadMovieNum("[url]",1); which works, but the movie is ends with being too large, even though I adjusted the movie clip's size and exported it. When I load the movie, is there something I c

  • Problems with AW in Snow Leopard

    I am having multiple problems with AW, particularly graphics, under snow leopard.  Sometimes, while working on an existing file, the whole thing locks up forceing me to Force Quit the application thus losing whatever changes I had made.  Other times

  • SAP BW Study Group

    I am looking to form a study group with people in NY area (preferably Long Island) who want to take SAP-BW certification exam. If you are interested, please contact me.

  • Text messaging only displays phone numbers even though party is in contacts.  Why?

    Hi.  When I receive a text, the display only shows the person's phone number, not their name.  These people are in my contacts.  Is this a setting that I've missed?  How can I have the phone display the name instead of the number?