Error msg: Current user does not have privileges to perform product Activation

I am running Adobe Photoshop CS 8.0 on Windows Home Vista platform.
I keep getting this error message when I try to open Photoshop:
Current user does not have privileges to perform product activation. Run this application from a user account with administrative privileges or contact your system administrator.
I am the only owner & user of this software. I have re-installed the SW once (full install), and the error message went away for a while.
Now it's come back.
What do I do now?

2 options:
Either disable UAC (User Access Controls) or run the application with Administrator rights.

Similar Messages

  • User does not have privileges to update item :

    Hi guys
    Wondering if anyone has ever hit this before.
    I've created an item using the APPS user ego_item_pub.process_items routine, and then I want to add catalog descriptive elements to it.
    So I use the following code :
    declare
          l_cat_rec          inv_item_category_pub.category_rec_type;
          l_cat_item         inv_item_catalog_elem_pub.item_desc_element;
          l_cat_tab          inv_item_catalog_elem_pub.item_desc_element_table;
          l_cat_tab_ind      NUMBER := 0;
         l_return_status     VARCHAR2(4000);
         l_msg_count         NUMBER;
         l_msg_data          VARCHAR2(4000);
         l_message           VARCHAR2(4000);    
         v_message           VARCHAR2(4000);    
         v_generated_descr   VARCHAR2(4000);
         v_msg_index_out     NUMBER;
    begin
      l_cat_item    := NULL;
      l_cat_tab_ind := l_cat_tab_ind + 1;                 
      l_cat_item.element_name        := 'Software Version';
      l_cat_item.element_value       := SUBSTR('SP2',1,30);
      l_cat_item.description_default := 'N';
      l_cat_tab(l_cat_tab_ind)       := l_cat_item;
      -- catalog has been created, so add                 
         ego_item_pub.Process_item_descr_elements
           p_api_version             => 1.0,
           p_init_msg_list           => fnd_api.g_true,
           p_commit_flag             => fnd_api.g_false,
           p_inventory_item_id       => 43694,
           p_item_desc_element_table => l_cat_tab,       
           x_generated_descr         => v_generated_descr,     
           x_return_status           => l_return_status,
           x_msg_count               => l_msg_count,
           x_msg_data                => l_msg_data
    dbms_output.put_line(l_msg_count||' errors ');    
      IF l_msg_count > 0 THEN
        FOR v_index IN 1 .. l_msg_count
        LOOP
          fnd_msg_pub.get (p_msg_index => v_index, p_encoded => 'F', p_data => l_msg_data, p_msg_index_out => v_msg_index_out);
          v_message := SUBSTR (l_msg_data, 1, 3000);
    dbms_output.put_line (v_message||v_generated_descr);
        END LOOP;
      END IF;    
    end;And I get the error message :
    " User does not have privileges to update Item E/742/3/N/A. "
    So I created the item as apps, but do not have the privilege to add elements to it as apps ?
    Any ideas ?

    Login as the same user, use the same responsibility and then try to do the exact same update (item/field/value) using the screen.
    Then use the api.
    Make sure you add a line to set the context properly before calling ego_item_pub.
    I did not see that in your code.
    something like
    fnd_client_info.setup_client_info(&appl_id, &resp_id, &user_id) -- replace the variables with the appropriate value
    Hope this helps,
    Sandeep Gandhi

  • PSCONFIG - error - USer does not have permission to perform this action

    After installation fo July 14 CU in the sharepoint 2013 server, getting the below error when i ran the PSCONFIG command.
    "An exception of type System.Data.SQLClient.SqlException was thrown. Additional Exception information: USer does not have permission to perform this action"
    My service accounts have db_Owner, db_SecurityAdmin, public, and SPDataAccess to the CONFIG DB.
    Added the services to the local admin group also.
    I am not sure why i am getting this error.
    Any help is much appreciated.
    Thank u

    Hi,
    Did you run SharePoint configuration wizard after applying
    July 14 CU?
    you need to run the wizard after installing the CU.
    Please remember to click Mark as Answer on the answer if it helps you

  • The logged in user does not have permissions to perform this operation

    OIM 11.1.2.0.4
    Connector: Microsoft Active Directory User Management 11.1.1.5.0
    Action: revoke a provisioned AD account (logged in user is XELSYSADM member of SYSTEM ADMINISTRATIONS role)
    Error message: IAM-2050243 : Orchestration process with id 5756, failed with error message IAM-4065011 : An error occurred in oracle.iam.provisioning.spi.DOBProvisioningMechanism/revoke(Account) while revoking account with id 1 for the user with key 43 and the cause of error is The logged in user does not have permissions to perform this operation..

    The problem is missing entries into table AAD, Provisioning API uses table AAD to check administrator's scope on the user's organization.
    TEST: following SQL statement should return at least a value
    select aad_write, aad_delete
    from aad aad
    , usr usr
    where aad.act_key = usr.act_key
    and usr.usr_key = <user_key_of_user_you_wanto_to_revoke>
    and aad.ugp_key in (
    select ugp.ugp_key
    from ugp ugp
    , usg usg
    where ugp.ugp_key = usg.ugp_key
    and usg.usr_key = <user_key_of_xelsysadm>
    BUG (in my case): if you create an Organization using a OIM user that does not have any Role (except default ALL USERS Role) the system does NOT add right entries into AAD table, so you can revoke account of users that are members of this Organization
    WORKAROUND: manually insert entries for all Organizations (ACT_KEYs) for the user XELSYSADM into AAD table
    FIX: always create an Organization using a OIM users with at least one Role except ALL USERS role

  • CREATE USER, User does not have permission to perform this action.

    -- first, connect to the master database
    CREATE LOGIN login1 WITH password='Qwerty12345';
    CREATE USER login1User FROM LOGIN login1;
    EXEC sp_addrolemember 'dbmanager', 'login1User';
    EXEC sp_addrolemember 'loginmanager', 'login1User';After, I connect to database 'master' with 'login1User' and execute:CREATE LOGIN login2 WITH password='Qwerty12345'; - okCREATE USER login2User FROM LOGIN login2; - User does not have permission to perform this action.

    Hi Vit007,
    Please check the two database role: 'dbmanager' and 'loginmanager'.
    CREATE USER Requires ALTER ANY USER permission on the database.
    Iric Wen
    TechNet Community Support
    select rm.*, dp2.name AS 'User', dp1.name AS 'Role' from sys.database_role_members rm LEFT JOIN sys.database_principals dp1 ON rm.role_principal_id = dp1.principal_id LEFT JOIN sys.database_principals dp2 ON rm.member_principal_id = dp2.principal_id
    role_principal_id
    member_principal_id
    User   Role
    6  8 
    login1 dbmanager
    7 8 
    login1 loginmanager

  • System Identity User does not have privileges in ACS

    Hello Everyone!!
    We have CiscoWorks integrated with ACS, the authentication works but the authorization does not. I check and we have the role System Administration for this user in ACS for every applications like; Common Services, RME, DFM, IPM, Campus Manager, etc.
    However in the Common Services < Home < Security< ACS appears the integration in red color and means that the System Identity User does not have all the privileges in ACS.
    Any idea??
    Kathy

    Login as the same user, use the same responsibility and then try to do the exact same update (item/field/value) using the screen.
    Then use the api.
    Make sure you add a line to set the context properly before calling ego_item_pub.
    I did not see that in your code.
    something like
    fnd_client_info.setup_client_info(&appl_id, &resp_id, &user_id) -- replace the variables with the appropriate value
    Hope this helps,
    Sandeep Gandhi

  • Error Loged On user does not have permission to use this object

    Hi all,
    I am trying to Export Document Data in XML format
    for OSalesinvoice or oPurchaseInovice object it is working fine
      But if i use oPurchaseTaxInvoice it is giving error
    "An unhandled exception of type 'System.Runtime.InteropServices.COMException' occurred in myDUAPI.exe "
    "Additional information: The Loged On user does not have permission to use this object"
    I have logged as "manger" "manager"
    Dim oInv As SAPbobsCOM.Documents
            'oInv = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices)
            'oInv = vCmp.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseInvoices)
            oInv = vCmp.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseTaxInvoice)
            If oInv.GetByKey("9") Then
                oInv.SaveXML("C:\downloads\purinvtax.xml")
            Else
                MessageBox.Show("couldn't find it")
            End If

    Hi Sudish,
    It looks to me that the logged on user is only a CRM user. You need to have a professional user license to access Invoices.
    If you're using only the DI API, please check which user name you are using to connect to DI. If you're using UI API with single sign on, the logged on user to SBO is not a professional user or don't have the correct authorisation.
    Hope it helps,
    Adele

  • Install flash Player error Message:the user does not have suffucient privilages to install flash pl

    I have tried it all: clean install, de-activated virus program, run as administrator. Still same message "the user does not have suffucient privilages to install flash player". Using windows 7, 64-bit mozilla 24.0. Please help.
    TIA 

    C:\Windows\System32\Macromed\Flash
    =O====== M/11.9.900.117 2013-10-20+00-30-13.104 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Temp\{3645AE40-5A7B-4282-9D4D-89BB84123E9E}\InstallFlashPla yer.exe" -install -skipARPEntry -iv 8 -au 0
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0003 [I] 00000020 C:\Windows\SysWOW64\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\MaintenanceService\extensions/Plugins 2
    0007 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0008 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0009 [W] 00001036 Software\Opera Software/Plugin Path 2
    0010 [W] 00001036 Software\Opera Software/Plugin Path 2
    0011 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_9_900_117.dll
    0012 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_9_900_117_Plugin.exe
    0013 [I] 00000024 C:\Windows\system32\Macromed\Flash\plugin.vch
    0014 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0015 [I] 00000012
    =X====== M/11.9.900.117 2013-10-20+00-30-24.959 ========
    =O====== M/11.9.900.117 2013-10-20+00-42-24.477 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Temp\{144CB2BF-17F9-4EBC-8036-A2530AB94FE9}\InstallFlashPla yer.exe" -install -skipARPEntry -iv 8 -au 0
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0004 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0005 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0006 [W] 00001036 Software\Opera Software/Plugin Path 2
    0007 [W] 00001036 Software\Opera Software/Plugin Path 2
    0008 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_9_900_117.dll
    0009 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_9_900_117_Plugin.exe
    0010 [I] 00000024 C:\Windows\system32\Macromed\Flash\plugin.vch
    0011 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0012 [I] 00000012
    =X====== M/11.9.900.117 2013-10-20+00-42-37.074 ========
    =O====== M/11.9.900.117 2013-10-20+00-48-05.461 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Temp\{4CCDA36F-A8AF-4444-89A4-43B3438CEB33}\InstallFlashPla yer.exe" -install -skipARPEntry -iv 8 -au 0
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0004 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0005 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0006 [W] 00001036 Software\Opera Software/Plugin Path 2
    0007 [W] 00001036 Software\Opera Software/Plugin Path 2
    0008 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_9_900_117.dll
    0009 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_9_900_117_Plugin.exe
    0010 [I] 00000024 C:\Windows\system32\Macromed\Flash\plugin.vch
    0011 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0012 [I] 00000012
    =X====== M/11.9.900.117 2013-10-20+00-48-20.070 ========
    =O====== M/11.9.900.117 2013-10-20+00-57-35.239 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Temp\{F62D46AF-3AFB-476C-9A41-F3EECE64951C}\InstallFlashPla yer.exe" -install -skipARPEntry -iv 8 -au 0
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0004 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0005 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0006 [W] 00001036 Software\Opera Software/Plugin Path 2
    0007 [W] 00001036 Software\Opera Software/Plugin Path 2
    0008 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_9_900_117.dll
    0009 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_9_900_117_Plugin.exe
    0010 [I] 00000024 C:\Windows\system32\Macromed\Flash\plugin.vch
    0011 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0012 [I] 00000012
    =X====== M/11.9.900.117 2013-10-20+00-57-45.641 ========
    =O====== M/11.9.900.117 2013-10-20+01-08-37.577 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Temp\{9F129C9D-29C9-4709-BA49-414DB1786651}\InstallFlashPla yer.exe" -install -skipARPEntry -iv 8 -au 1
    0001 [F] 00001041
    =X====== M/11.9.900.117 2013-10-20+01-08-41.689 ========
    =O====== M/11.9.900.117 2013-10-20+01-09-04.552 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Temp\{0EDB7E38-BE52-4B1A-80C7-A2FD89401A3A}\InstallFlashPla yer.exe" -install -skipARPEntry -iv 8 -au 1
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0004 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0005 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0006 [W] 00001036 Software\Opera Software/Plugin Path 2
    0007 [W] 00001036 Software\Opera Software/Plugin Path 2
    0008 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_9_900_117.dll
    0009 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_9_900_117_Plugin.exe
    0010 [I] 00000024 C:\Windows\system32\Macromed\Flash\plugin.vch
    0011 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0012 [I] 00000012
    =X====== M/11.9.900.117 2013-10-20+01-09-14.189 ========
    =O====== M/11.9.900.117 2013-10-20+02-09-06.555 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Temp\{96FC46A7-B89B-428E-857F-DF7FB8F6E2E1}\InstallFlashPla yer.exe" -install -skipARPEntry -iv 8 -au 1
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0004 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0005 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0006 [W] 00001036 Software\Opera Software/Plugin Path 2
    0007 [W] 00001036 Software\Opera Software/Plugin Path 2
    0008 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_9_900_117.dll
    0009 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_9_900_117_Plugin.exe
    0010 [I] 00000024 C:\Windows\system32\Macromed\Flash\plugin.vch
    0011 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0012 [I] 00000012
    =X====== M/11.9.900.117 2013-10-20+02-09-25.437 ========
    =O====== M/11.9.900.117 2013-10-20+02-15-14.729 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Temp\{9DED1BAC-1BD8-479B-9A35-0709B70D31AF}\InstallFlashPla yer.exe" -install -skipARPEntry -iv 8 -au 1
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0004 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0005 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0006 [W] 00001036 Software\Opera Software/Plugin Path 2
    0007 [W] 00001036 Software\Opera Software/Plugin Path 2
    0008 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_9_900_117.dll
    0009 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_9_900_117_Plugin.exe
    0010 [I] 00000024 C:\Windows\system32\Macromed\Flash\plugin.vch
    0011 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0012 [I] 00000012
    =X====== M/11.9.900.117 2013-10-20+02-15-28.759 ========
    =O====== M/11.9.900.117 2013-10-20+02-21-12.886 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Temp\{9758D9CC-9552-4494-BC76-35039D5B6491}\InstallFlashPla yer.exe" -install -skipARPEntry -iv 8 -au 1
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 [W] 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0004 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0005 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0006 [W] 00001036 Software\Opera Software/Plugin Path 2
    0007 [W] 00001036 Software\Opera Software/Plugin Path 2
    0008 [I] 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_9_900_117.dll
    0009 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_9_900_117_Plugin.exe
    0010 [I] 00000024 C:\Windows\system32\Macromed\Flash\plugin.vch
    0011 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0012 [I] 00000012
    =X====== M/11.9.900.117 2013-10-20+02-21-26.384 ========
    =O====== M/11.9.900.117 2013-10-21+04-47-35.202 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Temp\{B8243ABE-FAAD-4536-AD99-FF433D99A1F8}\InstallFlashPla yer.exe" -install -skipARPEntry -iv 8 -au 1
    0001 [W] 00001036 Software\Macromedia\FlashPlayer\SafeVersions/11.0 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0004 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0005 [I] 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_9_900_117.ocx
    0006 [I] 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_9_900_117_ActiveX.exe
    0007 [I] 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_9_900_117_ActiveX.dll
    0008 [I] 00000023 C:\Windows\system32\Macromed\Flash\activex.vch
    0009 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0010 [I] 00000012
    =X====== M/11.9.900.117 2013-10-21+04-47-47.770 ========
    =O====== M/11.9.900.117 2013-10-22+21-52-48.047 ========
    0000 [I] 00000010 "C:\Users\nutnut\AppData\Local\Temp\{2F742732-39EA-4399-9D88-71B6BC052EB4}\InstallFlashPl ayer.exe" -install -skipARPEntry -iv 8 -au 1
    0001 [F] 00001041
    =X====== M/11.9.900.117 2013-10-22+21-52-55.215 ========
    =O====== M/11.9.900.117 2013-10-22+22-02-40.301 ========
    C:\Windows\Syswow64\Macromed\Flash:
    =O====== M/11.9.900.117 2013-10-20+00-29-59.546 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Adobe\AIH.68d8c3aa340533740b548aaf64f9e6a853cb322f\install_ flash_player.exe" -install -iv 8 -au 0
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0003 [I] 00000011 1
    0004 [I] 00000020 C:\Windows\SysWOW64\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 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0014 [W] 00001045 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0015 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0016 [I] 00000014 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_9_900_117.dll
    0017 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_9_900_117_Plugin.exe
    0018 [I] 00000024 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch
    0019 [E] 00001031 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch:5
    =X====== M/11.9.900.117 2013-10-20+00-30-30.765 ========
    =O====== M/11.9.900.117 2013-10-20+00-42-13.527 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Adobe\AIH.68d8c3aa340533740b548aaf64f9e6a853cb322f\install_ flash_player.exe" -install -iv 8 -au 0
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0003 [I] 00000011 1
    0004 [I] 00000020 C:\Windows\SysWOW64\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 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0014 [W] 00001045 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0015 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0016 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashUtil32_11_9_900_117_Plugin.exe/ 2
    0017 [I] 00000014 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_9_900_117.dll
    0018 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_9_900_117_Plugin.exe
    0019 [I] 00000024 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch
    0020 [E] 00001031 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch:5
    =X====== M/11.9.900.117 2013-10-20+00-42-43.227 ========
    =O====== M/11.9.900.117 2013-10-20+00-47-54.274 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Adobe\AIH.68d8c3aa340533740b548aaf64f9e6a853cb322f\install_ flash_player.exe" -install -iv 8 -au 0
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0003 [I] 00000011 1
    0004 [I] 00000020 C:\Windows\SysWOW64\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 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0014 [W] 00001045 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0015 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0016 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashUtil32_11_9_900_117_Plugin.exe/ 2
    0017 [I] 00000014 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_9_900_117.dll
    0018 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_9_900_117_Plugin.exe
    0019 [I] 00000024 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch
    0020 [E] 00001031 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch:5
    =X====== M/11.9.900.117 2013-10-20+00-48-26.982 ========
    =O====== M/11.9.900.117 2013-10-20+00-57-24.025 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Adobe\AIH.68d8c3aa340533740b548aaf64f9e6a853cb322f\install_ flash_player.exe" -install -iv 8 -au 0
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0003 [I] 00000011 1
    0004 [I] 00000020 C:\Windows\SysWOW64\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 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0014 [W] 00001045 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0015 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0016 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashUtil32_11_9_900_117_Plugin.exe/ 2
    0017 [I] 00000014 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_9_900_117.dll
    0018 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_9_900_117_Plugin.exe
    0019 [I] 00000024 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch
    0020 [E] 00001031 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch:5
    =X====== M/11.9.900.117 2013-10-20+00-57-51.752 ========
    =O====== M/11.9.900.117 2013-10-20+01-08-28.389 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Adobe\AIH.68d8c3aa340533740b548aaf64f9e6a853cb322f\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] 00000011 1
    0004 [E] 00001041
    =X====== M/11.9.900.117 2013-10-20+01-08-41.749 ========
    =O====== M/11.9.900.117 2013-10-20+01-08-55.935 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Adobe\AIH.68d8c3aa340533740b548aaf64f9e6a853cb322f\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] 00000011 1
    0004 [I] 00000020 C:\Windows\SysWOW64\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 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0014 [W] 00001045 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0015 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0016 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashUtil32_11_9_900_117_Plugin.exe/ 2
    0017 [I] 00000014 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_9_900_117.dll
    0018 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_9_900_117_Plugin.exe
    0019 [I] 00000024 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch
    0020 [E] 00001031 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch:5
    =X====== M/11.9.900.117 2013-10-20+01-09-19.237 ========
    =O====== M/11.9.900.117 2013-10-20+02-08-49.807 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Adobe\AIH.68d8c3aa340533740b548aaf64f9e6a853cb322f\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] 00000011 1
    0004 [I] 00000020 C:\Windows\SysWOW64\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 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0014 [W] 00001045 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0015 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0016 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashUtil32_11_9_900_117_Plugin.exe/ 2
    0017 [I] 00000014 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_9_900_117.dll
    0018 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_9_900_117_Plugin.exe
    0019 [I] 00000024 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch
    0020 [E] 00001031 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch:5
    =X====== M/11.9.900.117 2013-10-20+02-09-36.730 ========
    =O====== M/11.9.900.117 2013-10-20+02-15-03.110 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Adobe\AIH.68d8c3aa340533740b548aaf64f9e6a853cb322f\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] 00000011 1
    0004 [I] 00000020 C:\Windows\SysWOW64\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 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0014 [W] 00001045 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0015 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0016 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashUtil32_11_9_900_117_Plugin.exe/ 2
    0017 [I] 00000014 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_9_900_117.dll
    0018 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_9_900_117_Plugin.exe
    0019 [I] 00000024 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch
    0020 [E] 00001031 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch:5
    =X====== M/11.9.900.117 2013-10-20+02-15-35.790 ========
    =O====== M/11.9.900.117 2013-10-20+02-20-59.971 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Adobe\AIH.68d8c3aa340533740b548aaf64f9e6a853cb322f\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] 00000011 1
    0004 [I] 00000020 C:\Windows\SysWOW64\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 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0014 [W] 00001045 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0015 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0016 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashUtil32_11_9_900_117_Plugin.exe/ 2
    0017 [I] 00000014 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_9_900_117.dll
    0018 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_9_900_117_Plugin.exe
    0019 [I] 00000024 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch
    0020 [E] 00001031 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch:5
    =X====== M/11.9.900.117 2013-10-20+02-21-32.828 ========
    =O====== M/11.9.900.117 2013-10-21+04-47-19.055 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Adobe\AIH.a94e601883d676c526a90c1c321d6ea048c0fe47\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 [I] 00000011 1
    0004 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0006 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_9_900_117.ocx
    0007 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_9_900_117_ActiveX.exe
    0008 [I] 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_9_900_117_ActiveX.dll
    0009 [I] 00000023 C:\Windows\SysWOW64\Macromed\Flash\activex.vch
    0010 [E] 00001031 C:\Windows\SysWOW64\Macromed\Flash\activex.vch:5
    =X====== M/11.9.900.117 2013-10-21+04-47-54.161 ========
    =O====== M/11.9.900.117 2013-10-22+21-52-36.104 ========
    0000 [I] 00000010 "C:\Users\nutnut\AppData\Local\Adobe\AIH.fadff808ef68abc467f97a8a1edb6baf2637d497\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] 00000011 1
    0004 [E] 00001041
    =X====== M/11.9.900.117 2013-10-22+21-52-55.471 ========
    =O====== M/11.9.900.117 2013-10-22+22-02-29.829 ========
    0000 [I] 00000010 "C:\Users\nutnut\AppData\Local\Adobe\AIH.fadff808ef68abc467f97a8a1edb6baf2637d497\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] 00000011 1
    0004 [I] 00000020 C:\Windows\SysWOW64\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 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0014 [W] 00001045 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0015 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0016 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashUtil32_11_9_900_117_Plugin.exe/ 2
    0017 [I] 00000014 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_9_900_117.dll
    0018 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_9_900_117_Plugin.exe
    0019 [I] 00000024 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch
    0020 [E] 00001031 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch:5
    =X====== M/11.9.900.117 2013-10-22+22-02-57.498 ========
    =O====== M/11.9.900.117 2013-10-22+22-12-37.302 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Adobe\AIH.68d8c3aa340533740b548aaf64f9e6a853cb322f\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] 00000011 1
    0004 [I] 00000020 C:\Windows\SysWOW64\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 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0014 [W] 00001045 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0015 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0016 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashUtil32_11_9_900_117_Plugin.exe/ 2
    0017 [I] 00000014 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_9_900_117.dll
    0018 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_9_900_117_Plugin.exe
    0019 [I] 00000024 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch
    0020 [E] 00001031 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch:5
    =X====== M/11.9.900.117 2013-10-22+22-13-01.133 ========
    =O====== M/11.9.900.117 2013-10-23+01-03-51.031 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Adobe\AIH.68d8c3aa340533740b548aaf64f9e6a853cb322f\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] 00000011 1
    0004 [I] 00000020 C:\Windows\SysWOW64\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 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0014 [W] 00001045 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0015 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0016 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashUtil32_11_9_900_117_Plugin.exe/ 2
    0017 [I] 00000014 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_9_900_117.dll
    0018 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_9_900_117_Plugin.exe
    0019 [I] 00000024 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch
    0020 [E] 00001031 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch:5
    =X====== M/11.9.900.117 2013-10-23+01-04-34.267 ========
    =O====== M/11.9.900.117 2013-10-23+01-54-49.889 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Adobe\AIH.68d8c3aa340533740b548aaf64f9e6a853cb322f\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] 00000011 1
    0004 [I] 00000020 C:\Windows\SysWOW64\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 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0014 [W] 00001045 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0015 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0016 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashUtil32_11_9_900_117_Plugin.exe/ 2
    0017 [I] 00000014 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_9_900_117.dll
    0018 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_9_900_117_Plugin.exe
    0019 [I] 00000024 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch
    0020 [E] 00001031 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch:5
    =X====== M/11.9.900.117 2013-10-23+01-55-16.870 ========
    =O====== M/11.9.900.117 2013-10-26+23-54-56.408 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Adobe\AIH.ac1f66266b3a1ed15e6854de7e879da6668923ee\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] 00000011 1
    0004 [E] 00001041
    =X====== M/11.9.900.117 2013-10-26+23-55-17.018 ========
    =O====== M/11.9.900.117 2013-10-26+23-55-32.451 ========
    0000 [I] 00000010 "C:\Users\Donut\AppData\Local\Adobe\AIH.ac1f66266b3a1ed15e6854de7e879da6668923ee\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] 00000011 1
    0004 [I] 00000020 C:\Windows\SysWOW64\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 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0014 [W] 00001045 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0015 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\flashplayer.xpt 5
    0016 [W] 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\\FlashUtil32_11_9_900_117_Plugin.exe/ 2
    0017 [I] 00000014 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_9_900_117.dll
    0018 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_9_900_117_Plugin.exe
    0019 [I] 00000024 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch
    0020 [E] 00001031 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch:5
    =X====== M/11.9.900.117 2013-10-26+23-56-07.233 ========

  • The user does not have permission to perform the operation

    Hi,
    Configuration: JES Q405. Solaris 10 x86.
    My customer initially installed JES (Portal + AM + DS) on the same box.
    Now, they have a change in their requirement. They want DS to run dedicatedly in another box.
    I have successfully installed a fresh instance of DS in the new box with the same domain name (thus maintaining the same dn). I have copied over 99user.ldif and exported all the data from the original DS in the old box.
    Everything is running fine. DS in the new box is able to function properly.
    On the Portal and AM side, I have changed the following file:
    1. AMConfig.properties
    2. serverconfig.xml
    3. PSConfig.properties
    I have also changed the Primary LDAP entry in iPlanetAMAuthLDAPService, iPlanetAMAuthMembershipService, and iPlanetAMPolicyConfigService.
    However, when I started AM (which is running on Sun Web Server), I got the following error message:
    ------------------- in /var/opt/SUNWam/debug/amSDK ---------------------------
    05/01/2006 04:46:43:324 PM SGT: Thread[main,5,main]
    ConfigManager->Constructor: root DN dc=sg,dc=com
    05/01/2006 04:46:43:403 PM SGT: Thread[main,5,main]
    Invoking _ldapPool.getConnection()
    05/01/2006 04:46:43:403 PM SGT: Thread[main,5,main]
    Got Connection : LDAPConnection {ldap://sg-dsq405.sg.com:389 ldapVersion:3 bindDN:"cn=puser,ou=DSAME
    Users,dc=sg,dc=com"}
    05/01/2006 04:46:43:410 PM SGT: Thread[main,5,main]
    Invoking _ldapPool.close(conn) : LDAPConnection {ldap://sg-dsq405.sg.com:389 ldapVersion:3 bindDN:"c
    n=puser,ou=DSAME Users,dc=sg,dc=com"}
    05/01/2006 04:46:43:411 PM SGT: Thread[main,5,main]
    Released Connection : LDAPConnection {ldap://sg-dsq405.sg.com:389 ldapVersion:3 bindDN:"cn=puser,ou=
    DSAME Users,dc=sg,dc=com"}
    05/01/2006 04:46:43:411 PM SGT: Thread[main,5,main]
    ERROR: ConfigManager->Constructor: Caught exception Message:The user does not have permission to per
    form the operation.
    ------------------------------------ end --------------------------------------------------
    -------------------------- in /var/opt/SUNWam/debug/amAuth ---------------------
    05/01/2006 04:47:21:252 PM SGT: Thread[main,5,main]
    Directory Host: sg-dsq405.sg.com
    Directory PORT : 389
    05/01/2006 04:47:21:298 PM SGT: Thread[main,5,main]
    AuthD initializing
    05/01/2006 04:47:21:610 PM SGT: Thread[main,5,main]
    ERROR: AuthD failed to get auth session
    05/01/2006 04:47:21:688 PM SGT: Thread[main,5,main]
    ERROR: AuthD init()
    com.iplanet.dpro.session.SessionException: AuthD failed to get auth session
    at com.sun.identity.authentication.service.AuthD.initAuthSessions(AuthD.java:709)
    at com.sun.identity.authentication.service.AuthD.<init>(AuthD.java:229)
    at com.sun.identity.authentication.service.AuthD.getAuth(AuthD.java:494)
    at com.sun.identity.authentication.UI.LoginLogoutMapping.init(LoginLogoutMapping.java:71)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:921)
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:813)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3478)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:3760)
    at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    ----------------------------------------- end --------------------------------------------------
    Any idea how to solve this problem? Thanks in advance!
    justCheeChong
    Message was edited by:
    justCheeChong

    check if the new DS instance has all the AM required ACI's.

  • Error Message:  "The user does not have sufficient privileges to install Adobe Flash Player"

    I cannot install Flash Player.  I have tried every suggestion posted.  My system is Windows 7, 64bit.  I am the system Administrator and am aleardy logged in as such.  What can I do to install this software so that i can run other programs - including "HP Solution Center," so that I can scan documents?

    =O====== M/11.0.1.152 2011-10-11+16-55-48.899 ========
    0000 00000010 "C:\Users\James Fitch\AppData\Local\Temp\install_flash_player_64bit.exe" -dlm -install
    0001 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0003 00001041
    =X====== M/11.0.1.152 2011-10-11+16-55-49.889 ========
    =O====== M/11.0.1.152 2011-10-11+16-56-03.473 ========
    0000 00000010 "C:\Users\James Fitch\AppData\Local\Temp\install_flash_player_64bit.exe" -dlm -install
    0001 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0003 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0004 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0005 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0006 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0007 00001036 Software\Opera Software/Last CommandLine 2
    0008 00001036 Software\Opera Software/Last CommandLine 2
    0009 00001036 Software\Opera Software/Plugin Path 2
    0010 00001036 Software\Opera Software/Plugin Path 2
    0011 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_0_1.dll
    0012 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_0_1_Plugin.exe
    0013 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0014 00000011 1
    =X====== M/11.0.1.152 2011-10-11+16-56-34.186 ========
    =O====== M/11.0.1.152 2011-10-11+16-59-43.443 ========
    0000 00000010 "C:\Users\James Fitch\AppData\Local\Temp\install_flash_player_ax_64bit.exe" -dlm -install
    0001 00001036 Software\Macromedia\FlashPlayer\SafeVersions/11.0 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0004 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0005 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_0_1.ocx
    0006 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_0_1_ActiveX.exe
    0007 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_0_1_ActiveX.dll
    0008 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0009 00000011 1
    =X====== M/11.0.1.152 2011-10-11+17-00-00.853 ========
    =O====== M/11.1.102.55 2011-11-16+14-39-25.286 ========
    0000 00000010 "C:\Users\JAMESF~1\AppData\Local\Temp\18DE.dir\InstallFlashPlayer.exe" -iv 4
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_1_102.ocx
    0003 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_1_102_ActiveX.exe
    0004 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_1_102_ActiveX.dll
    0005 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00000011 1
    =X====== M/11.1.102.55 2011-11-16+14-39-46.829 ========
    =O====== M/11.1.102.62 2012-02-21+14-49-29.478 ========
    0000 00000010 "C:\Users\JAMESF~1\AppData\Local\Temp\6191.dir\InstallFlashPlayer.exe" -iv 4
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_1_102.ocx
    0003 00001024 C:\Windows\system32\Macromed\Flash\Flash64_11_1_102.ocx 183
    0004 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_1_102_ActiveX.exe
    0005 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_1_102_ActiveX.dll
    0006 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 00000011 1
    =X====== M/11.1.102.62 2012-02-21+14-50-48.336 ========
    =O====== M/11.2.202.228 2012-04-05+14-38-52.166 ========
    0000 00000010 "C:\Users\JAMESF~1\AppData\Local\Temp\78F7.dir\InstallFlashPlayer.exe" -iv 4
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_2_202_228.ocx
    0003 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_2_202_228_ActiveX.exe
    0004 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_2_202_228_ActiveX.dll
    0005 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00000011 1
    0007 00000012
    =X====== M/11.2.202.228 2012-04-05+14-39-22.056 ========
    =O====== M/11.2.202.228 2012-04-05+15-02-30.254 ========
    0000 00000010 FlashPlayerInstaller.exe -install -iv 9
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0003 00001036 Software\Opera Software/Last CommandLine 2
    0004 00001036 Software\Opera Software/Last CommandLine 2
    0005 00001036 Software\Opera Software/Plugin Path 2
    0006 00001036 Software\Opera Software/Plugin Path 2
    0007 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_2_202_228.dll
    0008 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_2_202_228_Plugin.exe
    0009 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0010 00000011 1
    0011 00000012
    =X====== M/11.2.202.228 2012-04-05+15-03-03.403 ========
    =O====== M/11.2.202.233 2012-04-14+00-02-47.235 ========
    0000 00000010 FlashPlayerInstaller.exe -install -iv 9
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_2_202_233.ocx
    0003 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_2_202_233_ActiveX.exe
    0004 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_2_202_233_ActiveX.dll
    0005 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00000011 1
    0007 00000012
    =X====== M/11.2.202.233 2012-04-14+00-03-27.530 ========
    =O====== M/11.2.202.233 2012-04-14+01-02-27.675 ========
    0000 00000010 FlashPlayerInstaller.exe -install -iv 9
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0003 00001036 Software\Opera Software/Last CommandLine 2
    0004 00001036 Software\Opera Software/Last CommandLine 2
    0005 00001036 Software\Opera Software/Plugin Path 2
    0006 00001036 Software\Opera Software/Plugin Path 2
    0007 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_2_202_233.dll
    0008 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_2_202_233_Plugin.exe
    0009 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0010 00000011 1
    0011 00000012
    =X====== M/11.2.202.233 2012-04-14+01-02-55.989 ========
    =O====== M/11.2.202.235 2012-05-05+18-02-10.789 ========
    0000 00000010 FlashPlayerInstaller.exe -install -iv 9
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_2_202_235.ocx
    0003 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_2_202_235_ActiveX.exe
    0004 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_2_202_235_ActiveX.dll
    0005 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00000011 1
    0007 00000012
    =X====== M/11.2.202.235 2012-05-05+18-02-33.035 ========
    =O====== M/11.2.202.235 2012-05-05+19-02-11.182 ========
    0000 00000010 FlashPlayerInstaller.exe -install -iv 9
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0003 00001036 Software\Opera Software/Last CommandLine 2
    0004 00001036 Software\Opera Software/Last CommandLine 2
    0005 00001036 Software\Opera Software/Plugin Path 2
    0006 00001036 Software\Opera Software/Plugin Path 2
    0007 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_2_202_235.dll
    0008 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_2_202_235_Plugin.exe
    0009 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0010 00000011 1
    0011 00000012
    =X====== M/11.2.202.235 2012-05-05+19-02-25.238 ========
    =O====== M/11.3.300.262 2012-06-21+13-35-07.156 ========
    0000 00000010 "C:\Users\JAMESF~1\AppData\Local\Temp\{1E2CCF9D-77F5-46ED-A50C-FF8F27CA5A72}\InstallFlash Player.exe" -install -skipARPEntry -iv 4 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0003 00001036 Software\Opera Software/Last CommandLine 2
    0004 00001036 Software\Opera Software/Last CommandLine 2
    0005 00001036 Software\Opera Software/Plugin Path 2
    0006 00001036 Software\Opera Software/Plugin Path 2
    0007 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options
    FlashUtil64_11_2_202_235_Plugin.exe/ 2
    0008 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_3_300_262.dll
    0009 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_3_300_262_Plugin.exe
    0010 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0011 00000012
    =X====== M/11.3.300.262 2012-06-21+13-35-08.185 ========
    =O====== M/11.3.300.257 2012-07-10+14-34-58.942 ========
    0000 00000010 "C:\Users\JAMESF~1\AppData\Local\Temp\{D5248387-CC5B-4BF6-8C77-712876EEA999}\InstallFlash Player.exe" -install -skipARPEntry -iv 4 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options
    FlashUtil64_11_2_202_235_ActiveX.exe/ 2
    0003 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_3_300_257.ocx
    0004 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_3_300_257_ActiveX.exe
    0005 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_3_300_257_ActiveX.dll
    0006 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 00000012
    =X====== M/11.3.300.257 2012-07-10+14-35-33.534 ========
    =O====== M/11.3.300.265 2012-07-12+17-02-30.452 ========
    0000 00000010 "C:\Windows\TEMP\{09F9D606-3B99-4074-895D-4F44ACADA9A2}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_3_300_265.ocx
    0004 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_3_300_265_ActiveX.exe
    0005 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_3_300_265_ActiveX.dll
    0006 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 00000012
    =X====== M/11.3.300.265 2012-07-12+17-02-53.984 ========
    =O====== M/11.3.300.265 2012-07-12+18-02-40.257 ========
    0000 00000010 "C:\Windows\TEMP\{801EC2AF-52F9-4D5C-B608-B52E5FCE8E03}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0005 00001036 Software\Opera Software/Last CommandLine 2
    0006 00001036 Software\Opera Software/Last CommandLine 2
    0007 00001036 Software\Opera Software/Plugin Path 2
    0008 00001036 Software\Opera Software/Plugin Path 2
    0009 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_3_300_265.dll
    0010 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_3_300_265_Plugin.exe
    0011 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0012 00000012
    =X====== M/11.3.300.265 2012-07-12+18-02-48.959 ========
    =O====== M/11.3.300.268 2012-07-27+01-02-23.919 ========
    0000 00000010 "C:\Windows\TEMP\{71D88E0B-7DB2-4A2A-A96C-B5F000CB3CC4}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_3_300_268.ocx
    0004 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_3_300_268_ActiveX.exe
    0005 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_3_300_268_ActiveX.dll
    0006 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 00000012
    =X====== M/11.3.300.268 2012-07-27+01-02-46.084 ========
    =O====== M/11.3.300.268 2012-07-27+02-02-59.372 ========
    0000 00000010 "C:\Windows\TEMP\{FD2D09C8-4C0F-4840-8A94-D70CC9BD4E8D}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0005 00001036 Software\Opera Software/Last CommandLine 2
    0006 00001036 Software\Opera Software/Last CommandLine 2
    0007 00001036 Software\Opera Software/Plugin Path 2
    0008 00001036 Software\Opera Software/Plugin Path 2
    0009 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_3_300_268.dll
    0010 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_3_300_268_Plugin.exe
    0011 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0012 00000012
    =X====== M/11.3.300.268 2012-07-27+02-03-09.277 ========
    =O====== M/11.3.300.270 2012-08-02+17-02-24.098 ========
    0000 00000010 "C:\Windows\TEMP\{087D19F9-C99B-410C-AE15-1C3D04A6FEBB}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_3_300_270.ocx
    0004 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_3_300_270_ActiveX.exe
    0005 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_3_300_270_ActiveX.dll
    0006 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 00000012
    =X====== M/11.3.300.270 2012-08-02+17-02-47.931 ========
    =O====== M/11.3.300.270 2012-08-02+18-02-52.879 ========
    0000 00000010 "C:\Windows\TEMP\{C38F4D37-A3E6-44C5-A907-05B623320A00}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0005 00001036 Software\Opera Software/Last CommandLine 2
    0006 00001036 Software\Opera Software/Last CommandLine 2
    0007 00001036 Software\Opera Software/Plugin Path 2
    0008 00001036 Software\Opera Software/Plugin Path 2
    0009 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_3_300_270.dll
    0010 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_3_300_270_Plugin.exe
    0011 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0012 00000012
    =X====== M/11.3.300.270 2012-08-02+18-03-02.431 ========
    =O====== M/11.3.300.271 2012-08-24+15-02-24.178 ========
    0000 00000010 "C:\Windows\TEMP\{9EC0EE9E-C1DE-4B32-ADC7-01FCF5B9656F}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_3_300_271.ocx
    0004 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_3_300_271_ActiveX.exe
    0005 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_3_300_271_ActiveX.dll
    0006 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 00000012
    =X====== M/11.3.300.271 2012-08-24+15-02-33.291 ========
    =O====== M/11.3.300.271 2012-08-24+16-02-38.141 ========
    0000 00000010 "C:\Windows\TEMP\{78865E82-66B4-46CA-B98A-23A88A087E8B}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0005 00001036 Software\Opera Software/Last CommandLine 2
    0006 00001036 Software\Opera Software/Last CommandLine 2
    0007 00001036 Software\Opera Software/Plugin Path 2
    0008 00001036 Software\Opera Software/Plugin Path 2
    0009 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_3_300_271.dll
    0010 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_3_300_271_Plugin.exe
    0011 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0012 00000012
    =X====== M/11.3.300.271 2012-08-24+16-02-42.386 ========
    =O====== M/11.4.402.278 2012-09-24+16-03-37.362 ========
    0000 00000010 "C:\Windows\TEMP\{76929444-679C-465E-BC3B-6691545EF5B1}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_4_402_278.ocx
    0004 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_4_402_278_ActiveX.exe
    0005 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_4_402_278_ActiveX.dll
    0006 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 00000012
    =X====== M/11.4.402.278 2012-09-24+16-04-36.909 ========
    =O====== M/11.4.402.278 2012-09-24+17-02-24.862 ========
    0000 00000010 "C:\Windows\TEMP\{F6D5B743-C90B-4D74-843A-B69281219029}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0005 00001036 Software\Opera Software/Last CommandLine 2
    0006 00001036 Software\Opera Software/Last CommandLine 2
    0007 00001036 Software\Opera Software/Plugin Path 2
    0008 00001036 Software\Opera Software/Plugin Path 2
    0009 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_4_402_278.dll
    0010 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_4_402_278_Plugin.exe
    0011 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0012 00000012
    =X====== M/11.4.402.278 2012-09-24+17-02-45.213 ========
    =O====== M/11.4.402.287 2012-10-08+22-02-19.581 ========
    0000 00000010 "C:\Windows\TEMP\{BC98FBC6-35ED-4D65-BF84-D5F1C771A18B}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_4_402_287.ocx
    0004 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_4_402_287_ActiveX.exe
    0005 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_4_402_287_ActiveX.dll
    0006 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 00000012
    =X====== M/11.4.402.287 2012-10-08+22-02-46.092 ========
    =O====== M/11.4.402.287 2012-10-08+23-07-19.414 ========
    0000 00000010 "C:\Windows\TEMP\{6099845D-12C5-4A20-B3F7-387FCA816A2B}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0005 00001036 Software\Opera Software/Last CommandLine 2
    0006 00001036 Software\Opera Software/Last CommandLine 2
    0007 00001036 Software\Opera Software/Plugin Path 2
    0008 00001036 Software\Opera Software/Plugin Path 2
    0009 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_4_402_287.dll
    0010 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_4_402_287_Plugin.exe
    0011 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0012 00000012
    =X====== M/11.4.402.287 2012-10-08+23-07-33.696 ========
    =O====== M/11.5.502.110 2012-11-13+14-51-10.768 ========
    0000 00000010 "C:\Users\JAMESF~1\AppData\Local\Temp\{15C344DD-158D-4DBF-BD59-D3BB3E3B2DBB}\InstallFlash Player.exe" -install -skipARPEntry -iv 8 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0005 00001036 Software\Opera Software/Last CommandLine 2
    0006 00001036 Software\Opera Software/Last CommandLine 2
    0007 00001036 Software\Opera Software/Plugin Path 2
    0008 00001036 Software\Opera Software/Plugin Path 2
    0009 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_5_502_110.dll
    0010 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_5_502_110_Plugin.exe
    0011 00000024 C:\Windows\system32\Macromed\Flash\plugin.vch
    0012 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0013 00000012
    =X====== M/11.5.502.110 2012-11-13+14-51-12.938 ========
    =O====== M/11.5.502.135 2012-12-11+19-02-38.860 ========
    0000 00000010 "C:\Windows\TEMP\{BA1B59D0-A185-4D71-82CE-57EE6E743ABC}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_5_502_135.ocx
    0004 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_5_502_135_ActiveX.exe
    0005 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_5_502_135_ActiveX.dll
    0006 00000023 C:\Windows\system32\Macromed\Flash\activex.vch
    0007 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 00000012
    =X====== M/11.5.502.135 2012-12-11+19-02-53.280 ========
    =O====== M/11.5.502.135 2012-12-11+20-02-29.712 ========
    0000 00000010 "C:\Windows\TEMP\{A930ED85-370E-4C9E-A1B5-B771DA6562D2}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0005 00001036 Software\Opera Software/Last CommandLine 2
    0006 00001036 Software\Opera Software/Last CommandLine 2
    0007 00001036 Software\Opera Software/Plugin Path 2
    0008 00001036 Software\Opera Software/Plugin Path 2
    0009 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_5_502_135.dll
    0010 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_5_502_135_Plugin.exe
    0011 00000024 C:\Windows\system32\Macromed\Flash\plugin.vch
    0012 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0013 00000012
    =X====== M/11.5.502.135 2012-12-11+20-02-34.252 ========
    =O====== M/11.5.502.146 2013-01-09+19-02-53.711 ========
    0000 00000010 "C:\Windows\TEMP\{46FCF25A-9E31-4DC2-B895-55885A77CFD5}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_5_502_146.ocx
    0004 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_5_502_146_ActiveX.exe
    0005 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_5_502_146_ActiveX.dll
    0006 00000023 C:\Windows\system32\Macromed\Flash\activex.vch
    0007 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 00000012
    =X====== M/11.5.502.146 2013-01-09+19-03-29.176 ========
    =O====== M/11.5.502.146 2013-01-09+20-02-44.966 ========
    0000 00000010 "C:\Windows\TEMP\{7DF1ABAB-1EA5-4665-B8BF-BB531A3E837C}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0005 00001036 Software\Opera Software/Last CommandLine 2
    0006 00001036 Software\Opera Software/Last CommandLine 2
    0007 00001036 Software\Opera Software/Plugin Path 2
    0008 00001036 Software\Opera Software/Plugin Path 2
    0009 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_5_502_146.dll
    0010 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_5_502_146_Plugin.exe
    0011 00000024 C:\Windows\system32\Macromed\Flash\plugin.vch
    0012 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0013 00000012
    =X====== M/11.5.502.146 2013-01-09+20-02-50.266 ========
    =O====== M/11.5.502.149 2013-02-08+14-02-42.341 ========
    0000 00000010 "C:\Windows\TEMP\{B24C6C3E-B0D6-421F-943D-DA1AB1C7B3A1}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_5_502_149.ocx
    0004 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_5_502_149_ActiveX.exe
    0005 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_5_502_149_ActiveX.dll
    0006 00000023 C:\Windows\system32\Macromed\Flash\activex.vch
    0007 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 00000012
    =X====== M/11.5.502.149 2013-02-08+14-02-51.467 ========
    =O====== M/11.5.502.149 2013-02-08+15-03-32.545 ========
    0000 00000010 "C:\Windows\TEMP\{249364BD-7696-4F3E-8D9D-A4174F77B191}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0005 00001036 Software\Opera Software/Last CommandLine 2
    0006 00001036 Software\Opera Software/Last CommandLine 2
    0007 00001036 Software\Opera Software/Plugin Path 2
    0008 00001036 Software\Opera Software/Plugin Path 2
    0009 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_5_502_149.dll
    0010 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_5_502_149_Plugin.exe
    0011 00000024 C:\Windows\system32\Macromed\Flash\plugin.vch
    0012 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0013 00000012
    =X====== M/11.5.502.149 2013-02-08+15-03-42.105 ========
    =O====== M/11.6.602.168 2013-02-19+15-40-34.894 ========
    0000 00000010 "C:\Users\JAMESF~1\AppData\Local\Temp\{76779C7E-A8A3-42D0-8C6C-8DDD24613924}\InstallFlash Player.exe" -install -skipARPEntry -iv 8 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0005 00001036 Software\Opera Software/Last CommandLine 2
    0006 00001036 Software\Opera Software/Last CommandLine 2
    0007 00001036 Software\Opera Software/Plugin Path 2
    0008 00001036 Software\Opera Software/Plugin Path 2
    0009 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_6_602_168.dll
    0010 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_6_602_168_Plugin.exe
    0011 00000024 C:\Windows\system32\Macromed\Flash\plugin.vch
    0012 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0013 00000012
    =X====== M/11.6.602.168 2013-02-19+15-40-37.366 ========
    =O====== M/11.6.602.171 2013-02-26+23-02-47.481 ========
    0000 00000010 "C:\Windows\TEMP\{524BC494-3E1D-47BA-8006-466677017B2C}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_6_602_171.ocx
    0004 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_6_602_171_ActiveX.exe
    0005 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_6_602_171_ActiveX.dll
    0006 00000023 C:\Windows\system32\Macromed\Flash\activex.vch
    0007 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 00000012
    =X====== M/11.6.602.171 2013-02-26+23-03-15.780 ========
    =O====== M/11.6.602.171 2013-02-27+00-12-31.393 ========
    0000 00000010 "C:\Windows\TEMP\{6EBA496B-390D-4BA3-B889-69E57FEDE80D}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0005 00001036 Software\Opera Software/Last CommandLine 2
    0006 00001036 Software\Opera Software/Last CommandLine 2
    0007 00001036 Software\Opera Software/Plugin Path 2
    0008 00001036 Software\Opera Software/Plugin Path 2
    0009 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_6_602_171.dll
    0010 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_6_602_171_Plugin.exe
    0011 00000024 C:\Windows\system32\Macromed\Flash\plugin.vch
    0012 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0013 00000012
    =X====== M/11.6.602.171 2013-02-27+00-12-38.335 ========
    =O====== M/11.6.602.180 2013-03-13+15-02-31.930 ========
    0000 00000010 "C:\Windows\TEMP\{444295A8-6491-462D-BF70-2BF1B056894A}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_6_602_180.ocx
    0004 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_6_602_180_ActiveX.exe
    0005 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_6_602_180_ActiveX.dll
    0006 00000023 C:\Windows\system32\Macromed\Flash\activex.vch
    0007 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 00000012
    =X====== M/11.6.602.180 2013-03-13+15-02-48.965 ========
    =O====== M/11.6.602.180 2013-03-13+16-03-04.334 ========
    0000 00000010 "C:\Windows\TEMP\{73AD52F3-BDC1-4D3A-B368-EBA0DE78BA4A}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0005 00001036 Software\Opera Software/Last CommandLine 2
    0006 00001036 Software\Opera Software/Last CommandLine 2
    0007 00001036 Software\Opera Software/Plugin Path 2
    0008 00001036 Software\Opera Software/Plugin Path 2
    0009 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_6_602_180.dll
    0010 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_6_602_180_Plugin.exe
    0011 00000024 C:\Windows\system32\Macromed\Flash\plugin.vch
    0012 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0013 00000012
    =X====== M/11.6.602.180 2013-03-13+16-03-09.404 ========
    =O====== M/11.7.700.202 2013-05-14+21-03-02.053 ========
    0000 00000010 "C:\Windows\TEMP\{65C350B4-84A2-4D9F-BEFE-5E09FCCD5740}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_7_700_202.ocx
    0004 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_7_700_202_ActiveX.exe
    0005 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_7_700_202_ActiveX.dll
    0006 00000023 C:\Windows\system32\Macromed\Flash\activex.vch
    0007 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 00000012
    =X====== M/11.7.700.202 2013-05-14+21-03-27.449 ========
    =O====== M/11.7.700.202 2013-05-14+22-04-04.159 ========
    0000 00000010 "C:\Windows\TEMP\{D5E6413F-06EB-4F9A-B319-36C1B568FE64}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0005 00001036 Software\Opera Software/Last CommandLine 2
    0006 00001036 Software\Opera Software/Last CommandLine 2
    0007 00001036 Software\Opera Software/Plugin Path 2
    0008 00001036 Software\Opera Software/Plugin Path 2
    0009 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_7_700_202.dll
    0010 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_7_700_202_Plugin.exe
    0011 00000024 C:\Windows\system32\Macromed\Flash\plugin.vch
    0012 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0013 00000012
    =X====== M/11.7.700.202 2013-05-14+22-04-13.347 ========
    =O====== M/11.7.700.224 2013-06-12+17-03-16.197 ========
    0000 00000010 "C:\Windows\TEMP\{4AF83EF7-A142-423B-97B5-47C2ABB77FDD}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 11 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\TEMP\{9544F777-6641-4745-8D3F-2CB369DFAE65}\Flash64_11_7_700_224.ocx
    0004 00000025 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_7_700_224_ActiveX.exe
    0005 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_7_700_224_ActiveX.exe
    0006 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_7_700_224_ActiveX.dll
    0007 00000023 C:\Windows\system32\Macromed\Flash\activex.vch
    0008 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0009 00000012
    =X====== M/11.7.700.224 2013-06-12+17-03-41.616 ========
    =O====== M/11.7.700.224 2013-06-12+18-02-52.746 ========
    0000 00000010 "C:\Windows\TEMP\{A73D62D0-AC31-4A94-B163-6752F66B8C06}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 11 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0005 00001036 Software\Opera Software/Last CommandLine 2
    0006 00001036 Software\Opera Software/Last CommandLine 2
    0007 00001036 Software\Opera Software/Plugin Path 2
    0008 00001036 Software\Opera Software/Plugin Path 2
    0009 00000014 C:\Windows\TEMP\{8A880077-6DDB-48C9-8F59-6B7BB9988FEA}\NPSWF64_11_7_700_224.dll
    0010 00000025 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_7_700_224_Plugin.exe
    0011 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_7_700_224_Plugin.exe
    0012 00000024 C:\Windows\system32\Macromed\Flash\plugin.vch
    0013 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0014 00000012
    =X====== M/11.7.700.224 2013-06-12+18-02-59.789 ========
    =O====== M/11.8.800.94 2013-08-20+14-51-31.089 ========
    0000 00000010 "C:\Users\JAMESF~1\AppData\Local\Temp\{7751D5E9-EE43-4D03-B612-78DE2C40807D}\InstallFlash Player.exe" -install -skipARPEntry -iv 10 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 00001036 Software\Mozilla\MaintenanceService\extensions/Plugins 2
    0005 00001036 Software\Opera Software/Last CommandLine 2
    0006 00001036 Software\Opera Software/Last CommandLine 2
    0007 00001036 Software\Opera Software/Plugin Path 2
    0008 00001036 Software\Opera Software/Plugin Path 2
    0009 00000014 C:\Windows\system32\Macromed\Flash\NPSWF64_11_8_800_94.dll
    0010 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_8_800_94_Plugin.exe
    0011 00000024 C:\Windows\system32\Macromed\Flash\plugin.vch
    0012 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0013 00000012
    =X====== M/11.8.800.94 2013-08-20+14-51-33.726 ========
    =O====== M/11.8.800.94 2013-08-21+16-02-56.076 ========
    0000 00000010 "C:\Windows\TEMP\{CDB37489-43BB-41EF-A01B-03397C0F7439}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9 -au 4294967295
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\system32\Macromed\Flash\Flash64_11_8_800_94.ocx
    0004 00000015 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_8_800_94_ActiveX.exe
    0005 00000016 C:\Windows\system32\Macromed\Flash\FlashUtil64_11_8_800_94_ActiveX.dll
    0006 0000002

  • User does not have permission to perform this action

    Dear sirs,
    i made a project (VB2010 express) connecting to SQL Server 2008 express on my PC running Windows 7 (W7): it works as expected.
    Now,
    i need  the same project run on a different PC (running Windows XP,  say WXP, with VB2010 express installed) of my private LAN, but still connecting to SQL server running on Windows7-PC. So i exported the project file to WXP PC.
    After enabling TCP for SQL, opening ports and bla bla bla, i can "see" SQLEXPRESS instance (running on W7) from SqlServerManagementStudio running on WXP and i can modify, select, create tables and so on.
    Then i changed connection string parameters in app.config to point to the dB:
    <connectionStrings>
    <add name="IlMioCapolavoro22.My.MySettings.MyCompanyConnectionString"
    connectionString="Data Source=INGSERGIO\SQLEXPRESS;AttachDbFilename=z:\mycompany.mdf;Integrated Security=true;Connect Timeout=30;User Instance=True"
    providerName="System.Data.SqlClient" />
    </connectionStrings>
    In detail, i changed .\SQLEXPRESS to INGSERGIO\SQLEXPRESS and AttachDbFilename =c:\temp\mycompany.mdf to  AttachDbFilename = Z:\mycompany.mdf (c:\temp of W7-PC is mounted as z:\ on WXP PC).
    IF i do F5, i get the sql exception above.
    Based on what i read in other forums,
    it seems that the user connecting to SQL server (when the program starts) has not enough permission to access the database: frankly speaking, i don't know which user should i add permission for (my knowledge of SQL is poor).
    The SQL Server Log file doesn't show anything (or what i am able to see).
    .mdf file is in a directory where anyone has all privileges in reading-writing etc.
    Can anyone help me?
    Thanks
    Sergio

    Dear Sofiya,
    thanks for reply.
    TCP/IP, SQLServer.exe and SQLBrowser were already configured (Windows firewall was configured by adding "listening ports"
    and not by changing scope to applications... i don't think this is a problem): in fact i can connect db remotely from SSMS (all privileges).
    When you say:
    "make sure the
    user running your DB application in other computer has permissions to access the database"
    you mean "windows user" ? if so, same windows user & password are accessing the 2 PCs, they both have admin-privileges on both PCs (maybe different operating system is a concern?). I didn't
    create sql-user so far because my understanding is that in windows authentication mode it shouldn't be necessary or am i wrong? 
    "..., we can attach the “.mdf” file the SQL Server Express and then use the same method (Connect to database with
    VB) to connect the database." ---> VB doesn't let me do this, because if i try to test the connection
    with the db file from VB, it errors saying: "the file is in a network path not supported for database files. A database with the
    same name exists, or specified file cannot be opened, or it is located on UNC share." Somewhere i had read
    that the VB EXPRESS doesn't support database remote connection, so it is necessary to do it by changing manually string connection.
    Any ideas?
    thank you.
    Sergio

  • The user does not have sufficient privileges to install Adobe Flash Player

    Hi, I'm having a very hard time installing the newest version of Adobe Flash player.  When I run the installer I get the error message "The user does not have sufficient privileges to install Adobe Flash Player".  This all started after Flash had given me several popups about a new update, but the update wouldn't install correctly.  Eventually I uninstalled Adobe Flash and I've been unable to reinstall it at all since.
    I'm running Windows 7 64 bit, and I do have an administrator account.  I'm trying to isntall the Flahs plugin for Firefox, but it also wont work in IE.  So far I've tried running the instaler as an administrator, doing a clean install and running the installer from another user account (also an administrator).  None of these things have worked, and I can't find any other suggestions.
    Thanks in advance for your assistance!

    Download the offline installers from http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html#mai n-pars_header and save them to disk, then right-click on each installer and select 'Run As Administrator'.

  • IDocumentQuery.Execute() method throws user does not have edit permissions exception

    I'm trying to query a document folder for all of its containing documents. Its a basic query like this:
    IPortletContext PortletContext = PortletContextFactory.CreatePortletContext(Request,Response);IRemoteSession PTSession;PTSession = PortletContext.GetRemotePortalSession();IDocumentManager documentManager = PTSession.GetDocumentManager();
    IDocumentQuery documentQuery = documentManager.CreateQuery(FolderID); documentQuery.SetSortProperty(ObjectProperty.Name);IObjectQuery queryResults = documentQuery.Execute();
    When I'm logged into the portal as an administrator, everything works fine. However if I'm logged in as a "regular" user, I get this exception when calling the Execute() method:
    Plumtree.Remote.PRC.PortalException: Exception of type Plumtree.Remote.PRC.PortalException was thrown. ---> System.Web.Services.Protocols.SoapException: Server was unable to process request. --> Access denied: Current user does not have edit permission
    I'm sending the Login Token to the portlet. Now I've tried giving the user Edit rights on the document folder as well as Edit the Knowledge Directory rights in the Activity Manager, but neither gets rid of the exception. I'm not sure what other "Edit" permissions to check. I don't even see why the user would need "Edit" permission to anything in the first place since the Execute() method simply returns an IObjectQuery that doesn't have any ability to make changes to any objects. I know that I could use the SearchFactory interface, but I wanted the results to be real time. Any help would be much appreciated. Thanks!
    Jimmy

    The problem here is that the query is created with default settings to show unapproved documents -- only users with edit access can see unapproved documents. Add the bold line to your code and it will work.
    IDocumentManager docManager = prcSession.GetDocumentManager();IDocumentQuery docQuery = docManager.CreateQuery(iFolderID);docQuery.SetShowUnapproved(false);IObjectQuery queryResults = docQuery.Execute()

  • User does not have permission...

    Emm... actually this is jdbc, but from Microsoft ...
    I have created a login with "Security Admin" role, and after i login with the newly created id in console, i can successfully issue sp_addlogin.
    But the problem is, when i login with this id over jdbc and tried to create an account with sp_addlogin command, it gave me:
    [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]User does not have permission to perform this action.
    I could logged in, but not allowed to run sp_addlogin.
    Would any one pls help?? Many Thanks!
    (i am using the latest jdbc drivers download from MS)

    I have already checked "SQL Server and Windows", is there anything else missing in the configuriation?
    (I am running SQL Server 5.0 SP3 on Windows 2000, and I created the a/c through the Enterprise Manager)
    Many Thanks in advance.
    Did you set the SQLServer security setting to
    "SQLServer and Windows"? In the SQLServer
    administration tool, that is.

  • Error: The user does not have sufficient privileges to install Adobe Flash Player

    I get an error when the system tries to install Flash Player 11. It forced me to install when running a publish in captivate.
    The user does not have sufficient privileges to install Adobe Flash Player
    I tried to the advice from http://forums.adobe.com/message/4970296 to download and install offline version. I get this error:
    A required file (C:\Windows\system32\Macromed\Flash\FlashPlayerUpdateService.exe:5) could not be written due to insufficient permissions.

    Try a clean install as described in http://forums.adobe.com/thread/928315

Maybe you are looking for