Exporting symbols

I have graphics symbol that were created in an other flash
file but that I am reusing in a new project I have done that
several times without problem but now everytime I export it the
original bitmaps don't appear in my render (the graphic symbols are
a combinaison of vector art created in flash, this exports, and a
bbitmap image) but they are there if I do test movie I need to
export illustrator still sequences, is it that it doesn't like
bitmaps? but I pretty sure they were no different when I exported
them previously
I would be very gratefull if anybody had some kind of
explanation and solution that is not very time consuming (24h in a
day is not quite enough at the mo)

why don't you just open the import the external Libarary of
the other FLA, then simply drag and drop the graphic symbols to the
new file's Library. Any additional resources will also be copied to
the new Library, which is probably what's not getting across when
exporting just a clip.

Similar Messages

  • Exporting symbols in a .exe for external DLLs

    Hello, 
    I am facing a strange problem.
    Basically, I have my application that loads a DLL (I developped).
    My DLL exports functions I can call from my application : OK
    I would also like to call functions of my application from my DLL : it does not work.
    To do that, in my DLL, I call :
    HMODULE hModule = GetModuleHandle("application.exe");
    FARPROC hFunc = GetProcAddress(hModule, "appFunction"); // (defined by : void __declspec(dllexport)  appFunction(void) in my application
    hModule is non-zero but hFunc is NULL. When I use a tool to see exported symbols by application.exe, there is none.
    So my question is : Can I export symbols from a .exe with LabWindows 8.5 ?
    thanks in advance
    Solved!
    Go to Solution.

    Thank you for your answer,
    I had already tried with :
    HMODULE hModule = LoadLibrary("application.exe");  
    and
    HMODULE hModule = LoadLibraryEx("application.exe", NULL, 0);  
    it gives the same result.
    To be more precise here is the source code of dll.dll :
    #include <Windows.h>
    #include <stdio.h>
    typedef void(*APPLI_PRINTF7)(void);
    __declspec(dllexport) void dllFunction(void)
    HMODULE hModule = LoadLibrary("application.exe");
    FARPROC pFunc = GetProcAddress(hModule, "appli_printf7");
    if(pFunc)
    ((APPLI_PRINTF7)pFunc)();
    else
    printf("error = %d\n", GetLastError());
    return;
     and here is the code of application.exe
    #include <Windows.h>
    #include <stdio.h>
    typedef void(*DLL_FUNC)(void);
    __declspec(dllexport) void appli_printf7(void)
    printf("7");
    return;
    int main(void)
    HMODULE hModule = LoadLibrary("dll.dll");
    FARPROC pFunc = GetProcAddress(hModule, "dllFunction");
    ((DLL_FUNC)pFunc)();
    return 0;
    I compiled dll.dll once and for all with LabWindows (8.5), and I compiled exactly the same code for application.exe with LabWindows (8.5) and Visual Studio 2013.
    It works with Visual Studio (the dll finds appli_printf7 and 7 is printed on the screen), but doesnt with LabWindows (the dll does not find appli_printf7 and prompt the error 127 (The specified procedure could not be found.)).
    I used Dependency Walker (and dllexp to confirm) to find out that appli_printf7 is actually NOT exported with LabWindows, and is exported with Visual Studio.
    Therefore, it is normal that the dll can't find the symbol if it is not exported.
    My questions are :
    - Why is that so ???
    - Is there a setting to set in order to make LabWindows export symbols marked by __declspec(dllexport) for .exe projects ?
    - Is this a problem fixed with a newer version of LabWindows ?
    - My dll is actually a plugin to my application. If I can't load symbols from my application, how can I provide an API for my dll in order to make generic functions available to it ? Is there a workaround for it ?
    Edit : I tried with LabWindows 2012, same problem..
    Thanks in advance 

  • Can you enumerate exported symbols in a loaded SWF?

    We have a number of SWFs that we use as asset libraries.  These SWFs each contain a bunch of statically exported symbols.
    I'm trying to make a tool to help catalog our assets.  I want the tool to be able to load these library SWFs and extract a list of all the exported symbols each contains.  Is that possible to do?  I can't find a way to enumerate or iterate over the exported symbols in the application domains of the loaded SWFs.
    (I could swear I saw an example of doing this in documentation somewhere, but now I can't find it... I'm wondering if I dreamed it, or misinterpreted some other example.)
    I'd be game for doctoring up the library SWFs in some way, e.g. make them use some custom helper class as their document class, if that would help.

    A friend of mine and I came to this post hoping to be told how to do it, after getting just "use jsfl" we set off on our journey to learn a bit about it.
    After an hour, we did it!... Kinda. Thanks for suggesting jsfl.
    So in CS5, we go File > New > Flash JavaScript File
    Then we looked at some jsfl docs ( http://help.adobe.com/en_US/Flash/10.0_ExtendingFlash/WS5b3ccc516d4fbf351e63e3d118a901b0bd -8000.html) tried and tried, looked at the docs some more, tried some more and eventually came up with this script:
    var doc = fl.openDocument("file:///PutFilePathHere/YourFlashFilesName.fla");
    var itemArray = fl.getDocumentDOM().library.items;
    var iLength = itemArray.length;
    fl.trace(iLength.toString());
    fl.outputPanel.clear();
    for(var i = 0; i < iLength; ++i)
        if(itemArray[i] == "[object SymbolItem]")
            var str = itemArray[i].name;
            var iLastIndex = (str.lastIndexOf("/"));
            if(iLastIndex > -1)
                str = str.slice(iLastIndex+1);
                fl.trace(str);
    fl.outputPanel.save("file:///PutFilePathHere/ExportedSymbols.txt");
    And yay! A text document filled with all the symbols in in the library. Ok, ok, it's not perfect because it includes symbols that weren't marked as "export for actionscript 3" which is what we initially wanted, but we're either going to perfect it or just deal with it and put identifiers on our LinkageNames (like EX_Tree, EX_Fire for exported to as3 symbols, and just leave the other symbols alone).

  • Export symbols in a lib chain with dlopen

    If I create a parent executable which loads a single library through dlopen, if I have compiled the main executable with -rdynamic, then I can use its simbols in the library with the clasule "extern". This is not a problem and it's working, but....
    If I have an already made executable (which is out of my control) which loads my library1, and my library1 loads another library2 (also mine), then, even if I link library1 with -rdynamic, library2 cant see symbols from library1...
    In a word, rdynamic sems to be working within executables but not within shared libraries....
    How can I make it and why its not working?
    Thanks

    The best place to ask this question is in the Open Solaris "linking" forum:
    http://www.opensolaris.org/jive/forum.jspa?forumID=63

  • Keynote symbols not exporting to PDF

    How do I make Keynote export % symbols to a PDF? For some reason it is not exporting. I tried using multiple fonts. I was pretty surprised to see that Keynote was leaving characters off of exports. Usually Apple is pretty good about accuracy.
    Yosemite OS 10.10.2 
    Keynote 6.5.2 (2119)
    Macbook Pro 15 Retina
    Fonts tried:  Helvetica, Futura Std
    Could not export % symbols adjacent to numbers

    Sorry. my bad on version numbers. The latest patch for CS4 is 6.0.6, but you might want to stop at 6.0.5 if you have file with imported Illustrator graphics because, if memory serves, the 6.0.6 patch changes the way they are scaled on relink.
    Do you actually have an InDesign Document open when you go to File > Export...? I presume the answer is yes or the command would not be active.
    When the export dialog opens you should see a standard file save dialog with a large area that shows folders and files, and two fields below where you can enter a name and choose a file type to export. What do you see in the file type field? If it isn't PDF, can you click the arrow on the end and choose Adobe PDF?
    What is showing in the name field? Are you able to enter a new name of your choice?
    I suspect that at some point you may have changed the name of the PDF you exported from the file (the default is to use the same file name, but you can enter anything you like), then saved the .indd file after doin the export. When you do this you embed the new PDF file name into the file and it will always be selected the next time you try to export. If I recall correctly, exporting to .idml or .inx, then opeing that and resaving as a new .indd should clear that, and simply changing the name for the export to match the filename  of the docuemtn may work as well.

  • How to export Fw CS3 Symbol Library to Fl CS3 ?

    Is it possible to export Symbols created in Fireworks CS3 to
    Flash CS3 Professional witout losing their properties?

    Curt
    >Just to be clear CS4 you see some, but not all keywords, or in CS4 you see no keywords?<
    I've made more sense of the problem. It's to do with Olympus Raw files - .orf. I've been shooting in Olympus camera raw since 2004.
    My workflow is: import the raw files into Bridge via a card reader; rename them in Bridge as [filename].ORF, apply keywords, edit them in Adobe Camera Raw, save them as [filename].PSD (or sometimes .TIF or .JPG), move the PSDs to a working folder, edit them in Photoshop, and finally move them to a 'Finals' folder.
    In Bridge CS3, in my old computer, I can see all keywords for ORF files. I can also see all keywords for the working and final PSDs, TIFs and JPGs.
    In Bridge CS4, in my new computer, I cannot see any keywords for ORF files, or for the working and final PSDs, etc.
    I can only see keywords for files which started life as TIFs - photos scanned with my negative scanner or flatbed scanner.
    This is also true in both Bridge CS3 and Bridge CS4 in my new laptop, which is running XP Pro. I could see the keywords in my old laptop, but not in my new one.
    >If you right click on file info in Bridge do you have the keyword listed in keyword box?  Do the same with Windows Explorer and see if keyword is listed in Properties/details.<
    'Keyword' isn't listed in Windows Explorer, though everything else under the sun is.
    The keywords are listed if I right click in Bridge CS3 on a file in my old computer. And if I click on Advanced, and expand the categories, e.g. XMP or Dublin Core Props, I get a heading 'xap:Keywords (bag container)', and a list of all the keywords attached to the file.
    But the same file in CS3 in the laptop, or CS4 in laptop or new computer, has no keywords in Advanced.
    I've had a quick look on the web for topics connected with Olympus camera raw/orf/losing keywords, but so far haven't found anything.
    Mary

  • (How can we) Export FXG from Flash Professional using JSFL

    How can we export a selection from Flash Professional as .FXG using JSFL? It appears that this is not possible... just yet! I have added this as a feature request within the Adobe Labs site for Flash Professional. Someone at Adobe suggested that I also explore the forums, so here we are. If you would also like to have this feature added, please let Adobe know by promoting the idea.
    Our use case is this: we have a large Flash file with a library of over one thousand skins and assets that were built in Flash with Adobe's Flex Skins Templates. These stateful, graphical skins were used within a custom theme by several Flex 3 projects. Our ultimate goal is to bring these through Catalyst, maintaining their vectors, and use them to create Spark skins.
    We've got a JSFL that can export each linked library asset, as well as any frame-labeled 'state' within these clips. However, currently we are using exportPNG, which is not ideal as it flattens our vector art into raster images. We are about to try the exportSWF option, and see what Flash Catalyst does with this. Our early attemps with importing swf's haven't been too amazing.
    I'm starting to imagine some cross-product scripting in which we export symbols at a state-by-state level as .swf from Flash, then rebuild these onto layers in Illustrator, and THEN import these into Catalyst...yikes!
    Anyone have a better solution?

    Follow-up:
    Out of pure wishful thinking I decided I would just see what happened if I pretended 'exportFXG' was already a part of JSFL. Based on the signature of 'exportPNG', i tried the following lines:
      var success = fl.getDocumentDOM().exportFXG("file:///C:/mySymbol.fxg"); 
      fl.trace("success:"+success); // output: success:true 
    It worked! Fantastic! I'm not sure if exportFXG is considered still in "beta" and therefore intentionally excluded from the docs, or if it was just an oversight. But at least it gives us something to experiment with.

  • Library symbols ignored

    I am trying to instantiate and position a library asset
    (MovieClip) programmatically. The classpath setting and import
    directives, which work as expected for all other custom classes
    (those which are not in the library), do not seem to affect library
    symbols. It appears that the compiler works with its automatically
    generated class for this (exported) symbol, while completely
    ignoring my custom class for it. It is only when the custom class
    resides in the root folder that it's respected; otherwise it's
    ignored... This is not likely the result of some trivial error in
    folder naming/hierarchy, or classpath/import settings/statements,
    as I've meticulously ascertained this. But perhaps there is a
    conceptual issue here that I miss. Although I've arrived at an
    acceptable workaround to this problem, I'd love to understand the
    reasons for this behaviour...
    Many thanks for any comments!

    Indeed. And the better way to tell the compiler where to find
    it, it turns out, is by setting the base class appropriately in the
    library, rather than by adding another directory to the
    classpath...
    Many thanks!

  • Symbols Saved are not Appearing

    Symbols I save from my document library to my common library are not appearing in my common library. I also try to save a graphic element as a symbol and choose "Common Library, and that's not appearing in my Common Library. Any idea why? I am using CS5.
    Thank you.

    Not sure what to suggest, but I'd check and/or try the following:
    File path. Are the symbols located within the Common Library of your user library Application Support folder? It's a little unclear from your reply, which says ‘custom library’ (not a recognized file path/folder name).
    Quit and restart. Try quitting and restarting the application, and see if the symbols appear in the Common Library panel. If that has no effect, then try shutting down and restarting the computer.
    New location. Try saving the custom symbols directly into the application's Common Library folder (instead of within the application support folder), and see if that works.
    If none of this helps, keep in mind that you can always export symbols from the Document Library into a Libraries folder, or import symbols directly from other documents, without involving the Common Library.

  • Symbols + Base-Class Workflow

    I frequently create a lot of Library Symbols, export for Actionscript, letting Flash auto-generate the Class & extending a custom base-class in order to give them all custom functionality w/out having to create a Class for each, and/or without having to create a FactoryClass for instantiating X number of ClassObjects for each Symbol to be added to.
    It's really fast for prototyping, and with this workflow I've only hit a few obstacles.  Those are:
    1 - If the Symbol has children you cannot give the children instance-names, else the compiler gives an error related to automatically declaring stage instances.  Two workarounds for this are that you can uncheck automatically declare stage instances, and do it manually in your base-class.  or you can avoid using instance-names, and use getChildAt().
    2 - If the Symbol is a MovieClip, the timeline doesn't inherit the base-classes imports.  I don't have a workaround for this.
    My question is, are these limitations that could be addressed by Adobe's Flash team, or are they limitations that are unavoidable without altering the workflow?

    Vote for this idea at ideas.adobe.com Flash Professional: http://tinyurl.com/2bxew2x
    Problem Description:
    Using the Library to export Symbols for Actionscript hits a severe wall when Symbols use auto-generated classes + base-classes.  Child instances are declared as their auto-generated class type instead of their base-class.  The result is that you cannot create 2 Library Symbols with auto-generated classes which inherit from a user-defined base-class which have named child instances with auto-generated classes & a user-defined base-class.
    Steps to Reproduce:
    1.     Create 2 Library Symbols, export for Actionscript with base-class "Character" which extends Sprite. Let Flash auto-generate Class names "Character1" & "Character2".
    2.     Create 2 more Library Symbols, export for Actionscript with base-class "Head" which extends Sprite. Let Flash auto-generate Class names "Character1Head" & "Character2Head".
    3.     Place an instance of Character1 on the stage, and give it a child instance of "Character1Head" named "head".
    4.     Place an instance of Character2 on the stage, and give it a child instance of "Character2Head" named "head".
    5.     Test Movie or Publish
    Actual Result:
    Warning: All instances named 'head' will be automatically declared as "Character1Head" in symbols that use "Character" as their base class. In symbols that are linked to user-defined base classes, instances with the same name must be of the same type.
    Expected Result:
    Flash should declare all instances named "head" as their base-class type "Head" when using auto-generated Classes.  Save this workflow!!!

  • GCC with Symbol Visibility patch = faster apps (KDE 3.4)

    I've checked gcc CVS PKGBUILD and I can't seem to find this patch in it. The patch is already present in GCC 4.
    What is this patch useful for? (quote from here)
    1.  It very substantially improves load times of your DSO (Dynamic Shared Object)
          For example, the TnFOX Boost.Python bindings library now loads in eight seconds rather than over six minutes!
       2. It lets the optimiser produce better code
          PLT indirections (when a function call or variable access must be looked up via the Global Offset Table such as in PIC code) can be completely avoided, thus substantially avoiding pipeline stalls on modern processors and thus much faster code. Furthermore when most of the symbols are bound locally, they can be safely elided (removed) completely through the entire DSO. This gives greater latitude especially to the inliner which no longer needs to keep an entry point around "just in case".
       3. It reduces the size of your DSO by 5-20%
          ELF's exported symbol table format is quite a space hog, giving the complete mangled symbol name which with heavy template usage can average around 1000 bytes. C++ templates spew out a huge amount of symbols and a typical C++ library can easily surpass 30,000 symbols which is around 5-6Mb! Therefore if you cut out the 60-80% of unnecessary symbols, your DSO can be megabytes smaller!
       4. Much lower chance of symbol collision
          The old woe of two libraries internally using the same symbol for different things is finally behind us with this patch. Hallelujah!
    What I've understood from that webpage is that, in order to turn this on, the applications must be compiled with some certain flags (this provides GCC backward compatibility, even with this patch applied, IMO).
    A comment here states that KDE 3.4 (upcomming version) supports this compile flag and it's (a lot) faster.
    I haven't seen the PKGBUILD of KDE 3.4 beta 2 to check if it uses "-fvisibilty=hidden", but I suppose it does not since GCC is not patched.
    Fedora, MDK 10.2 and Gentoo have this patch applied to GCC 3.4 (and KDE 3.4 betas are compiled with fvisibility in those distros, according to the comments there.
    There's also "-fvisibility-inlines-hidden" which does not require any support from the application, but I think that's overriden by -fvisibility flag.

    Well there are plenty of non-kde and kde specific features that are supplied as extras and would only benefit those users that need them (cups, samba, etc) to the rest of the users who may not like, want, or need them they get them anyway right now because in order to not keep recompiling package to add features Arch maintainers add the features in right from the get go. Modularity means that the packages may be built to support such features but will run without the supporting packages and the feature only works or gets enabled when you install the supporting packages.
    Take transcode for example it really only has about four true dependencies but it can support all sorts of features all one has to do is install what supporting packages it needs to use these features. thsi allows the user to use whatever features or codecs they like and not have to rebuild in order to use a specific feature. It makess the maintainer's jobs alot easier because they can build all support in with only the minimal dependencies in the end.
    Modularity works for all level and need of the user.  The developers of KDE have to know that many users will want it all and many will want a slim KDE that is the nature of the user base in linux. Modularity caters to both.
    (Modualrity has been a standard in kernels for years and should be the standard for big projects like kde,gnome, etc.)

  • ERRORFUndefined symbol: .sqlcxt

    Does anyone know what the error mean ?
    It happens when I make the execution file from .o file.
    The following is the detail of errorF
    (ld): halt 4
    (ld): savename spc_loader_ora
    (ld): filelist 4 2
    (ld): i /lib/crt0.o
    (ld): i spc_loader_ora.o
    (ld): lib /usr/lib/libg.a
    (ld): lib /usr/lib/libc.a
    LIBRARY: Shared object libc.a[shr.o]: 2262 symbols imported.
    LIBRARY: Shared object libc.a[meth.o]: 2 symbols imported.
    LIBRARY: Shared object libc.a[aio.o]: 11 symbols imported.
    LIBRARY: Shared object libc.a[pse.o]: 78 symbols imported.
    LIBRARY: Shared object libc.a[dl.o]: 4 symbols imported.
    LIBRARY: Shared object libc.a[pty.o]: 1 symbols imported.
    FILELIST: Number of previously inserted files processed: 4
    (ld): exports /usr/lib/libg.exp
    EXPORTS: Symbols exported: 4
    (ld): resolve
    RESOLVE: 46 of 2784 symbols were kept.
    (ld): addgl /usr/lib/glink.o
    ADDGL: Glink code added for 5 symbols.
    (ld): er full
    ld: 0711-318 ERROR: Undefined symbols were found.
    The following symbols are in error:
    Symbol Inpndx TY CL Source-File(Object-File) OR Import-File{Shared-object}
    RLD: Address Section Rld-type Referencing Symbol
    .sqlcxt [46] ER PR spc_loader_ora.C(spc_loader_ora.o)
    00000124 .text R_RBR [14] .connectDB__Fv
    ER: The return code is 8.
    Thanks a lot !!

    try this:
    in the IDE go to project properties, configuration manager and create a new config for 64bit platform - I had exaqctly the same issue when porting existing code that runs fine using 10g lib but wouldn't find sqlcxt using 11g lib under win7 64 and vs2010 - changing platform to 64bit fixed it for me

  • Exporting to dwg - how to get blocks from groups?

    Hi,
    is there a way that Illustrator generates AutoCAD blocks from Illustrator groups  when exporting to dwg?
    Or, is there any other way to generate blocks directly while exporting?
    Hope this is clear.
    thanks for your support!

    It didn't work for me. AutoCAD "blocks" are like symbols - they are oftentimes called "symbols" in other CAD programs. Blocks are internal to an AutoCAD DWG file. AutoCAD also has external "blocks" called external references.
    I tried exporting symbols from AI to DWG, and also tried exporting a file with multiple instances of a placed AI file. I get the same results. AI created multiple blocks with different names.
    The only workaround in AutoCAD would be to "explode" the AutoCAD DWG in AutoCAD and put that on another layer. Then, reinsert the blocks where they need to be, then turn off the exploded layer. Not a very elegant workaround, but it depends on how many blocks you have.

  • Adobe Flash Player Installer/Uninstaller 11.5 r502 has encountered a problem and needs to close...

    I'm baaaaaack...
    Woke up this morning to a Flash Player update, performed the update and got this error message for my troubles.  I thought you had this problem fixed.
    Copied from cf48_appcompat.txt:
    <?xml version="1.0" encoding="UTF-16"?>
    <DATABASE>
    <EXE NAME="InstallFlashPlayer.exe" FILTER="GRABMI_FILTER_PRIVACY">
        <MATCHING_FILE NAME="InstallFlashPlayer.exe" SIZE="16363960" CHECKSUM="0x332B4225" BIN_FILE_VERSION="11.5.502.135" BIN_PRODUCT_VERSION="11.5.502.135" PRODUCT_VERSION="11,5,502,135" FILE_DESCRIPTION="Adobe® Flash® Player Installer/Uninstaller 11.5 r502" COMPANY_NAME="Adobe Systems Incorporated" PRODUCT_NAME="Adobe® Flash® Player Installer/Uninstaller" FILE_VERSION="11,5,502,135" ORIGINAL_FILENAME="FlashUtil.exe" INTERNAL_NAME="Adobe® Flash® Player Installer/Uninstaller 11.5" LEGAL_COPYRIGHT="Copyright © 1996 Adobe Systems Incorporated" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xF9F321" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="11.5.502.135" UPTO_BIN_PRODUCT_VERSION="11.5.502.135" LINK_DATE="11/30/2012 05:56:28" UPTO_LINK_DATE="11/30/2012 05:56:28" VER_LANGUAGE="English (United States) [0x409]" />
    </EXE>
    <EXE NAME="SASSEH.DLL" FILTER="GRABMI_FILTER_THISFILEONLY">
        <MATCHING_FILE NAME="SASSEH.DLL" SIZE="113024" CHECKSUM="0xFCD43806" BIN_FILE_VERSION="1.0.0.1014" BIN_PRODUCT_VERSION="1.0.0.1014" PRODUCT_VERSION="1.0.0.1014" FILE_DESCRIPTION="ShellExecuteHook" COMPANY_NAME="SuperAdBlocker.com" PRODUCT_NAME="SuperAntiSpyware" FILE_VERSION="1, 0, 0, 1014" ORIGINAL_FILENAME="SASSEH.DLL" INTERNAL_NAME="SASSEH.DLL" LEGAL_COPYRIGHT="(c) Copyright 2004-2008 SuperAdBlocker.com " VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1E0CA" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.0.0.1014" UPTO_BIN_PRODUCT_VERSION="1.0.0.1014" LINK_DATE="07/18/2011 23:22:05" UPTO_LINK_DATE="07/18/2011 23:22:05" VER_LANGUAGE="English (United States) [0x409]" />
    </EXE>
    <EXE NAME="kernel32.dll" FILTER="GRABMI_FILTER_THISFILEONLY">
        <MATCHING_FILE NAME="kernel32.dll" SIZE="989696" CHECKSUM="0x2D998938" BIN_FILE_VERSION="5.1.2600.5781" BIN_PRODUCT_VERSION="5.1.2600.5781" PRODUCT_VERSION="5.1.2600.5781" FILE_DESCRIPTION="Windows NT BASE API Client DLL" COMPANY_NAME="Microsoft Corporation" PRODUCT_NAME="Microsoft® Windows® Operating System" FILE_VERSION="5.1.2600.5781 (xpsp_sp3_gdr.090321-1317)" ORIGINAL_FILENAME="kernel32" INTERNAL_NAME="kernel32" LEGAL_COPYRIGHT="© Microsoft Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xFE572" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="5.1.2600.5781" UPTO_BIN_PRODUCT_VERSION="5.1.2600.5781" LINK_DATE="03/21/2009 14:06:58" UPTO_LINK_DATE="03/21/2009 14:06:58" VER_LANGUAGE="English (United States) [0x409]" />
    </EXE>
    </DATABASE>
    From Dr. Watson:
    Microsoft (R) DrWtsn32
    Copyright (C) 1985-2001 Microsoft Corp. All rights reserved.
    Application exception occurred:
            App: C:\DOCUME~1\KEITHA~1.DUN\LOCALS~1\Temp\{AB857A0A-32D6-44DB-9A26-2FF8EEEADB17}\InstallFlas hPlayer.exe (pid=2840)
            When: 12/18/2012 @ 07:31:26.125
            Exception number: c000001d (illegal instruction)
    *----> System Information <----*
            Computer Name: KD5
            User Name: Keith A. Duncan
            Terminal Session Id: 0
            Number of Processors: 2
            Processor Type: x86 Family 15 Model 2 Stepping 9
            Windows Version: 5.1
            Current Build: 2600
            Service Pack: 3
            Current Type: Multiprocessor Free
            Registered Organization: Keith's Custom PC
            Registered Owner: Keith A. Duncan
    *----> Task List <----*
       0 System Process
       4 System
    420 smss.exe
    476 csrss.exe
    500 winlogon.exe
    544 services.exe
    556 lsass.exe
    720 svchost.exe
    832 svchost.exe
    872 MsMpEng.exe
    932 svchost.exe
    960 svchost.exe
    1056 AvastSvc.exe
    1192 Explorer.EXE
    1324 spoolsv.exe
    1624 MSASCui.exe
    1636 avastUI.exe
    1728 sgmain.exe
    1760 FlashUtil32_11_5_502_110_Plugin.exe
    108 SASCORE.EXE
    152 svchost.exe
    224 sgbhp.exe
    1720 svchost.exe
    1776 alg.exe
    2840 InstallFlashPlayer.exe
    3044 firefox.exe
    3748 NOTEPAD.EXE
    672 drwtsn32.exe
    *----> Module List <----*
    (0000000000400000 - 000000000139d000: C:\DOCUME~1\KEITHA~1.DUN\LOCALS~1\Temp\{AB857A0A-32D6-44DB-9A26-2FF8EEEADB17}\InstallFlas hPlayer.exe
    (0000000001c60000 - 0000000001c67000: C:\WINDOWS\system32\oleaccrc.dll
    (0000000010000000 - 000000001001f000: C:\Program Files\SUPERAntiSpyware\SASSEH.DLL
    (0000000022200000 - 000000002221f000: C:\Program Files\SpywareGuard\spywareguard.dll
    (000000003dfd0000 - 000000003e1bb000: C:\WINDOWS\system32\iertutil.dll
    (000000003e1c0000 - 000000003ec5c000: C:\WINDOWS\system32\ieframe.dll
    (000000004fdd0000 - 000000004ff76000: C:\WINDOWS\system32\d3d9.dll
    (0000000059a60000 - 0000000059b01000: C:\WINDOWS\system32\dbghelp.dll
    (000000005ad70000 - 000000005ada8000: C:\WINDOWS\system32\uxtheme.dll
    (000000005b860000 - 000000005b8b5000: C:\WINDOWS\system32\netapi32.dll
    (000000005f800000 - 000000005f816000: C:\PROGRA~1\WIFD1F~1\MpShHook.dll
    (0000000061880000 - 00000000618ba000: C:\WINDOWS\system32\OLEACC.dll
    (0000000064d00000 - 0000000064d3c000: C:\Program Files\AVAST Software\Avast\snxhk.dll
    (0000000068000000 - 0000000068036000: C:\WINDOWS\system32\rsaenh.dll
    (000000006d990000 - 000000006d996000: C:\WINDOWS\system32\d3d8thk.dll
    (0000000071bf0000 - 0000000071c03000: C:\WINDOWS\system32\SAMLIB.dll
    (0000000073000000 - 0000000073026000: C:\WINDOWS\system32\WINSPOOL.DRV
    (0000000073420000 - 0000000073573000: C:\WINDOWS\system32\MSVBVM60.DLL
    (0000000073b30000 - 0000000073b45000: C:\WINDOWS\system32\mscms.dll
    (0000000073f10000 - 0000000073f6c000: C:\WINDOWS\system32\dsound.dll
    (0000000074ad0000 - 0000000074ad8000: C:\WINDOWS\system32\powrprof.dll
    (0000000076380000 - 0000000076385000: C:\WINDOWS\system32\Msimg32.dll
    (00000000769c0000 - 0000000076a74000: C:\WINDOWS\system32\userenv.dll
    (0000000076b20000 - 0000000076b31000: C:\WINDOWS\system32\atl.dll
    (0000000076b40000 - 0000000076b6d000: C:\WINDOWS\system32\winmm.dll
    (0000000076bf0000 - 0000000076bfb000: C:\WINDOWS\system32\psapi.dll
    (0000000076f60000 - 0000000076f8c000: C:\WINDOWS\system32\WLDAP32.dll
    (0000000076fd0000 - 000000007704f000: C:\WINDOWS\system32\CLBCATQ.DLL
    (0000000077050000 - 0000000077115000: C:\WINDOWS\system32\COMRes.dll
    (0000000077120000 - 00000000771ab000: C:\WINDOWS\system32\OLEAUT32.dll
    (00000000773d0000 - 00000000774d3000: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.6028_x- ww_61e65202\comctl32.dll
    (00000000774e0000 - 000000007761e000: C:\WINDOWS\system32\ole32.dll
    (0000000077690000 - 00000000776b1000: C:\WINDOWS\system32\ntmarta.dll
    (0000000077920000 - 0000000077a13000: C:\WINDOWS\system32\SETUPAPI.dll
    (0000000077a80000 - 0000000077b15000: C:\WINDOWS\system32\crypt32.dll
    (0000000077b20000 - 0000000077b32000: C:\WINDOWS\system32\msasn1.dll
    (0000000077b40000 - 0000000077b62000: C:\WINDOWS\system32\Apphelp.dll
    (0000000077c00000 - 0000000077c08000: C:\WINDOWS\system32\version.dll
    (0000000077c10000 - 0000000077c68000: C:\WINDOWS\system32\msvcrt.dll
    (0000000077dd0000 - 0000000077e6b000: C:\WINDOWS\system32\ADVAPI32.dll
    (0000000077e70000 - 0000000077f03000: C:\WINDOWS\system32\RPCRT4.dll
    (0000000077f10000 - 0000000077f59000: C:\WINDOWS\system32\GDI32.dll
    (0000000077f60000 - 0000000077fd6000: C:\WINDOWS\system32\SHLWAPI.dll
    (0000000077fe0000 - 0000000077ff1000: C:\WINDOWS\system32\Secur32.dll
    (0000000078130000 - 00000000781cb000: C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.6195_x-ww_44262b86\MS VCR80.dll
    (000000007c420000 - 000000007c4a7000: C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.6195_x-ww_44262b86\MS VCP80.dll
    (000000007c800000 - 000000007c8f6000: C:\WINDOWS\system32\KERNEL32.dll
    (000000007c900000 - 000000007c9b2000: C:\WINDOWS\system32\ntdll.dll
    (000000007c9c0000 - 000000007d1d7000: C:\WINDOWS\system32\SHELL32.dll
    (000000007e410000 - 000000007e4a1000: C:\WINDOWS\system32\USER32.dll
    (000000007e720000 - 000000007e7d0000: C:\WINDOWS\system32\SXS.DLL
    *----> State Dump for Thread Id 0xb1c <----*
    eax=7ffdf000 ebx=00000000 ecx=00000000 edx=fffffe8d esi=100126e3 edi=0012f728
    eip=100126e4 esp=0012f6c4 ebp=0012f6ec iopl=0         nv up ei pl nz na pe nc
    cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00200202
    *** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\Program Files\SUPERAntiSpyware\SASSEH.DLL -
    function: SASSEH
    No prior disassembly possible
            100126e4 feff             ???     bh
            100126e6 ffff             ???
            100126e8 8b45e4           mov     eax,[ebp-0x1c]
            100126eb e85d9cffff       call    SASSEH+0xc34d (1000c34d)
            100126f0 c3               ret
            100126f1 8bff             mov     edi,edi
            100126f3 56               push    esi
            100126f4 57               push    edi
            100126f5 33ff             xor     edi,edi
    FAULT ->100126e4 feff             ???     bh
            100126e6 ffff             ???
            100126e8 8b45e4           mov     eax,[ebp-0x1c]
            100126eb e85d9cffff       call    SASSEH+0xc34d (1000c34d)
            100126f0 c3               ret
            100126f1 8bff             mov     edi,edi
            100126f3 56               push    esi
            100126f4 57               push    edi
            100126f5 33ff             xor     edi,edi
            100126f7 8db7e0a00110     lea     esi,[edi+0x1001a0e0]
            100126fd ff36             push    dword ptr [esi]
    *----> Stack Back Trace <----*
    *** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\WINDOWS\system32\USER32.dll -
    WARNING: Stack unwind information not available. Following frames may be wrong.
    *** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\WINDOWS\system32\MSVBVM60.DLL -
    ChildEBP RetAddr  Args to Child             
    0012f6ec 7e418816 100126e3 000201da 00000113 SASSEH+0x126e4
    0012f754 7e4189cd 00000000 100126e3 000201da USER32!GetDC+0x14f
    0012f7b4 7e4196c7 0012f7dc 00000001 0012f804 USER32!GetWindowLongW+0x127
    0012f7c4 7342a6b0 0012f7dc ffffffff 02223714 USER32!DispatchMessageA+0xf
    0012f804 7342a627 00000002 0222373c 02220000 MSVBVM60!_vbaStrToAnsi+0x2f1
    0012f848 7342a505 0222380c 00000002 00000b18 MSVBVM60!_vbaStrToAnsi+0x268
    7343a3b8 73426c73 7342756a 734e7ee7 734e7f12 MSVBVM60!_vbaStrToAnsi+0x146
    734e6754 0c2474ff ff0c408b 8b0c2474 11ff5008 MSVBVM60!BASIC_CLASS_QueryInterface+0x17
    0424448b 00000000 00000000 00000000 00000000 0xc2474ff
    *----> Raw Stack Dump <----*
    000000000012f6c4  34 87 41 7e da 01 02 00 - 13 01 00 00 00 00 00 00  4.A~............
    000000000012f6d4  00 00 00 00 e3 26 01 10 - cd ab ba dc 00 00 00 00  .....&..........
    000000000012f6e4  28 f7 12 00 e3 26 01 10 - 54 f7 12 00 16 88 41 7e  (....&..T.....A~
    000000000012f6f4  e3 26 01 10 da 01 02 00 - 13 01 00 00 00 00 00 00  .&..............
    000000000012f704  00 00 00 00 e4 f7 12 00 - dc f7 12 00 f8 1b 58 01  ..............X.
    000000000012f714  14 00 00 00 01 00 00 00 - 00 00 00 00 00 00 00 00  ................
    000000000012f724  10 00 00 00 00 00 00 00 - f8 f7 12 00 00 00 00 00  ................
    000000000012f734  00 00 00 00 00 00 00 00 - 08 f7 12 00 f0 f2 12 00  ................
    000000000012f744  a4 f7 12 00 8f 04 44 7e - 30 88 41 7e 00 00 00 00  ......D~0.A~....
    000000000012f754  b4 f7 12 00 cd 89 41 7e - 00 00 00 00 e3 26 01 10  ......A~.....&..
    000000000012f764  da 01 02 00 13 01 00 00 - 00 00 00 00 00 00 00 00  ................
    000000000012f774  0c 1c 58 01 01 00 00 00 - 40 a3 42 7e 3c 37 22 02  [email protected]~<7".
    000000000012f784  00 00 00 00 b4 f7 12 00 - 3b a4 42 7e dc f7 12 00  ........;.B~....
    000000000012f794  00 00 00 00 00 00 00 00 - 7c f7 12 00 f0 f2 12 00  ........|.......
    000000000012f7a4  ec f8 12 00 8f 04 44 7e - f0 89 41 7e ff ff ff ff  ......D~..A~....
    000000000012f7b4  c4 f7 12 00 c7 96 41 7e - dc f7 12 00 01 00 00 00  ......A~........
    000000000012f7c4  04 f8 12 00 b0 a6 42 73 - dc f7 12 00 ff ff ff ff  ......Bs........
    000000000012f7d4  14 37 22 02 00 00 00 00 - da 01 02 00 13 01 00 00  .7".............
    000000000012f7e4  00 00 00 00 00 00 00 00 - 30 c4 02 00 ad 02 00 00  ........0.......
    000000000012f7f4  85 01 00 00 00 00 22 02 - 00 00 00 00 94 1e 22 02  ......".......".
    Reference:  http://forums.adobe.com/thread/990060?tstart=0        -kd5-

    Contents of FlasInstall.log (remember, 12-18 is the date in question.  I've since updated Flash for Firefox as well - tried updating it via Secunia's online Software Inspector (12-20) but it seemed unsuccessful so I installed it from Adobe):
    =O====== M/11.2.202.235 2012-05-12+11-56-31.281 ========
    0000 [W] 00001113 C:\WINDOWS\system32\Macromed\Flash\\* 3
    0001 [I] 00000010 "C:\Documents and Settings\Keith A. Duncan\Local Settings\Temp\install_flash_player_32bit.exe" -iv 8 -install -au 1
    0002 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0003 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0004 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0005 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0006 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0007 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0008 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0009 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0010 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0011 [W] 00001036 Software\Opera Software/Plugin Path 2
    0012 [W] 00001036 Software\Opera Software/Plugin Path 2
    0013 [I] 00000014 C:\WINDOWS\system32\Macromed\Flash\NPSWF32_11_2_202_235.dll
    0014 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_2_202_235_Plugin.exe
    0015 [I] 00000017 C:\WINDOWS\system32\Macromed\Flash
    0016 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0017 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0018 [I] 00000012
    =X====== M/11.2.202.235 2012-05-12+11-56-33.468 ========
    =O====== M/11.2.202.235 2012-05-12+12-02-11.015 ========
    0000 [I] 00000010 "C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_2_202_235_ActiveX.exe" -refreshIEElevationPolicies
    =X====== M/11.2.202.235 2012-05-12+12-02-11.281 ========
    =O====== M/11.2.202.235 2012-05-12+12-02-11.109 ========
    0000 [I] 00000010 "C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_2_202_235_ActiveX.exe" -refreshIEElevationPolicies
    =X====== M/11.2.202.235 2012-05-12+12-02-11.359 ========
    =O====== M/11.2.202.235 2012-05-12+12-02-08.984 ========
    0000 [I] 00000010 "C:\Documents and Settings\Keith A. Duncan\Local Settings\Temp\install_flash_player_ax_32bit.exe" -iv 8 -install -au 1
    0001 [W] 00001036 Software\Macromedia\FlashPlayer\SafeVersions/11.0 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0005 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0006 [I] 00000013 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_2_202_235.ocx
    0007 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_2_202_235_ActiveX.exe
    0008 [I] 00000016 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_2_202_235_ActiveX.dll
    0009 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0010 [W] 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0011 [W] 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0012 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0013 [W] 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0014 [I] 00000012
    =X====== M/11.2.202.235 2012-05-12+12-02-13.453 ========
    =O====== M/11.3.300.257 2012-06-10+11-21-05.640 ========
    0000 [I] 00000010 "C:\DOCUME~1\KEITHA~1.DUN\LOCALS~1\Temp\{AA720A4B-0FCF-45E6-8A21-13C0371E4D79}\InstallFla shPlayer.exe" -iv 4
    0001 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0002 [W] 00001015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_2_202_235_ActiveX.exe 5
    0003 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashUtil32_11_2_202_235_ActiveX.exe/ 2
    0004 [I] 00000013 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_3_300_257.ocx
    0005 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_257_ActiveX.exe
    0006 [I] 00000016 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_257_ActiveX.dll
    0007 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0008 [W] 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0009 [W] 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0010 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0011 [W] 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0012 [I] 00000012
    =X====== M/11.3.300.257 2012-06-10+11-21-26.750 ========
    =O====== M/11.2.202.235 2012-06-10+11-16-46.500 ========
    0000 [I] 00000010 "C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_2_202_235_ActiveX.exe" -update activex
    0001 [I] 00000011 0
    =X====== M/11.2.202.235 2012-06-10+11-24-21.734 ========
    =O====== M/11.3.300.265 2012-07-15+19-56-04.140 ========
    0000 [I] 00000010 "C:\DOCUME~1\KEITHA~1.DUN\LOCALS~1\Temp\{F4A5D500-713F-4F32-B19C-40E0289DC268}\InstallFla shPlayer.exe" -iv 4
    0001 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0002 [W] 00001015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_257_ActiveX.exe 5
    0003 [I] 00000013 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_3_300_265.ocx
    0004 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_265_ActiveX.exe
    0005 [I] 00000016 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_265_ActiveX.dll
    0006 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0007 [W] 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0008 [W] 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0009 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0010 [W] 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0011 [I] 00000012
    =X====== M/11.3.300.265 2012-07-15+19-56-19.843 ========
    =O====== M/11.3.300.257 2012-07-15+19-54-08.421 ========
    0000 [I] 00000010 "C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_257_ActiveX.exe" -update activex
    0001 [I] 00000011 0
    =X====== M/11.3.300.257 2012-07-15+19-56-33.312 ========
    =O====== M/11.3.300.268 2012-07-30+11-42-50.859 ========
    0000 [I] 00000010 "C:\DOCUME~1\KEITHA~1.DUN\LOCALS~1\Temp\{C2AD5AD9-D229-405A-8EF0-1F71D320EBBE}\InstallFla shPlayer.exe" -iv 4
    0001 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0002 [W] 00001015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_265_ActiveX.exe 5
    0003 [I] 00000013 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_3_300_268.ocx
    0004 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_268_ActiveX.exe
    0005 [I] 00000016 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_268_ActiveX.dll
    0006 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0007 [W] 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0008 [W] 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0009 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0010 [W] 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0011 [I] 00000012
    =X====== M/11.3.300.268 2012-07-30+11-43-18.812 ========
    =O====== M/11.3.300.265 2012-07-30+11-29-23.343 ========
    0000 [I] 00000010 "C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_265_ActiveX.exe" -update activex
    0001 [I] 00000011 0
    =X====== M/11.3.300.265 2012-07-30+11-51-19.500 ========
    =O====== M/11.3.300.271 2012-08-20+10-39-01.578 ========
    0000 [I] 00000010 "C:\DOCUME~1\KEITHA~1.DUN\LOCALS~1\Temp\{EE426B07-2D41-4C79-9728-31FC829A4BE8}\InstallFla shPlayer.exe" -iv 4
    0001 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0002 [W] 00001015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_268_ActiveX.exe 5
    0003 [I] 00000013 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_3_300_271.ocx
    0004 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_271_ActiveX.exe
    0005 [I] 00000016 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_271_ActiveX.dll
    0006 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0007 [W] 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0008 [W] 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0009 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0010 [W] 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0011 [I] 00000012
    =X====== M/11.3.300.271 2012-08-20+10-39-20.890 ========
    =O====== M/11.3.300.268 2012-08-20+10-27-44.609 ========
    0000 [I] 00000010 "C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_268_ActiveX.exe" -update activex
    0001 [I] 00000011 0
    =X====== M/11.3.300.268 2012-08-20+10-52-29.921 ========
    =O====== M/11.3.300.271 2012-08-20+14-28-01.687 ========
    0000 [I] 00000010 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_271_ActiveX.exe -maintain activex
    0001 [W] 00001015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_271_ActiveX.exe 5
    0002 [I] 00000018
    0003 [W] 00001015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_271_ActiveX.exe 5
    0004 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0005 [W] 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0006 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0007 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0008 [W] 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0009 [W] 00001021
    0010 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0011 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0012 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0013 [W] 00001015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_271_ActiveX.exe 5
    0014 [I] 00000012
    =X====== M/11.3.300.271 2012-08-20+14-28-13.953 ========
    =O====== M/11.3.300.271 2012-08-20+14-29-49.812 ========
    0000 [I] 00000010 "C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_271_ActiveX.exe" -refreshIEElevationPolicies
    =X====== M/11.3.300.271 2012-08-20+14-29-50.125 ========
    =O====== M/11.3.300.271 2012-08-20+14-29-49.828 ========
    0000 [I] 00000010 "C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_271_ActiveX.exe" -refreshIEElevationPolicies
    =X====== M/11.3.300.271 2012-08-20+14-29-50.125 ========
    =O====== M/11.3.300.271 2012-08-20+14-29-47.921 ========
    0000 [I] 00000010 "C:\Documents and Settings\All Users\Application Data\Adobe\AIH.7314133f438213f459420d8d13e1f99d9727fa56\install_flash_player_ax.exe" -install -iv 8 -au 1
    0001 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0004 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0005 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashUtil32_11_3_300_271_ActiveX.exe/ 2
    0006 [I] 00000013 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_3_300_271.ocx
    0007 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_271_ActiveX.exe
    0008 [I] 00000016 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_3_300_271_ActiveX.dll
    0009 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0010 [W] 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0011 [W] 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0012 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0013 [W] 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0014 [I] 00000012
    =X====== M/11.3.300.271 2012-08-20+14-29-51.296 ========
    =O====== M/11.2.202.235 2012-09-02+15-18-15.343 ========
    0000 [I] 00000010 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_2_202_235_Plugin.exe -maintain plugin
    0001 [W] 00001015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_2_202_235_Plugin.exe 5
    0002 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0003 [W] 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0004 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0005 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0006 [W] 00001021
    0007 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0008 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0009 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0010 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0011 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0012 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0013 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0014 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0015 [W] 00001036 Software\Opera Software/Plugin Path 2
    0016 [W] 00001036 Software\Opera Software/Plugin Path 2
    0017 [W] 00001015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_2_202_235_Plugin.exe 5
    0018 [I] 00000012
    =X====== M/11.2.202.235 2012-09-02+15-18-21.109 ========
    =O====== M/11.4.402.265 2012-09-02+15-26-49.625 ========
    0000 [I] 00000010 "C:\Documents and Settings\All Users\Application Data\Adobe\AIH.9947af2949bc1e81dd7b96b50528d1baf6bac22b\install_flash_player.exe" -install -iv 8 -au 1
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0003 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0004 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0005 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0006 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0007 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0008 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0009 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0010 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0011 [W] 00001036 Software\Opera Software/Plugin Path 2
    0012 [W] 00001036 Software\Opera Software/Plugin Path 2
    0013 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashUtil32_11_2_202_235_Plugin.exe/ 2
    0014 [I] 00000014 C:\WINDOWS\system32\Macromed\Flash\NPSWF32_11_4_402_265.dll
    0015 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_4_402_265_Plugin.exe
    0016 [I] 00000017 C:\WINDOWS\system32\Macromed\Flash
    0017 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0018 [W] 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0019 [W] 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0020 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0021 [W] 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0022 [I] 00000012
    =X====== M/11.4.402.265 2012-09-02+15-26-52.015 ========
    =O====== M/11.4.402.265 2012-09-02+15-28-43.296 ========
    0000 [I] 00000010 "C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_4_402_265_ActiveX.exe" -refreshIEElevationPolicies
    =X====== M/11.4.402.265 2012-09-02+15-28-43.453 ========
    =O====== M/11.4.402.265 2012-09-02+15-28-40.109 ========
    0000 [I] 00000010 "C:\Documents and Settings\All Users\Application Data\Adobe\AIH.7314133f438213f459420d8d13e1f99d9727fa56\install_flash_player_ax.exe" -install -iv 8 -au 1
    0001 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 [W] 00001015 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_3_300_271.ocx 20
    0004 [I] 00000018
    0005 [W] 00001015 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_3_300_271.ocx 20
    0006 [I] 00000013 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_4_402_265.ocx
    0007 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_4_402_265_ActiveX.exe
    0008 [I] 00000016 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_4_402_265_ActiveX.dll
    0009 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0010 [W] 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0011 [W] 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0012 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0013 [W] 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0014 [I] 00000012
    =X====== M/11.4.402.265 2012-09-02+15-28-44.578 ========
    =O====== M/11.4.402.265 2012-09-02+15-34-47.234 ========
    0000 [I] 00000010 "C:\Documents and Settings\Keith A. Duncan\Desktop\uninstall_flash_player.exe" -force 
    0001 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0002 [W] 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0003 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0004 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0005 [W] 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0006 [W] 00001021
    0007 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0008 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0009 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0010 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0011 [W] 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0012 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0013 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0014 [W] 00001021
    0015 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0016 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0017 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0018 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0019 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\{2CA4F306-B280-4ab2-B5E1-1DFA3583F046}/C:\WINDOWS\system32\FlashPlayerCPLApp.c pl 2
    0020 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0021 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0022 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0023 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0024 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0025 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0026 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0027 [W] 00001036 Software\Opera Software/Plugin Path 2
    0028 [W] 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/11.4.402.265 2012-09-02+15-34-56.843 ========
    =O====== M/11.4.402.265 2012-09-02+15-35-00.828 ========
    0000 [I] 00000010 "C:\Documents and Settings\Keith A. Duncan\Desktop\uninstall_flash_player.exe" -force 
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 [W] 00001018
    0005 [W] 00001037 Software\Macromedia\FlashPlayer\SafeVersions/ 2
    0006 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0007 [W] 00001019
    0008 [W] 00001020
    0009 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0010 [W] 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0011 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0012 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0013 [W] 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0014 [W] 00001021
    0015 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0016 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0017 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\{2CA4F306-B280-4ab2-B5E1-1DFA3583F046}/C:\WINDOWS\system32\FlashPlayerCPLApp.c pl 2
    0018 [W] 00001048
    0019 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0020 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0021 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0022 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashPlayerApp.exe/ 2
    0023 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\{2CA4F306-B280-4ab2-B5E1-1DFA3583F046}/C:\WINDOWS\system32\FlashPlayerCPLApp.c pl 2
    0024 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0025 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0026 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0027 [W] 00001018
    0028 [W] 00001036 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0029 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0030 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0031 [W] 00001019
    0032 [W] 00001020
    0033 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0034 [W] 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0035 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0036 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0037 [W] 00001021
    0038 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0039 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0040 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\{2CA4F306-B280-4ab2-B5E1-1DFA3583F046}/C:\WINDOWS\system32\FlashPlayerCPLApp.c pl 2
    0041 [W] 00001048
    0042 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0043 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0044 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0045 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashPlayerApp.exe/ 2
    0046 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\{2CA4F306-B280-4ab2-B5E1-1DFA3583F046}/C:\WINDOWS\system32\FlashPlayerCPLApp.c pl 2
    0047 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0048 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0049 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0050 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0051 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0052 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0053 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0054 [W] 00001036 Software\Opera Software/Plugin Path 2
    0055 [W] 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/11.4.402.265 2012-09-02+15-35-06.031 ========
    =O====== M/11.4.402.265 2012-09-02+15-35-09.671 ========
    0000 [I] 00000010 "C:\Documents and Settings\Keith A. Duncan\Desktop\uninstall_flash_player.exe" -force 
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 [W] 00001018
    0005 [W] 00001037 Software\Macromedia\FlashPlayer\SafeVersions/ 2
    0006 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0007 [W] 00001019
    0008 [W] 00001020
    0009 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0010 [W] 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0011 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0012 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0013 [W] 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0014 [W] 00001021
    0015 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0016 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0017 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\{2CA4F306-B280-4ab2-B5E1-1DFA3583F046}/C:\WINDOWS\system32\FlashPlayerCPLApp.c pl 2
    0018 [W] 00001048
    0019 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0020 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0021 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0022 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashPlayerApp.exe/ 2
    0023 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\{2CA4F306-B280-4ab2-B5E1-1DFA3583F046}/C:\WINDOWS\system32\FlashPlayerCPLApp.c pl 2
    0024 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0025 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0026 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0027 [W] 00001018
    0028 [W] 00001036 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0029 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0030 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0031 [W] 00001019
    0032 [W] 00001020
    0033 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0034 [W] 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0035 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0036 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0037 [W] 00001021
    0038 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0039 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0040 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\{2CA4F306-B280-4ab2-B5E1-1DFA3583F046}/C:\WINDOWS\system32\FlashPlayerCPLApp.c pl 2
    0041 [W] 00001048
    0042 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0043 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0044 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0045 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashPlayerApp.exe/ 2
    0046 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\{2CA4F306-B280-4ab2-B5E1-1DFA3583F046}/C:\WINDOWS\system32\FlashPlayerCPLApp.c pl 2
    0047 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0048 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0049 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0050 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0051 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0052 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0053 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0054 [W] 00001036 Software\Opera Software/Plugin Path 2
    0055 [W] 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/11.4.402.265 2012-09-02+15-35-13.875 ========
    =O====== M/11.4.402.265 2012-09-02+15-48-47.031 ========
    0000 [I] 00000010 "C:\Documents and Settings\All Users\Application Data\Adobe\AIH.9947af2949bc1e81dd7b96b50528d1baf6bac22b\install_flash_player.exe" -install -iv 8 -au 1
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0003 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0004 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0005 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0006 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0007 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0008 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0009 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0010 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0011 [W] 00001036 Software\Opera Software/Plugin Path 2
    0012 [W] 00001036 Software\Opera Software/Plugin Path 2
    0013 [I] 00000014 C:\WINDOWS\system32\Macromed\Flash\NPSWF32_11_4_402_265.dll
    0014 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_4_402_265_Plugin.exe
    0015 [I] 00000017 C:\WINDOWS\system32\Macromed\Flash
    0016 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0017 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0018 [I] 00000012
    =X====== M/11.4.402.265 2012-09-02+15-48-49.484 ========
    =O====== M/11.4.402.265 2012-09-02+15-50-57.421 ========
    0000 [I] 00000010 "C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_4_402_265_ActiveX.exe" -refreshIEElevationPolicies
    =X====== M/11.4.402.265 2012-09-02+15-50-57.531 ========
    =O====== M/11.4.402.265 2012-09-02+15-50-57.515 ========
    0000 [I] 00000010 "C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_4_402_265_ActiveX.exe" -refreshIEElevationPolicies
    =X====== M/11.4.402.265 2012-09-02+15-50-57.796 ========
    =O====== M/11.4.402.265 2012-09-02+15-50-55.203 ========
    0000 [I] 00000010 "C:\Documents and Settings\All Users\Application Data\Adobe\AIH.7314133f438213f459420d8d13e1f99d9727fa56\install_flash_player_ax.exe" -install -iv 8 -au 1
    0001 [W] 00001036 Software\Macromedia\FlashPlayer\SafeVersions/11.0 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0005 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0006 [I] 00000013 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_4_402_265.ocx
    0007 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_4_402_265_ActiveX.exe
    0008 [I] 00000016 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_4_402_265_ActiveX.dll
    0009 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0010 [W] 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0011 [W] 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0012 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0013 [W] 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0014 [I] 00000012
    =X====== M/11.4.402.265 2012-09-02+15-50-58.843 ========
    =O====== M/11.4.402.287 2012-10-15+22-24-25.062 ========
    0000 [I] 00000010 "C:\DOCUME~1\KEITHA~1.DUN\LOCALS~1\Temp\{AD84480A-5129-4AA7-8702-29EA328079A0}\InstallFla shPlayer.exe" -iv 4
    0001 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0002 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0003 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0004 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0005 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0006 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0007 [W] 00001036 Software\Opera Software/Plugin Path 2
    0008 [W] 00001036 Software\Opera Software/Plugin Path 2
    0009 [W] 00001015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_4_402_265_Plugin.exe 5
    0010 [I] 00000014 C:\WINDOWS\system32\Macromed\Flash\NPSWF32_11_4_402_287.dll
    0011 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_4_402_287_Plugin.exe
    0012 [I] 00000017 C:\WINDOWS\system32\Macromed\Flash
    0013 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0014 [W] 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0015 [W] 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0016 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0017 [W] 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0018 [I] 00000012
    =X====== M/11.4.402.287 2012-10-15+22-24-37.687 ========
    =O====== M/11.4.402.265 2012-10-15+21-43-09.734 ========
    0000 [I] 00000010 "C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_4_402_265_Plugin.exe" -update plugin
    0001 [I] 00000011 0
    =X====== M/11.4.402.265 2012-10-15+22-24-37.906 ========
    =O====== M/11.4.402.287 2012-11-13+12-04-49.656 ========
    0000 [I] 00000010 "C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_4_402_287_Plugin.exe" -update plugin
    =X====== M/11.4.402.287 2012-11-13+12-10-36.078 ========
    =O====== M/11.5.502.110 2012-11-13+12-12-01.593 ========
    0000 [I] 00000010 "C:\Documents and Settings\All Users\Application Data\Adobe\AIH.455f94260a91b740cbea277a1edb36914a894128\install_flash_player.exe" -install -iv 8 -au 1
    0001 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0002 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0003 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0004 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0005 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0006 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0007 [W] 00001036 Software\Opera Software/Plugin Path 2
    0008 [W] 00001036 Software\Opera Software/Plugin Path 2
    0009 [I] 00000014 C:\WINDOWS\system32\Macromed\Flash\NPSWF32_11_5_502_110.dll
    0010 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_5_502_110_Plugin.exe
    0011 [I] 00000024 C:\WINDOWS\system32\Macromed\Flash\plugin.vch
    0012 [I] 00000017 C:\WINDOWS\system32\Macromed\Flash
    0013 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0014 [W] 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0015 [W] 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0016 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0017 [W] 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0018 [I] 00000012
    =X====== M/11.5.502.110 2012-11-13+12-12-05.562 ========
    =O====== M/11.5.502.110 2012-11-13+12-22-30.515 ========
    0000 [I] 00000010 "C:\Documents and Settings\All Users\Application Data\Adobe\AIH.7314133f438213f459420d8d13e1f99d9727fa56\install_flash_player_ax.exe" -install -iv 8 -au 1
    0001 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0002 [W] 00001015 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_4_402_265.ocx 20
    0003 [I] 00000018
    0004 [W] 00001015 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_4_402_265.ocx 20
    0005 [I] 00000013 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_5_502_110.ocx
    0006 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_5_502_110_ActiveX.exe
    0007 [I] 00000016 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_5_502_110_ActiveX.dll
    0008 [I] 00000023 C:\WINDOWS\system32\Macromed\Flash\activex.vch
    0009 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0010 [W] 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0011 [W] 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0012 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0013 [W] 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0014 [I] 00000012
    =X====== M/11.5.502.110 2012-11-13+12-22-35.812 ========
    =O====== M/11.4.402.287 2012-11-30+14-43-47.171 ========
    0000 [I] 00000010 "F:\Flash Player Uninstaller.exe" -force 
    0001 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0002 [W] 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0003 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0004 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0005 [W] 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0006 [W] 00001021
    0007 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0008 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0009 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0010 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0011 [W] 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0012 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0013 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0014 [W] 00001021
    0015 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0016 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0017 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0018 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0019 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\{2CA4F306-B280-4ab2-B5E1-1DFA3583F046}/C:\WINDOWS\system32\FlashPlayerCPLApp.c pl 2
    0020 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0021 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0022 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0023 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0024 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0025 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0026 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0027 [W] 00001036 Software\Opera Software/Plugin Path 2
    0028 [W] 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/11.4.402.287 2012-11-30+14-43-52.937 ========
    =O====== M/11.4.402.287 2012-11-30+14-43-56.453 ========
    0000 [I] 00000010 "F:\Flash Player Uninstaller.exe" -force 
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 [W] 00001018
    0005 [W] 00001037 Software\Macromedia\FlashPlayer\SafeVersions/ 2
    0006 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0007 [W] 00001019
    0008 [W] 00001020
    0009 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0010 [W] 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0011 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0012 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0013 [W] 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0014 [W] 00001021
    0015 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0016 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0017 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\{2CA4F306-B280-4ab2-B5E1-1DFA3583F046}/C:\WINDOWS\system32\FlashPlayerCPLApp.c pl 2
    0018 [W] 00001048
    0019 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0020 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0021 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0022 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashPlayerApp.exe/ 2
    0023 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\{2CA4F306-B280-4ab2-B5E1-1DFA3583F046}/C:\WINDOWS\system32\FlashPlayerCPLApp.c pl 2
    0024 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0025 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0026 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0027 [W] 00001018
    0028 [W] 00001036 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0029 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0030 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0031 [W] 00001019
    0032 [W] 00001020
    0033 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0034 [W] 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0035 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0036 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0037 [W] 00001021
    0038 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0039 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0040 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\{2CA4F306-B280-4ab2-B5E1-1DFA3583F046}/C:\WINDOWS\system32\FlashPlayerCPLApp.c pl 2
    0041 [W] 00001048
    0042 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0043 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0044 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0045 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashPlayerApp.exe/ 2
    0046 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\{2CA4F306-B280-4ab2-B5E1-1DFA3583F046}/C:\WINDOWS\system32\FlashPlayerCPLApp.c pl 2
    0047 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0048 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0049 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0050 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0051 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0052 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0053 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0054 [W] 00001036 Software\Opera Software/Plugin Path 2
    0055 [W] 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/11.4.402.287 2012-11-30+14-44-01.593 ========
    =O====== M/11.5.502.110 2012-11-30+15-47-26.875 ========
    0000 [I] 00000010 "C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_5_502_110_ActiveX.exe" -refreshIEElevationPolicies
    =X====== M/11.5.502.110 2012-11-30+15-47-27.062 ========
    =O====== M/11.5.502.110 2012-11-30+15-47-22.531 ========
    0000 [I] 00000010 "C:\Documents and Settings\All Users\Application Data\Adobe\AIH.7314133f438213f459420d8d13e1f99d9727fa56\install_flash_player_ax.exe" -install -iv 8 -au 1
    0001 [W] 00001036 Software\Macromedia\FlashPlayer\SafeVersions/11.0 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0005 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0006 [I] 00000013 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_5_502_110.ocx
    0007 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_5_502_110_ActiveX.exe
    0008 [I] 00000016 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_5_502_110_ActiveX.dll
    0009 [I] 00000023 C:\WINDOWS\system32\Macromed\Flash\activex.vch
    0010 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0011 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0012 [I] 00000012
    =X====== M/11.5.502.110 2012-11-30+15-47-28.484 ========
    =O====== M/11.5.502.110 2012-11-30+15-49-57.781 ========
    0000 [I] 00000010 "C:\Documents and Settings\All Users\Application Data\Adobe\AIH.9947af2949bc1e81dd7b96b50528d1baf6bac22b\install_flash_player.exe" -install -iv 8 -au 1
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0003 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0004 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0005 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0006 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0007 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0008 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0009 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0010 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0011 [W] 00001036 Software\Opera Software/Plugin Path 2
    0012 [W] 00001036 Software\Opera Software/Plugin Path 2
    0013 [I] 00000014 C:\WINDOWS\system32\Macromed\Flash\NPSWF32_11_5_502_110.dll
    0014 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_5_502_110_Plugin.exe
    0015 [I] 00000024 C:\WINDOWS\system32\Macromed\Flash\plugin.vch
    0016 [I] 00000017 C:\WINDOWS\system32\Macromed\Flash
    0017 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0018 [W] 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0019 [W] 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0020 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0021 [W] 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0022 [I] 00000012
    =X====== M/11.5.502.110 2012-11-30+15-50-02.031 ========
    =O====== M/11.5.502.135 2012-12-18+12-08-59.187 ========
    0000 [I] 00000010 "C:\DOCUME~1\KEITHA~1.DUN\LOCALS~1\Temp\{AB857A0A-32D6-44DB-9A26-2FF8EEEADB17}\InstallFla shPlayer.exe" -iv 4
    0001 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0002 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0003 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0004 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0005 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0006 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0007 [W] 00001036 Software\Opera Software/Plugin Path 2
    0008 [W] 00001036 Software\Opera Software/Plugin Path 2
    0009 [W] 00001015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_5_502_110_Plugin.exe 5
    0010 [I] 00000014 C:\WINDOWS\system32\Macromed\Flash\NPSWF32_11_5_502_135.dll
    0011 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_5_502_135_Plugin.exe
    0012 [I] 00000024 C:\WINDOWS\system32\Macromed\Flash\plugin.vch
    0013 [I] 00000017 C:\WINDOWS\system32\Macromed\Flash
    0014 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0015 [W] 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0016 [W] 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0017 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0018 [W] 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0019 [I] 00000012
    =X====== M/11.5.502.135 2012-12-18+12-09-16.328 ========
    =O====== M/11.5.502.110 2012-12-18+12-06-47.359 ========
    0000 [I] 00000010 "C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_5_502_110_Plugin.exe" -update plugin
    0001 [I] 00000011 0
    =X====== M/11.5.502.110 2012-12-18+12-31-26.328 ========
    =O====== M/11.5.502.135 2012-12-20+17-46-14.109 ========
    0000 [I] 00000010 C:\DOCUME~1\KEITHA~1.DUN\LOCALS~1\Temp\60377607-a0fb-49b0-adba-9235c435df33687\install_fl ash_player_11_active_x.exe -install -force
    0001 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0002 [I] 00000013 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_5_502_135.ocx
    0003 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_5_502_135_ActiveX.exe
    0004 [I] 00000016 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_5_502_135_ActiveX.dll
    0005 [I] 00000023 C:\WINDOWS\system32\Macromed\Flash\activex.vch
    0006 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0007 [W] 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0008 [W] 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0009 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0010 [W] 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    =X====== M/11.5.502.135 2012-12-20+17-46-22.359 ========
    2012-12-20+17-47-33.265 [error] 1226 1062
    =O====== M/11.5.502.135 2012-12-20+17-47-27.062 ========
    0000 [I] 00000010 C:\DOCUME~1\KEITHA~1.DUN\LOCALS~1\Temp\60377607-a0fb-49b0-adba-9235c435df33687\install_fl ash_player_11_active_x.exe -install -force
    0001 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0002 [I] 00000013 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_5_502_135.ocx
    0003 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_5_502_135_ActiveX.exe
    0004 [I] 00000016 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_5_502_135_ActiveX.dll
    0005 [I] 00000023 C:\WINDOWS\system32\Macromed\Flash\activex.vch
    0006 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0007 [W] 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0008 [W] 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0009 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0010 [W] 00001106
    0011 [W] 00001106
    0012 [W] 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    =X====== M/11.5.502.135 2012-12-20+17-47-33.296 ========
    -kd5-

  • LR 2.4 crashing on 500d cr2 files - CameraRaw!CTJPEGRotateImage

    LR 2.4 is consistently crashing while viewing cr2 files from a Canon 500d / T1i.  I've just recently started using LR, but unfortunately it crashes so frequently (within a minute or two) that I haven't made it much past just importing my photos and starting to add keywords and delete rejects.  I'm curious if anyone else is running into this type of issue.  At this point my only real option is to give up on LR (just use DPP and then PS CS4) or perhaps try it on another PC in hopes that there's some incompatibility/problem on this specific box. . .  I hate to do this as we have LR licenses at work already plus I'd love to purchase it for home use as well. . .
    Environment:
    Windows XP x64 SP2
    LR DB on local NTFS
    CR2 files on mapped network drive.
    See Dr. Watson below for more. . .
    Steps to reproduce:
      Do a couple of the following actions (all in the Library module):
        Select imags and add keywords in grid view
        Zoom in and out on a couple of images
        Switch folders and repeat the first couple of steps
    Usually I get crashes by doing this within a minute or two and by manipulating about 20-50 files (so very quickly).
    Here is some of my exception information (access viloation exception)
    Microsoft (R) DrWtsn32
    Copyright (C) 1985-2002 Microsoft Corp. All rights reserved.
    Application exception occurred:
            App: C:\Program Files (x86)\Adobe\Adobe Photoshop Lightroom 2.4\lightroom.exe (pid=2464)
            When: 7/10/2009 @ 00:36:34.343
            Exception number: c0000005 (access violation)
    *----> System Information <----*
            Computer Name: IGRAINE
            User Name: dath
            Terminal Session Id: 0
            Number of Processors: 2
            Processor Type: AMD64 Family 15 Model 107 Stepping 2
            Windows Version: 5.2
            Current Build: 3790
            Service Pack: 2
            Current Type: Multiprocessor Free
    <SNIP, SNIP>
    Several threads look similar to this backtrace (I can post up a full dump/Dr. Watson for support if they're interested...):
    *----> Stack Back Trace <----*
    *** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\WINDOWS\syswow64\kernel32.dll -
    *** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\Program Files (x86)\Adobe\Adobe Photoshop Lightroom 2.4\CameraRaw.dll -
    *** ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\WINDOWS\system32\PSAPI.DLL -
    ChildEBP RetAddr  Args to Child             
    WARNING: Stack unwind information not available. Following frames may be wrong.
    002dd1cc 7d4d8c0d 00000348 00000064 00000000 ntdll!NtWaitForSingleObject+0x15
    002dd1e0 605a161f 00000348 00000064 002dd564 kernel32!WaitForSingleObject+0x12
    09f86310 ffffffff 00000000 00000000 00000000 CameraRaw!CTJPEGRotateImage+0x14e2f
    0fef0328 09f86310 0fef0358 0fef0f60 00000000 0xffffffff
    00000000 00000000 00000000 00000000 00000000 0x9f86310
    Thanks!
    -dath

    Just for reference, my LR database is on my local disk, not on my network drive.  I have no issues using this network share with any other programs (such as DPP or Explorer).
    I have all of the latest updates available from MS update, including the latest video driver from their site for my Nvidia 7900GS.  I'll check the Nvidia site and see if there are any other (newer) drivers available directly from them.
    It has been a long while since I've done anything with RAW files, so this is really in all practicality my first experience and definitely so on this PC (I had a Canon G1, so yeah, a *long* time;->).  I probably have some older G1 raw files around I could try working with as well if messing with the video drivers doesn't make any difference.
    I'll make some adjustments and get back to folks with results, thanks for the suggestions so far!
    -dath

Maybe you are looking for

  • VMware Fusion with XP no longer connects to internet or wireless printer

    I have an IMAC 24" with 4 GB of memory and an intel based platform. Could a recent apple software update (seem to remember ITunes & a security update) on my windows xp virtual machine operated by vmare fusion have caused my internet and networked wir

  • Connecting new printer to laptop by wireless network

    Followed the installation procedure  from HP laptop with successful diagnostic results but could not get it to work from 'print' instruction from laptop.Checking the computer settings it shows an HPenvy 5530 driver (offline) with my two jobs requeste

  • First photo order from apple cuts off subjects head

    Who is the genius at the Apple developing room who needs to crop a photo so that the subjects head is cut off? Usually when you send a picture into a photo store, they get it right the first time without exercising their creative PHOTOGRAPHER abiliti

  • Cannot synchronize as "medium not found"

    I had a G2 (4GB) nano, worked well. Then we got a G3 nano (also 4 GB) and I connected it straight to my iTunes (didn't check before that it has to be under different user accounts Registered the new nano under another name, but somehow the whole proc

  • Integration using XML

    Good morning to everyone! I am still very new to XML. Currently, I have a problem in integrating 2 different systems. In my hand , I have an asset management system that written in J2EE environment and from here I need to integrate with SAP system. B