Oracle query running very slow

Hi,
We've MS-Access application which was pointing to UDB. Now we migrated it to point Oracle DB 9.2. After migration some of the query is running very slow.
These queries used to take less than 30 seconds in UDB now taking more than 5 Minutes in Oracle.
some more obeservation :
(1) Some of the queries using "HAVING" clause without any aggregate function. When I moved this condition to "WHERE" clause, performance improved a lot.
But problem is that I can't suggest this solution to "USERS". They are creating query using "query wizard" in MS-Access and they started creating noise on this.
(2) I tested same MDB in two different PCs and same query is returning records in 4 seconds in one system, is taking more than 10 minutes in other system.
Since I'm new to MS-Access, I don't know what other information I need to provide here.
Please help me out.

ms wrote:
Hi All
I am using Oracle 11g . My table contains 10-12 lac rows.Do not use the word lac: it is common in the Indian sub-continent but not known much outside of
there because it is not standard English.
>
1) what is the difference between a index on one column and an index of number of columns ( i.e composite index). The obvious answer of one contains only one column and the other contains more than one.
2) For what columns in a where clause should index be created ( single columns index or composite index ).Depends
3) Also can u suggest how to improve the perfomane of thsi query?Please read: SQL and PL/SQL FAQ
which tells you how to ask a performance related question

Similar Messages

  • Oracle Query runs very slow filling table

    I have used Java Studio Creator 2 with Sun Java System Application Server Platform Edition 8.1_02 (build b06-fcs) in the past. I created a simple oracle query to populate a table and displaying about 560 rows in a table via a web browser. This runs excellent.
    Now, I use Netbeans 6, along with Sun Java System Application Server 9.1 (build b58g-fcs), I populate a table using the same query as before and it takes quite a long time to fill the table. Actually, the browser keeps asking if I want to stop the script about 6 times. If I keep saying yes, it eventually completes.
    I'm using an Oracle 9i database and have tried different drivers from Oracle with the same results.
    Any idea why the difference in filling the table or how to correct this? Thanks!
    Please note: I have this same question posted in the Java.net forums but it's not been answered so far, I hope this isn't crossposting and I get yelled at!

    for NetBeans questions I suggest posting your question in the [email protected] For more information:
    http://www.netbeans.org/community/index.html

  • MS-Access query running very slow

    Hi,
    We've MS-Access application which was pointing to UDB. Now we migrated it to point Oracle DB 9.2. After migration some of the query is running very slow.
    These queries used to take less than 30 seconds in UDB now taking more than 5 Minutes in Oracle.
    some more obeservation :
    (1) Some of the queries using "HAVING" clause without any aggregate function. When I moved this condition to "WHERE" clause, performance improved a lot.
    But problem is that I can't suggest this solution to "USERS". They are creating query using "query wizard" in MS-Access and they started creating noise on this.
    (2) I tested same MDB in two different PCs and same query is returning records in 4 seconds in one system, is taking more than 10 minutes in other system.
    Since I'm new to MS-Access, I don't know what other information I need to provide here.
    Please help me out.

    I have seen the problem like this,too
    can i have you

  • Query runs very slow and sometime freezes

    Hi Experts,
    I have just installed SAP GUI 710 but when i open a query in analyzer it runs very slow and  if the variables are set for more than 6 months it just sits there and finally times out. It takes at least 5 minutes to open the query if it opens at all. Can you please advise me on how to resolve this issue??
    Thanks, point will be awarded.

    Worth running RSRT .
    Ravi Thothadri

  • The below Query runs very slow

    SELECT
    ACT1.PROJ,
    ACT1.ACT,
    ACT1.VER,
    ACT1.DS,
    ACT1.UC,
    ACT1.ACT_RN,
    PRED1.PRED,
    PRED_DS.DS,
    PRED_DS.UC01 ACT_TYPE ,
    PRED1.RN,
    SUCC.SUC
    ,SUCC.SUC_NAME
    ,SUCC.SUC_TYPE
    ,SUCC.SUCC_RN
    FROM
    (SELECT A.PROJ , A.VER , A.ACT , A.DS , A.UC01 UC , B.RN ACT_RN
    FROM PM_PORTAL.AV_ACTIVITY A , PM_PORTAL.AV_RESREQ B
    WHERE A.PROJ = B.PROJ(+)
    AND A.ACT = B.ACT(+)
    AND A.VER = B.VER(+)
    AND A.VER = 50
    AND A.PROJ LIKE 'BOM_%'
    AND A.UC01 = '560'
    ) ACT1 ,
    ( SELECT A.PROJ , A.ACT , A.VER , A.PRED , B.RN
    FROM PM_PORTAL.AV_RELN A , PM_PORTAL.AV_RESREQ B
    WHERE A.PROJ LIKE 'BOM_%'
    AND A.VER = 50
    AND A.PROJ = B.PROJ(+)
    AND A.PRED = B.ACT(+)
    AND A.VER = B.VER(+)
    ) PRED1,
    ( SELECT DS , UC01 ,ACT ,VER , PROJ
    FROM PM_PORTAL.AV_ACTIVITY
    WHERE PROJ LIKE 'BOM_%'
    AND VER = 50
    ) PRED_DS ,
    (SELECT A.PROJ , A.VER , A.ACT SUC , A.PRED , B.DS SUC_NAME ,B.UC01 SUC_TYPE , C.RN SUCC_RN
    FROM PM_PORTAL.AV_RELN A , PM_PORTAL.AV_ACTIVITY B , PM_PORTAL.AV_RESREQ C
    WHERE A.PROJ = B.PROJ
    AND A.ACT = B.ACT
    AND A.VER = B.VER
    AND B.PROJ = C.PROJ
    AND B.ACT = C.ACT
    AND B.VER = C.VER
    ) SUCC
    WHERE ACT1.PROJ=PRED1.PROJ(+)
    AND ACT1.ACT=PRED1.ACT(+)
    AND ACT1.VER=PRED1.VER(+)
    AND PRED1.PRED = PRED_DS.ACT
    AND PRED1.PROJ = PRED_DS.PROJ
    AND PRED1.VER = PRED_DS.VER
    AND SUCC.PROJ = PRED1.PROJ
    AND SUCC.VER = PRED1.VER
    AND SUCC.PRED = PRED1.PRED
    --Execution Plan
    SELECT STATEMENT, GOAL = CHOOSE               293     1     337
    NESTED LOOPS               293     1     337
    NESTED LOOPS               290     1     305
    NESTED LOOPS               287     1     242
    NESTED LOOPS               282     1     206
    FILTER                         
    HASH JOIN OUTER                         
    VIEW     PM_PORTAL_READ          65     2     194
    NESTED LOOPS OUTER               65     2     190
    TABLE ACCESS BY INDEX ROWID     TRN_ARTE     AV_ACTIVITY_NPART     59     2     126
    INDEX RANGE SCAN     TRN_ARTE     AV_ACTIVITY_1_NPART     55     2     
    INDEX RANGE SCAN     TRN_ARTE     AV_RESREQ_1_NPART     3     35     1120
    VIEW     PM_PORTAL_READ          210     101     4646
    HASH JOIN OUTER               210     101     6868
    INDEX RANGE SCAN     TRN_ARTE     AV_RELN_1_NPART     161     101     3636
    INDEX RANGE SCAN     TRN_ARTE     AV_RESREQ_1_NPART     48     35     1120
    TABLE ACCESS BY INDEX ROWID     TRN_ARTE     AV_ACTIVITY_NPART     3     56     3528
    INDEX UNIQUE SCAN     TRN_ARTE     AV_ACTIVITY_1_NPART     2     56     
    INDEX RANGE SCAN     TRN_ARTE     AV_RELN_1_NPART     5     101     3636
    TABLE ACCESS BY INDEX ROWID     TRN_ARTE     AV_ACTIVITY_NPART     3     56     3528
    INDEX UNIQUE SCAN     TRN_ARTE     AV_ACTIVITY_1_NPART     2     56     
    INDEX RANGE SCAN     TRN_ARTE     AV_RESREQ_1_NPART     3     35     1120

    Here's the verbatim response I gave yesterday to another user also posting his SQL and asking the same question.. why is it slow?
    Who says it is not already running as fast as possible?
    In order to solve a problem, you need to know the problem. Stating something like 'a query is slow and should be faster' is stating an opinion - it is not describing a problem that can be resolved.
    My suggestion is to turn a complex problem, into a bunch of smaller and simpler problems. If you suspect that the query could be faster, pull it apart. Test each step/component of the query in isolation. E.g. start with a single table and progressively add joins to determine what the CBO does with each additional join, what you're asking Oracle to do ito processing, and not only checking that the CBO does not make obvious errors, but that what you're asking via SQL is the best approach to get to the answer.

  • Oracle Reports running very slow

    The same Oracle reports, which used to take 15 seconds to complete, now takes about 4 minutes to complete. Any ideas? Thank you.
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by JS:
    Thank you for your reply. Could you be more specific about network problem? We've changed our web application server and reports server settings recently. What could cause network problems? <HR></BLOCKQUOTE>
    Well, I would suggest that you got to be very clear with the query. Most of the report peformace is based on the query.
    1. Make sure that query is fine and note down the time it takes.
    2. If first step is clear and if you are happy with the output that is process time, then you can think about tuning the report.
    ( You may want skip this step)
    3. If that does not work you can investigate
    what kind of array it uses and network speed and other thinks. I am not really familior with these set up.
    Good luck with it..
    Regards ...
    Krishna ...
    null

  • GL Balances query runs very slow

    Hi All,
    I am working on Oracle Applications 11i (11.5.10.2) environment.
    Database is 11g (Rel.2)
    I need to pull the data for all the SOB's and using the below query is running for many hours.
    Please help with a better alternate for below query:
    SELECT gcc1.segment3 acct,
    gcc1.segment3 subacct,
    (SELECT SUM(DECODE(gcc.account_type,
    'A',
    NVL(b.begin_balance_dr, 0) -
    NVL(b.begin_balance_cr, 0),
    'E',
    NVL(b.begin_balance_dr, 0) -
    NVL(b.begin_balance_cr, 0),
    'L',
    NVL(b.begin_balance_cr, 0) -
    NVL(b.begin_balance_dr, 0),
    'O',
    NVL(b.begin_balance_cr, 0) -
    NVL(b.begin_balance_dr, 0),
    'R',
    NVL(b.begin_balance_cr, 0) -
    NVL(b.begin_balance_dr, 0)) +
    DECODE(gcc.account_type,
    'A',
    NVL(b.period_net_dr, 0) - NVL(b.period_net_cr, 0),
    'E',
    NVL(b.period_net_dr, 0) - NVL(b.period_net_cr, 0),
    'L',
    NVL(b.period_net_cr, 0) - NVL(b.period_net_dr, 0),
    'O',
    NVL(b.period_net_cr, 0) - NVL(b.period_net_dr, 0),
    'R',
    NVL(b.period_net_cr, 0) - NVL(b.period_net_dr, 0))) ytd_amt
    FROM gl_balances b, gl_code_combinations gcc
    WHERE b.code_combination_id = gcc.code_combination_id
    AND b.actual_flag = 'A'
    AND b.translated_flag is NULL
    AND gcc.enabled_flag = 'Y'
    AND gcc.end_date_active is NULL
    AND gcc1.segment3 = gcc.segment3
    AND gcc1.segment4 = gcc.segment4
    AND gb1.set_of_books_id = b.set_of_books_id
    AND gb1.currency_code = b.currency_code
    AND b.period_name = &l_prev_period) begin_balance,
    (SELECT SUM(DECODE(gcc.account_type,
    'A',
    NVL(b.begin_balance_dr, 0) -
    NVL(b.begin_balance_cr, 0),
    'E',
    NVL(b.begin_balance_dr, 0) -
    NVL(b.begin_balance_cr, 0),
    'L',
    NVL(b.begin_balance_cr, 0) -
    NVL(b.begin_balance_dr, 0),
    'O',
    NVL(b.begin_balance_cr, 0) -
    NVL(b.begin_balance_dr, 0),
    'R',
    NVL(b.begin_balance_cr, 0) -
    NVL(b.begin_balance_dr, 0)) +
    DECODE(gcc.account_type,
    'A',
    NVL(b.period_net_dr, 0) - NVL(b.period_net_cr, 0),
    'E',
    NVL(b.period_net_dr, 0) - NVL(b.period_net_cr, 0),
    'L',
    NVL(b.period_net_cr, 0) - NVL(b.period_net_dr, 0),
    'O',
    NVL(b.period_net_cr, 0) - NVL(b.period_net_dr, 0),
    'R',
    NVL(b.period_net_cr, 0) - NVL(b.period_net_dr, 0))) ytd_amt
    FROM gl_balances b, gl_code_combinations gcc
    WHERE b.code_combination_id = gcc.code_combination_id
    and b.rowid = gb1.rowid
    and gcc.rowid = gcc1.rowid) Ending_balance
    FROM gl_balances gb1, gl_code_combinations gcc1
    WHERE gb1.code_combination_id = gcc1.code_combination_id
    AND gb1.actual_flag = 'A'
    AND gb1.translated_flag is NULL
    AND gcc1.enabled_flag = 'Y'
    AND gcc1.end_date_active is NULL
    AND gb1.period_name = &p_period
    Thanks,
    gvk.

    Worth running RSRT .
    Ravi Thothadri

  • Query running very slow for 2LIS_13_VDKON Extractor.

    Dear Experts
    Having no Standard InfoCube to accommodate the data from 2LIS_13_VDKON Extractor, I've created an InfoCube having the Standard DSO inbetween. The Data Flow is as below:
    2LIS_13_VDKON -> ZSD_DS17 (which is a copy of BCT DSO 0SD_O06) -> ZSD_C17 ---> ZSD_M02 (MultiProvider)
    We went live last week and there are only 1252377 records in the InfoCube at the moment in Production. The BEx Query designed on top of the MultiProvider runs by default for the last 3 Months (Variable created) initially and the User will be able to look up only the last 13 Months (another Variable created) of data at any given point in time.
    The User doesn't want any Selection Parameters on this Report and that's how it is created.
    The problem now is.. this 'Margin on Agreed Cost' Report taking about 3 Minutes and 5 Seconds to run.
    I have RSRV on the InfoCube and everything seems to be ok, tried Aggregates (though I understand that this number of records wouldn't need one to be created) and have also tried Query Cache today but no good.
    Is there anything that I might have overlooked when designing the InfoCube and the BEx Query? Attached are the screenshots of the InfoCube, MultiProvider and the BEx Query for your reference.
    Any suggestions are very much appreciated.
    Thanks in advance for your time.
    Chandu

    Hi Anshu
    Thanks for your time.
    The link you've sent was very useful indeed.
    I followed instructions from your link and below are the statistics 4 days after this Cube went into Production:
    As you could see, the InfoCube design is very fine.
    We have noticed that the Report runs within a few seconds when it is run by 0BILL_DATE in Selection Parameters. Therefore, we are trying to buy the End User to have some Selection Parameters so that the performance of the Report will improve.
    I have already created Aggregates for this Cube but in vain!
    Can anyone please send me the Screenshots of the InfoCube Design which captures all the fields of 2LIS_13_VDKON Extractor?
    Thanks,
    Chandu

  • Query running very slow with db file sequential read waits which all indexes would be recommended

    My query is doing lot of db file sequential reads I want to create few indexes and extended stats please help me with your suggestions.
    Can anybody suggest I am unable to paste my query here -don't know why it's not getting pasted--is it not permitted ? 
    thank you.

    The simplest way to find it out is using Oracle Enterprise Manager. Just locate the SQL ID for the SQL and run "SQL tuning advisor". This will exactly pinpoint where do you need to create indexes etc. Another option is manually running explain plan for the SQL and finding out which predicate is causing full scans with high i/o
    Regards
    Tushar

  • VO Query runs very slow in jdev, quickly in Toad/SQL Plus

    Hi,
    I am trying to create a search application using JSF with ADF BC. I have a VO based on a SQL query, which joins two tables. The search criteria is referenced using bind parameters in the VO.
    In Toad, SQL Plus, and SQL Developer, I can run my VO query and the results return quickly, within a couple of seconds. An Explain Plan indicates that all indexes are being correctly used. However, when I try to run my search form (exact same query) in jdev, it executes extremely slowly - almost 5 minutes before a result set is returned. My VO query is below.
    select oea.order_yr,
    oea.order_type,
    oea.order_key,
    oea.max_rev,
    oeo.profit_center_id,
    oeo.contract_total_price,
    oeo.complexity
    from oe_admin oea,
    oe_order oeo
    where oea.admin_id = oeo.admin_id
    and oeo.profit_center_id = :ProfitCenter
    and oea.order_yr = nvl(:OYear, oea.order_yr)
    and oea.order_type = nvl(:OType, oea.order_type)
    I've been messing with this for several days and I'm out of ideas. Does anyone have any suggestions?

    The question is not whether the query uses a viewLink but rather do you have any other views that are linked to this view - if you do have such views you might want to check the setting for whether children are retrieved as well.
    Also run ADF BC in debug mode to see the exact query that is being sent to the server and check out the explain plan for that one.

  • Query Running very slow.............

    Hi All,
    The below query takes long time to execute. Please review this and provide me the better solution by which i can get the faster result .
    I have created the index in the txnlog table on timestamp,serialno, and in alt_merchant am on alt_merchantno and in txnlog_overrun on merchantno.
    SELECT t.timestamp,t.wicno,t.merchantno,u.overrun_amount,NVL(ad.state,'N/A')
    FROM txnlog t,txnlog_overrun u,alt_merchant am,address ad
    WHERE t.timestamp > SYSDATE -15
    AND t.timestamp=u.timestamp(+)
    AND t.serialno=u.serialno(+)
    AND t.wicno=am.alt_merchantno(+)
    AND t.merchantno=am.merchantno(+)
    AND am.ADDRESSID=ad.addressid(+)
    Txnlog having millions of records.
    Regards,
    Nitesh

    Hello
    SELECT NUM_ROWS, BLOCKS, EMPTY_BLOCKS, AVG_ROW_LEN FROM >USER_TABLES WHERE TABLE_NAME ='TXNLOG';
    Returns Null for all columns.This suggests to me that statistics are missing. Have you generated them as I suggested? Could you post the execution plan here:
    tylerd@DEV2> set pages 50000
    tylerd@DEV2> set lines 200
    tylerd@DEV2> EXPLAIN PLAN FOR
      2  select * from dual
      3  /
    Explained.
    tylerd@DEV2> SELECT * FROM TABLE(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 272002086
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |     1 |     2 |     2   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS FULL| DUAL |     1 |     2 |     2   (0)| 00:00:01 |
    8 rows selected.David

  • Query can run in Oracle 10g but very slow in 11g

    Hi,
    We've just migrated to Oracle 11g and we noticed that some of our view are very slow (it takes seconds in 10g and takes 30 minutes in 11g), and the tables are using the local table.
    Do any of you face the same issue?
    This is our query:
    SELECT
    A.wellbore
    ,a.depth center
    ,d.MD maxbc
    ,d.XDELT xbc
    ,d.YDELT ybc
    ,e.MD minac
    ,e.XDELT xac
    ,e.YDELT yac
    from
    table_A d,table_A e, table_B a
    where a.wellbore = d.WELLBORE (+)
    and a.wellbore = e.WELLBORE(+)
    and d.MD = (select max(MD) from table_A b where b.MD < a.depth and
    d.wellBORE = b.wellBORE)
    and e.md = (select min(md) from table_A c where c.MD > a.depth and
    e.wellBORE = c.wellBORE);

    Thanks I will move to the correct one..
    Rafi,
    Build the Indexes and it is still slow. I am querying from a view from another database, which is in 10g instances.
    Moved: Query can run in Oracle 10g but very slow in 11g
    Edited by: 924400 on Apr 1, 2012 6:03 PM
    Edited by: 924400 on Apr 1, 2012 6:26 PM

  • Oracle 10gr2 Master/detail form running very slow when you navigate to the detail record.

    Hi All, I have a master detail  form, running in webserver, when I navigate to the detail block, the form start buffering and buttering for about 2 min. There is a trigger when-new-record instance that is firing when you navigate to  a new record : The select part of this stament is taken a long time to execute. I modified this in toad and what used to take 25 seconds to run is taken less than a second now, but the slowness still persists in the form.
    for rec in (select wrrh_col
                      wpbh_col_lvd,
                       wpbh_col_doc_no
          from wh_col,
               wkpl_col,
               wh_col
         where wrrh_col_no = :block.wreh_wrrh_col_no
           and wrrh_col_no = wreh_wrrh_col_no
             and wrrh_col_no = wpbh_col_no
           and wrrh_col_proj    = wpbh_col_proj
           and wrrh_proj_no     = wpbh_proj_no) loop
       if fun_name(rec.wpbh_col_lvd) = 'Y' then                      
        do something,
       end if;
      end loop;
    The select staement that used to run for 23 seconds is running in less than one second, but the form is still running very slow when I navigate to the detail record.
    Please advise.
    Thanks.

    Thanks Andrea for your prompt response, the problem is the select statement and like I stated, I tuned the select statement in toad and what normally takes 23 secs is taking less than 1 sec to run. If I comment out the call to the function, it is still slow. The select stament will returned null and it will still be slow. When I comment out the for loop, it run very fast. I dont know what else to do than tuned the select statement.

  • Problem description: My computer is running very slow ever since I switched to Yosemite.  I get the multicolored wheel just opening my browser at times and waiting for a page to open, or an application.  Any ideas other than rebooting my computer to

    Problem description:
    My computer is running very slow ever since I switched to Yosemite.  I get the multicolored wheel just opening my browser at times and waiting for a page to open, or an application.  Any ideas other than rebooting my computer to get the problem to alleviate for a few days?
    EtreCheck version: 2.1.8 (121)
    Report generated February 16, 2015 at 2:35:55 PM PST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (21.5-inch, Late 2009) (Technical Specifications)
        iMac - model: iMac10,1
        1 3.06 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                Empty  
            BANK 1/DIMM0
                Empty  
            BANK 0/DIMM1
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM1
                2 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce 9400 - VRAM: 256 MB
            iMac 1920 x 1080
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 11 days 19:34:2
    Disk Information: ℹ️
        ST3500418ASQ disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            BOOTCAMP (disk0s4) /Volumes/BOOTCAMP : 60.76 GB (15.30 GB free)
            Macintosh HD (disk1) / : 438.11 GB (351.62 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 438.49 GB Online
        HL-DT-ST DVDRW  GA11N 
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Apple Internal Memory Card Reader
        Apple, Inc. Keyboard Hub
            Apple Inc. Apple Keyboard
        hp officejet 4200 series
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.accountsd.plist
        [killed]    com.apple.AirPlayUIAgent.plist
        [killed]    com.apple.bird.plist
        [killed]    com.apple.CallHistoryPluginHelper.plist
        [killed]    com.apple.CallHistorySyncHelper.plist
        [killed]    com.apple.cloudd.plist
        [killed]    com.apple.coreservices.appleid.authentication.plist
        [killed]    com.apple.coreservices.uiagent.plist
        [killed]    com.apple.EscrowSecurityAlert.plist
        [killed]    com.apple.icloud.fmfd.plist
        [killed]    com.apple.iconservices.iconservicesagent.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.pluginkit.pkd.plist
        [killed]    com.apple.printtool.agent.plist
        [killed]    com.apple.recentsd.plist
        [killed]    com.apple.secd.plist
        [killed]    com.apple.security.cloudkeychainproxy.plist
        [killed]    com.apple.spindump_agent.plist
        [killed]    com.apple.telephonyutilities.callservicesd.plist
        19 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.AssetCacheLocatorService.plist
        [killed]    com.apple.awdd.plist
        [killed]    com.apple.coresymbolicationd.plist
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.diagnosticd.plist
        [killed]    com.apple.emond.aslmanager.plist
        [killed]    com.apple.iconservices.iconservicesagent.plist
        [killed]    com.apple.iconservices.iconservicesd.plist
        [killed]    com.apple.ifdreader.plist
        [killed]    com.apple.nehelper.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.periodic-daily.plist
        [killed]    com.apple.periodic-monthly.plist
        [killed]    com.apple.periodic-weekly.plist
        [killed]    com.apple.sandboxd.plist
        [killed]    com.apple.softwareupdate_download_service.plist
        [killed]    com.apple.spindump.plist
        [killed]    com.apple.tccd.system.plist
        [killed]    com.apple.wdhelper.plist
        [killed]    com.apple.xpc.smd.plist
        20 processes killed due to memory pressure
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [running]    com.GoodShop.updater.plist [Click for support]
    User Login Items: ℹ️
        None
    Internet Plug-ins: ℹ️
        o1dbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Click for support]
        Google Earth Web Plug-in: Version: 5.2 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 2.4.2.4 [Click for support]
        RealPlayer Plugin: Version: Unknown [Click for support]
        AdobePDFViewerNPAPI: Version: 10.1.13 [Click for support]
        DivXBrowserPlugin: Version: 2.0 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 7.0
        googletalkbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Click for support]
        AdobePDFViewer: Version: 10.1.13 [Click for support]
        GarminGpsControl: Version: 4.2.0.0 - SDK 10.8 [Click for support]
    User internet Plug-ins: ℹ️
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.79 [Click for support]
        VSeeHelper: Version: VSeeHelper 1.0.0.0 - SDK 10.8 [Click for support]
    Safari Extensions: ℹ️
        avast! Online Security
        Goodshop app
    3rd Party Preference Panes: ℹ️
        DivX  [Click for support]
        Flip4Mac WMV  [Click for support]
        MacFUSE  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 438.11 GB Disk used: 86.50 GB
        Destinations:
            Backup [Local]
            Total size: 159.70 GB
            Total number of backups: 3
            Oldest backup: 2014-11-24 05:20:18 +0000
            Last backup: 2015-02-01 03:04:02 +0000
            Size of backup disk: Too small
                Backup size 159.70 GB < (Disk used 86.50 GB X 3)
    Top Processes by CPU: ℹ️
             8%    WindowServer
             5%    DashboardClient
             3%    mds
             2%    launchd
             0%    ocspd
    Top Processes by Memory: ℹ️
        64 MB    WindowServer
        52 MB    thunderbird
        34 MB    mds
        34 MB    Mail
        30 MB    mds_stores
    Virtual Memory Information: ℹ️
        654 MB    Free RAM
        834 MB    Active RAM
        777 MB    Inactive RAM
        903 MB    Wired RAM
        102.49 GB    Page-ins
        1.46 GB    Page-outs
    Diagnostics Information: ℹ️
        Standard users cannot read /Library/Logs/DiagnosticReports.
        Run as an administrator account to see more information.

    Hi Linc!  Sorry for the delay.  Here is the information:
    Start time: 16:48:08 02/28/15
    Revision: 1241
    Model Identifier: iMac10,1
    System Version: OS X 10.10.2 (14C109)
    Kernel Version: Darwin 14.1.0
    Time since boot: 10 days 21:04
    UID: 502
    SerialATA
        ST*******ASQ                          
    USB
        officejet 4200 series (Hewlett Packard)
    Bluetooth
        Apple Wireless Mouse
    FileVault 2: On FileVault master keychain appears to be installed
    FileVault 1: On
    I/O wait time (ms/s)
        launchd (UID 0): 53
    Font issues: 40
    Firewall: On
    System caches/logs
        1987 MB: /System/Library/Caches/com.apple.coresymbolicationd/data
    Diagnostic reports
        2015-01-31 SecurityAgent crash
        2015-02-01 2BUA8C4S2C.com.agilebits.onepassword4-helper crash
        2015-02-01 IMDPersistenceAgent crash
        2015-02-01 secd crash
        2015-02-20 Inkjet7 crash
        2015-02-28 IMDPersistenceAgent crash
        2015-02-28 secd crash x2
    Kernel log
        Feb 23 07:06:08 Failed to get hibernate image filename
        Feb 23 17:07:05 Failed to get hibernate image filename
        Feb 24 07:06:05 Failed to get hibernate image filename
        Feb 24 17:47:13 Failed to get hibernate image filename
        Feb 24 18:31:50 IOAudioStream[0xffffff802df40400]::clipIfNecessary() - Error: counted 1 clip more than one buffer ahead errors.
        Feb 24 19:14:41 Failed to get hibernate image filename
        Feb 24 20:56:40 Failed to get hibernate image filename
        Feb 24 22:14:14 Failed to get hibernate image filename
        Feb 24 22:38:31 Failed to get hibernate image filename
        Feb 25 06:58:23 Failed to get hibernate image filename
        Feb 25 17:40:53 Failed to get hibernate image filename
        Feb 25 21:04:27 Failed to get hibernate image filename
        Feb 25 21:31:52 Failed to get hibernate image filename
        Feb 26 07:03:06 Failed to get hibernate image filename
        Feb 26 17:06:59 Failed to get hibernate image filename
        Feb 27 06:58:56 Failed to get hibernate image filename
        Feb 27 17:02:56 Failed to get hibernate image filename
        Feb 27 19:17:20 Failed to get hibernate image filename
        Feb 27 23:04:12 Failed to get hibernate image filename
        Feb 28 10:09:19 Failed to get hibernate image filename
        Feb 28 13:07:21 Failed to get hibernate image filename
        Feb 28 14:08:38 Failed to get hibernate image filename
        Feb 28 15:11:16 Failed to get hibernate image filename
        Feb 28 16:18:21 msdosfs_fat_uninit_vol: error 6 from msdosfs_fat_cache_flush
        Feb 28 16:29:32 Failed to get hibernate image filename
    System log
            label = "2.5.4.3";
            "localized label" = "2.5.4.3";
            type = string;
            value = "courier.sandbox.push.apple.com";
        Feb 28 16:30:55 loginwindow ERROR | __50-[MCXDLauncher(Private) startNetworkChangeThread:]_block_invoke | Unable to GetMCXAgentPort
        Feb 28 16:31:09 apsd Failed entitlement check 'com.apple.private.aps-connection-initiate' for ManagedClientAgent[8424]
        Feb 28 16:31:44 apsd Failed entitlement check 'com.apple.private.aps-connection-initiate' for ManagedClientAgent[8433]
        Feb 28 16:32:36 WindowServer disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
        Feb 28 16:34:16 WindowServer disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
        Feb 28 16:38:37 WindowServer disable_update_timeout: UI updates were forcibly disabled by application "1Password mini" for over 1.00 seconds. Server has re-enabled them.
        Feb 28 16:38:49 WindowServer WSGetSurfaceInWindow : Invalid surface 769181205 for window 4518
        Feb 28 16:38:49 WindowServer WSGetSurfaceInWindow : Invalid surface 769181205 for window 4518
        Feb 28 16:38:56 WindowServer WSGetSurfaceInWindow : Invalid surface 1023641180 for window 4522
        Feb 28 16:38:56 WindowServer WSGetSurfaceInWindow : Invalid surface 1023641180 for window 4522
        Feb 28 16:39:06 WindowServer WSGetSurfaceInWindow : Invalid surface 1058035653 for window 4525
        Feb 28 16:39:06 WindowServer WSGetSurfaceInWindow : Invalid surface 1058035653 for window 4525
        Feb 28 16:39:22 WindowServer WSGetSurfaceInWindow : Invalid surface 996085260 for window 4530
        Feb 28 16:39:22 WindowServer WSGetSurfaceInWindow : Invalid surface 996085260 for window 4530
        Feb 28 16:39:33 WindowServer WSGetSurfaceInWindow : Invalid surface 1034343505 for window 4534
        Feb 28 16:39:33 WindowServer WSGetSurfaceInWindow : Invalid surface 1034343505 for window 4534
        Feb 28 16:39:39 Google Chrome Helper CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Feb 28 16:39:39 Google Chrome Helper CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Feb 28 16:46:20 apsd Failed entitlement check 'com.apple.private.aps-connection-initiate' for ManagedClientAgent[8979]
        Feb 28 16:49:02 loginwindow ERROR | __50-[MCXDLauncher(Private) startNetworkChangeThread:]_block_invoke | Unable to GetMCXAgentPort
    Daemons
        com.apple.AccountPolicyHelper
        com.apple.AssetCacheLocatorService
        com.apple.CodeSigningHelper
        com.apple.MobileFileIntegrity
        com.apple.awdd
        com.apple.backupd-auto
        com.apple.cache_delete
        com.apple.coresymbolicationd
        com.apple.ctkd
        com.apple.diagnosticd
        com.apple.emond.aslmanager
        com.apple.iconservices.iconservicesagent
        com.apple.iconservices.iconservicesd
        com.apple.ifdreader
        com.apple.installd
        com.apple.installer.osmessagetracing
        com.apple.nehelper
        com.apple.networkd_privileged
        com.apple.nsurlsessiond_privileged
        com.apple.nsurlstoraged
        com.apple.periodic-daily
        com.apple.periodic-monthly
        com.apple.periodic-weekly
        com.apple.sandboxd
        com.apple.secinitd
        com.apple.security.syspolicy
        - status: -15
        com.apple.softwareupdate_download_service
        com.apple.softwareupdated
        com.apple.spindump
        com.apple.sysmond
        com.apple.systemstatsd
        com.apple.tccd.system
        com.apple.watchdogd
        com.apple.wdhelper
        org.cups.cupsd
    Agents
        2BUA8C4S2C.com.agilebits.onepassword4-helper
        com.adobe.ARM.UUID
        com.apple.AirPortBaseStationAgent
        com.apple.imdpersistence.IMDPersistenceAgent
        - status: -10
        com.apple.secd
        - status: -10
    User crontab
        59 16 * * 7 /Applications/MacScan\ 2/MacScan.app/Contents/MacOS/MacScan -autoscan YES
    Firefox extensions
        Mozilla Firefox hotfix
    Widgets
        iCal
    iCloud errors
        cloudd 7
        comapple.InputMethodKit.UserDictionary 2
        CallHistorySyncHelper 1
    Continuity errors
        sharingd 1
    Restricted files: 174
    Lockfiles: 30
    High file counts
        Desktop: 54
    Accessibility
        Scroll Zoom: On
    Contents of /System/Library/Security/authorization.plist
        - mod date: Oct  9 02:17:00 2014
        - checksum: 2720110640
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>comment</key>
        <string>The name of the requested right is matched against the keys.  An exact match has priority, otherwise the longest match from the start is used. Note that the right will only match wildcard rules (ending in a ".") during this reduction.
        allow rule: this is always allowed
        &lt;key&gt;com.apple.TestApp.benign&lt;/key&gt;
        &lt;string&gt;allow&lt;/string&gt;
        deny rule: this is always denied
        &lt;key&gt;com.apple.TestApp.dangerous&lt;/key&gt;
        &lt;string&gt;deny&lt;/string&gt;
        user rule: successful authentication as a user in the specified group(5) allows the associated right.
        The shared property specifies whether a credential generated on success is shared with other apps (i.e., those in the same "session"). This property defaults to false if not specified.
        The timeout property specifies the maximum age of a (cached/shared) credential accepted for this rule.
        The allow-root property specifies whether a right should be allowed automatically if the requesting process is running with uid == 0.  This defaults to false if not specified.
        See remaining rules for examples.
        </string>
        <key>rights</key>
        <dict>
        <key></key>
        <dict>
        <key>class</key>
        <string>rule</string>
        <key>comment</key>
        ...and 1850 more line(s)
    Contents of /private/etc/authorization.deprecated
        - mod date: Oct 25 13:37:39 2014
        - checksum: 842352627
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>comment</key>
        <string>The name of the requested right is matched against the keys.  An exact match has priority, otherwise the longest match from the start is used. Note that the right will only match wildcard rules (ending in a ".") during this reduction.
        allow rule: this is always allowed
        &lt;key&gt;com.apple.TestApp.benign&lt;/key&gt;
        &lt;string&gt;allow&lt;/string&gt;
        deny rule: this is always denied
        &lt;key&gt;com.apple.TestApp.dangerous&lt;/key&gt;
        &lt;string&gt;deny&lt;/string&gt;
        user rule: successful authentication as a user in the specified group(5) allows the associated right.
        The shared property specifies whether a credential generated on success is shared with other apps (i.e., those in the same "session"). This property defaults to false if not specified.
        The timeout property specifies the maximum age of a (cached/shared) credential accepted for this rule.
        The allow-root property specifies whether a right should be allowed automatically if the requesting process is running with uid == 0.  This defaults to false if not specified.
        See remaining rules for examples.
        </string>
        <key>rights</key>
        <dict>
        <key></key>
        <dict>
        <key>class</key>
        <string>rule</string>
        <key>comment</key>
        ...and 1013 more line(s)
    Contents of /private/etc/pam.d/prl_disp_service
        - mod date: Mar  5 03:24:01 2010
        - checksum: 1160556194
        auth       required       pam_nologin.so
        auth       optional       pam_afpmount.so
        auth       sufficient     pam_securityserver.so nullok
        auth       sufficient     pam_unix.so  nullok
        auth       required       pam_deny.so
        account    required       pam_permit.so
        password   required       pam_deny.so
        session    required       pam_permit.so
        session    optional       pam_afpmount.so
    Contents of /private/etc/pam.d/prl_disp_service.snow_leopard
        - mod date: Mar  5 03:24:01 2010
        - checksum: 2633576920
        auth       optional       pam_krb5.so
        auth       optional       pam_mount.so
        auth       sufficient     pam_serialnumber.so serverinstall legacy
        auth       required       pam_opendirectory.so
        account    required       pam_nologin.so
        account    required       pam_opendirectory.so
        password   required       pam_deny.so
        session    required       pam_launchd.so
        session    required       pam_uwtmp.so
        session    optional       pam_mount.so
        auth       optional       pam_krb5.so
        auth       optional       pam_mount.so
        auth       sufficient     pam_serialnumber.so serverinstall legacy
        auth       required       pam_opendirectory.so
        account    required       pam_nologin.so
        account    required       pam_opendirectory.so
        password   required       pam_deny.so
        session    required       pam_launchd.so
        session    required       pam_uwtmp.so
        session    optional       pam_mount.so
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Aug  1 17:37:19 2012
        - checksum: 408149527
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Applications
        /Applications/Acrobat 6.0 Professional/Acrobat 6.0.2 Professional.app
        - N/A
        /Applications/Acrobat 6.0 Professional/Acrobat Distiller 6.0.2.app
        - com.adobe.distiller
        /Applications/Adobe/Acrobat.com.app
        - com.adobe.mauby.UUID.1
        /Applications/Adobe/Adobe Help.app
        - chc.UUID.1
        /Applications/Bible Explorer 4.app
        - com.BE8.wordsearchbible.corp
        /Applications/DivX Converter.app
        - N/A
        /Applications/DivX Player.app
        - com.divx.DivX_Player
        /Applications/DivX/DivX Community.app
        - com.spritec.DVD
        /Applications/DivX/DivX Products.app
        - com.spritec.DVD
        /Applications/DivX/DivX Support.app
        - com.spritec.DVD
        /Applications/DivX/Uninstall DivX for Mac.app
        - com.divxinc.uninstalldivxformac
        /Applications/FOX News Live.app
        - FoxPlayerAIR.UUID.1
        /Applications/Flip4Mac/WMV Player.app
        - net.telestream.wmv.player
        /Applications/Garmin Express.app
        - com.garmin.renu.client
        /Applications/Garmin WebUpdater.app
        - com.garmin.WebUpdater
        /Applications/Hewlett-Packard/HP Image Edit.app
        - com.hp.hpimageedit
        /Applications/Hewlett-Packard/HP Image Print.app
        - com.hp.photo.imageprint
        /Applications/Hewlett-Packard/HP Image Zone.app
        - com.hp.imagezone
        /Applications/Hewlett-Packard/HP Instant Share.app
        - com.hp.photo.instantshare
        /Applications/Hewlett-Packard/HP Panorama Stitching.app
        - com.hp.PanoramaStitching
        /Applications/Hewlett-Packard/HP Photo and Imaging Software/HP E-mail Portal/HP E-mail Portal
        - N/A
        /Applications/Hewlett-Packard/HP Photo and Imaging Software/HP Photo and Imaging Director/Director Docker.app
        - com.hp.director.docker
        /Applications/Hewlett-Packard/HP Software Update.app
        - com.hp.softwareupdate
        /Applications/Hewlett-Packard/HP Uninstaller
        - N/A
        /Applications/Karaoke Maker/Audacity.app
        - net.sourceforge.audacity
        /Applications/Macromedia Studio 8/Macromedia Contribute 3/Contribute
        - com.macromedia.Contribute
        /Applications/Macromedia Studio 8/Macromedia Contribute 3/Contribute/Contents/MacOS/Contribute
        - N/A
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8
        - com.macromedia.Dreamweaver
        /Applications/Macromedia Studio 8/Macromedia Extension Manager/Extension Manager.app
        - com.macromedia.ExtensionManager
        /Applications/Macromedia Studio 8/Macromedia Fireworks 8/Fireworks 8.app
        - com.macromedia.fireworks
        /Applications/Macromedia Studio 8/Macromedia Flash 8 VideoEncoder/Flash 8 Video Encoder.app
        - com.macromedia.FLVEncoder
        /Applications/Macromedia Studio 8/Macromedia Flash 8/Flash 8.app
        - com.macromedia.flash.8
        /Applications/Microsoft AutoUpdate.app
        - com.microsoft.autoupdate
        /Applications/Microsoft Office 2004/Additional Tools/Handheld Sync Installer
        - com.MindVision.VISEX
        /Applications/Microsoft Office 2004/Additional Tools/Handheld Sync Installer/Contents/MacOSClassic/Handheld Sync Installer
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Microsoft Language Register/Microsoft Language Register
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Remote Desktop Connection/Remote Desktop Connection
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Remove Office/Remove Office
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Windows Media Installer
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Windows Media Installer/Contents/MacOS/Windows Media Installer
        - N/A
        /Applications/Microsoft Office 2004/MSN Messenger.app
        - Microsoft/com.microsoft.Messenger
        /Applications/Microsoft Office 2004/Microsoft Entourage
        - N/A
        /Applications/Microsoft Office 2004/Microsoft Excel
        - N/A
        /Applications/Microsoft Office 2004/Microsoft PowerPoint
        - N/A
        /Applications/Microsoft Office 2004/Microsoft Word
        - N/A
        /Applications/Microsoft Office 2004/Office/Alerts Daemon.app
        - Microsoft/com.microsoft.AlertsDaemon
        /Applications/Microsoft Office 2004/Office/Database Utility
        - N/A
        /Applications/Microsoft Office 2004/Office/Equation Editor
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Cert Manager.app
        - com.microsoft.certmgr
        /Applications/Microsoft Office 2004/Office/Microsoft Clip Gallery
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Database Daemon
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Error Reporting.app
        - com.microsoft.error_reporting
        /Applications/Microsoft Office 2004/Office/Microsoft Graph
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Office Notifications
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Query
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Sync Services.app
        - com.microsoft.entourage.syncservices
        /Applications/Microsoft Office 2004/Office/Organization Chart
        - N/A
        /Applications/Microsoft Office 2004/Office/Project Gallery Launcher
        - N/A
        /Applications/Open XML Converter.app
        - com.microsoft.OfficeConverter
        /Applications/OpenOffice.app
        - org.openoffice.script
        /Applications/Quicken 2007/Quicken 2007
        - com.intuit.quicken
        /Applications/Quicken 2007/Quicken 2007/Contents/MacOS/Quicken 2007
        - N/A
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Emergency Records Organizer
        - com.intuit.ero
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Emergency Records Organizer/Contents/MacOSClassic/Emergency Records Organizer
        - N/A
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Home Inventory.app
        - com.intuit.HomeInventory
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Quicken Backup Utility.app
        - com.intuit.quicken.dotmac
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Quicken Scheduler
        - N/A
        /Applications/RealPlayer Converter.app
        - com.real.converter
        /Applications/RealPlayer.app
        - com.RealNetworks.RealPlayer
        /Applications/TorBrowser.app
        - N/A
        /Applications/Utilities/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Applications/Utilities/Adobe Utilities.localized/Adobe Updater6/Adobe Updater.app
        - "com.Adobe.ESD.AdobeUpdaterApplication"
        /Library/Application Support/Adobe/AdobePDF.app
        - com.Adobe.print.AdobePDF.bef
        /Library/Application Support/DivX/DivXUpdater.app
        - com.divx.DivXUpdater
        /Library/Application Support/Hewlett-Packard/Software Update/HP Rules Processor.app
        - com.hp.rulesprocessor
        /Library/Application Support/Hewlett-Packard/Software Update/HP Scheduler.app
        - com.hp.HPScheduler
        /Library/Application Support/Hewlett-Packard/Software Update/HP Software Updater
        - N/A
        /Library/Application Support/Hewlett-Packard/Software Update/HP Software Updater/Contents/MacOS/HP Software Updater
        - N/A
        /Library/Application Support/Microsoft/HV1.0/Microsoft Help Viewer.app
        - com.microsoft.helpviewer
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Charts.app
        - com.microsoft.openxml.chartconverter.app
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Excel.app
        - com.microsoft.openxml.excel.app
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Word.app
        - com.microsoft.openxml.word.app
        /Library/Application Support/Microsoft/Office Converter Support/pptfc.app
        - com.microsoft.openxml.powerpoint.app
        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
        - com.microsoft.silverlight.sllauncher
        /Library/Application Support/Script Editor/Templates/Cocoa-AppleScript Applet.app
        - com.apple.ScriptEditor.id.cocoa-applet-template
        /Library/Application Support/Script Editor/Templates/Droplets/Droplet with Settable Properties.app
        - com.apple.ScriptEditor.id.droplet-with-settable-properties-template
        /Library/Application Support/Script Editor/Templates/Droplets/Recursive File Processing Droplet.app
        - com.apple.ScriptEditor.id.file-processing-droplet-template
        /Library/Application Support/Script Editor/Templates/Droplets/Recursive Image File Processing Droplet.app
        - com.apple.ScriptEditor.id.image-file-processing-droplet-template
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/flashplayer
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_burn_cd.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_export_images.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_import_images.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_panorama_stitch.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_use_folders.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_use_image_edit.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_use_image_print.app
        - N/A
        /Library/Documentation/User Guides and Information.localized/Apple Hardware Test Read Me.app
        - com.apple.AppleHardwareTestReadMe
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Template.app
        - com.adobe.air.Template
        /Library/Image Capture/Scripts/Import and View with iPhoto.app
        - com.hp.iPhoto.icautotask
        /Library/Parallels/Parallels Mounter.app
        - com.parallels.server.mounter
        /Library/Printers/hp/Fax/fax.backend
        - com.hp.fax
        /Library/Printers/hp/Fax/rastertofax.filter
        - com.hp.rastertofax
        /Library/Printers/hp/cups/filters/commandtohp.filter
        - com.hp.print.cups.filter.commandtohp
        /Library/Printers/hp/cups/filters/pdftopdf.filter
        - com.hp.print.cups.filter.pdftopdf
        /Library/Printers/hp/cups/tools/autosetup.tool
        - com.hp.print.autosetup
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_bepbmhgboaologfdajaanbcjmnhjmhfn/Default bepbmhgboaologfdajaanbcjmnhjmhfn.app
        - com.google.Chrome.app.Default-bepbmhgboaologfdajaanbcjmnhjmhfn-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_blpcfgokakmgnkcojhhkbfbldkacnbeo/Default blpcfgokakmgnkcojhhkbfbldkacnbeo.app
        - com.google.Chrome.app.Default-blpcfgokakmgnkcojhhkbfbldkacnbeo-internal
        /Users/USER/Library/Caches/com.adobe.Reader.ARM/UUID/Adobe Reader Updater.app
        - com.adobe.ARM
        /mike's old computer/Adobe/AdobePDF.app
        - com.Adobe.print.AdobePDF.bef
        /mike's old computer/Adobe/Installers/R2/Setup.app
        - com.adobe.Installers.Setup
        /mike's old computer/Deimos Rising/Deimos Rising
        - N/A
        /mike's old computer/IA_Installers/TypingMaster_for_Mac/TypingMasterMac.app
        - N/A
        /mike's old computer/TypingMasterMac/UninstallerData/Uninstall TypingMaster for Mac.app
        - N/A
        /mike's old computer/TypingMasterMac/itutoreng.app
        - N/A
        /mike's old computer/adobe applications/Adobe GoLive CS/Adobe GoLive CS.app
        - com.adobe.GoLive
        /mike's old computer/adobe applications/Adobe Illustrator CS/2.app
        - com.adobe.illustrator
        /mike's old computer/adobe applications/Adobe InDesign CS/InDesign CS.app
        - com.adobe.InDesign
        /mike's old computer/adobe applications/Adobe InDesign CS/Plug-Ins/Online/AUMLibrary.cfm/Contents/SharedSupport/Adobe Update Manager.app
        - com.adobe.ESD.AUM
        /mike's old computer/adobe applications/Adobe Photoshop CS/Adobe ImageReady CS.app
        - com.adobe.ImageReady
        /mike's old computer/adobe applications/Adobe Photoshop CS/Adobe Photoshop CS.app
        - com.adobe.Photoshop
        /mike's old computer/adobe applications/Adobe Version Cue/Uninstall Adobe Version Cue.app
        - N/A
        /old computer stuff/At Ease Setup Folder/At Ease Setup
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Apple System Profiler
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Calculator
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Chooser
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/FaxStatus
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Graphing Calculator
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Internet Access/Browse the Internet
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Internet Access/Connect To...
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Internet Access/Mail
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Key Caps
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Note Pad
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Remote Access Status
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Scrapbook
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Sherlock
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/SimpleSound
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Stickies
        - N/A
        /old computer stuff/OLDIESystem Folder/Application Support/IntelliTools/Classic Sending Helper
        - N/A
        /old computer stuff/OLDIESystem Folder/Application Support/Norton AntiVirus ƒ/NAV Small Scanner
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Appearance
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Apple Menu Options
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/AppleTalk
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/ColorSync
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Configuration Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Control Strip
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Date & Time
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/DialAssist
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Energy Saver
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Extensions Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/File Exchange
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/File Sharing
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/General Controls
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Infrared
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Internet
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Keyboard
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Location Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Memory
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Microsoft Office Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Modem
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Monitors & Sound
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Mouse
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Numbers
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/QuickTime™ Settings:™ Settings:
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/QuikSync
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Remote Access
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Speech
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Startup Disk
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/TCP:IP
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Text
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Users & Groups
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Web Sharing
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Application Switcher
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/ColorSync Extension
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Control Strip Extension
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Desktop PrintMonitor
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Desktop Printer Spooler
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/FBC Indexing Scheduler
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/FaxMonitor
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Find/Find by Content Indexing
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Folder Actions
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Norton Scheduler
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/PrintMonitor
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Time Synchronizer
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Web Sharing Extension
        - N/A
        /old computer stuff/OLDIESystem Folder/Help/Apple Help Viewer/Help Viewer
        - N/A
        /old computer stuff/OLDIESystem Folder/MacTCP DNR
        - N/A
        /old computer stuff/OLDIESystem Folder/Scripting Additions/Desktop Printer Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Scripting Additions/Network Setup Scripting
        - N/A
        /old computer stuff/OLDIESystem Folder/Scripting Additions/URL Access Scripting
        - N/A
        /old computer stuff/OLDIESystem Folder/System Extensions (Disabled)/AOL 5.0 Backup Installer
        - N/A
        /old computer stuff/Tony Hawk's Pro Skater 4/Tony Hawk's Pro Skater 4.app
        - com.aspyr.thps4
    Frameworks
        /Library/Frameworks/Adobe AIR.framework
        - com.adobe.AIR
        /Library/Frameworks/DivX Toolkit.framework
        - com.divx.divxtoolkit
        /Library/Frameworks/EWSMac.framework
        - com.eSellerate.EWSMac67108868
        /Library/Frameworks/HPSmartPrint.framework
        - com.hp.print.HPSmartPrint
        /Library/Frameworks/MacFUSE.framework
        - com.google.MacFUSE
        /Library/Frameworks/PrintMeSSL.framework
        - com.efi.printme.ssl
        /Library/Frameworks/TSLicense.framework
        - net.telestream.license
    PrefPane
        /Library/PreferencePanes/DivX.prefPane
        - com.divx.divxprefs
        /Library/PreferencePanes/Flip4Mac WMV.prefPane
        - net.telestream.wmv.prefpane
        /Library/PreferencePanes/MacFUSE.prefPane
        - com.google.MacFUSE
    Bundles
        /Library/Audio/MIDI Drivers/EmagicUSBMIDIDriver.plugin
        - info.emagic.driver.unitor
        /Library/Contextual Menu Items/ParallelsCM.plugin
        - com.parallels.cmplugin
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/AdobeCP15.plugin
        - com.adobe.adobecp
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Flash Player.plugin
        - com.macromedia.FlashPlayer-10.6.plugin
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/adobecp.plugin
        - com.adobe.adobecp20
        /Library/Internet Plug-Ins/AdobePDFViewer.plugin
        - com.adobe.acrobat.pdfviewer
        /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin
        - com.adobe.acrobat.pdfviewerNPAPI
        /Library/Internet Plug-Ins/DivXBrowserPlugin.plugin
        - com.divx.DivXBrowserPlugin
        /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin
        - net.telestream.wmv.plugin
        /Library/Internet Plug-Ins/GarminGpsControl.plugin
        - com.garmin.GarminGpsControl
        /Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
        - com.Google.GoogleEarthPlugin.plugin
        /Library/Internet Plug-Ins/Silverlight.plugin
        - com.microsoft.SilverlightPlugin
        /Library/Internet Plug-Ins/googletalkbrowserplugin.plugin
        - com.google.googletalkbrowserplugin
        /Library/Internet Plug-Ins/iPhotoPhotocast.plugin
        - com.apple.plugin.iPhotoPhotocast
        /Library/Internet Plug-Ins/o1dbrowserplugin.plugin
        - com.google.o1dbrowserplugin
        /Library/Printers/Macromedia/PDEs/FlashPaperPDE.plugin
        - com.macromedia.flashpaper.pde.FlashPaperPDE
        /Library/Printers/PPD Plugins/AdobePDFPDE.plugin
        - com.Adobe.print.AdobePDF.pde
        /Library/QuickLook/GBQLGenerator.qlgenerator
        - com.apple.garageband.quicklookgenerator
        /Library/QuickLook/ParallelsQL.qlgenerator
        - com.parellels.quicklookgenerator
        /Library/Spotlight/GBSpotlightImporter.mdimporter
        - com.apple.garageband.spotlightimporter
        /Library/Spotlight/Microsoft Entourage.mdimporter
        - com.microsoft.entourageMDImporter
        /Library/Spotlight/ParallelsMD.mdimporter
        - com.parallels.mdimporter
        /Users/USER/Library/Application Support/Google/Chrome/PepperFlash/12.0.0.70/PepperFlashPlayer.plugin
        - com.macromedia.PepperFlashPlayer.pepper
        /Users/USER/Library/Internet Plug-Ins/CitrixOnlineWebDeploymentPlugin.plugin
        - com.citrixonline.mac.WebDeploymentPlugin
    Library paths
        /Applications/Karaoke Maker/libmp3lame.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/Frameworks/libwchar.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/CoreTypes.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibCURL.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibCrypto.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibSSL.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/SystemFrameworkUtils.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/ZLib.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/DWANative.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/ARKCmdCaps.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/ARKCmdFS.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/ARKEngine.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/AdobePIM.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/PWANative.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/adobe_caps.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/adobe_oobelib.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/adobe_upgrade.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/UWA/UWANative.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/core/AdobePIM.dylib
        /Library/Application Support/DivX/Libraries/libDivXDesktopSupport.dylib
        /Library/Application Support/DivX/QtPlugins/accessible/libqtaccessiblewidgets.dylib
        /Library/Application Support/DivX/QtPlugins/iconengines/libqsvgicon.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqgif.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqico.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqjpeg.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqmng.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqsvg.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqtiff.dylib
        /Library/Application Support/DivX/QtPlugins/script/libqtscriptdbus.dylib
        /Library/Application Support/DivX/QtPlugins/sqldrivers/libqsqlite.dylib
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/WebKit.dylib
        /Library/Frameworks/MacFUSE.framework/Versions/A/Resources/Debug/libfuse.dylib. dSYM/Contents/Resources/DWARF/libfuse.dylib
        /Library/Frameworks/MacFUSE.framework/Versions/A/Resources/Debug/libfuse_ino64. dylib.dSYM/Contents/Resources/DWARF/libfuse_ino64.dylib
        /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Core.framework/Versions/3.0/Libraries/libHPIOnetsnmp.5.dylib
        /Library/Printers/hp/Frameworks/HPSmartX.framework/Versions/B/Resources/lib/SxC FReader.dylib
        /Library/Printers/hp/Frameworks/HPSmartX.framework/Versions/C/Resources/lib/SxC FReader.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libnspr4.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libnssckbi.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libplc4.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libplds4.dylib
        /Users/USER/Library/Application Support/Firefox/Profiles/w5owlxqa.default/gmp-gmpopenh264/1.1/libgmpopenh264.dy lib
        /Users/USER/Library/Application Support/Google/Chrome/WidevineCDM/1.4.6.758/_platform_specific/mac_x64/libwidev inecdm.dylib
        /Users/USER/Library/Caches/com.apple.ScreenSaver.Engine/com.apple.vision/com.ap ple.vision.64FaceCoreCLKernel.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libpbodbc3.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-jni-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-pb-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-rw-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-util-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/tomcat/webapps/ROOT/WEB-INF/components/com.adobe.bauhaus.nativecomm/res/VCF oundation.dylib
        /usr/lib/libgutenprint.2.0.3.dylib
        /usr/local/lib/libfreetype.6.3.16.dylib
        /usr/local/lib/libfreetype.6.dylib
        /usr/local/lib/libfreetype.dylib
        /usr/local/lib/libfuse.2.dylib
        /usr/local/lib/libfuse_ino64.2.dylib
    Installations
        Norton AntiVirus Application: 6/20/10, 10:21 PM
        Symantec Scheduler: 6/20/10, 10:21 PM
        Microsoft® Silverlight™ Browser Plug-In: 6/19/10, 8:25 PM
        Parallels Desktop 5 for Mac: 6/10/10, 6:02 AM
        MacFUSE Core: 6/10/10, 6:03 AM
    Elapsed time (sec): 317
    <Edited By Host>

  • Problem description: My Macbook air runs very slow since installed Yosemite a few days ago  EtreCheck version: 2.0.6 (91) Report generated October 24, 2014 at 12:07:13 GMT 3  Hardware Information: ️ MacBook Air (13-inch, Mid 2012) (Verified) MacBoo

    Problem description:
    My Macbook air runs very slow since installed Yosemite a few days ago
    EtreCheck version: 2.0.6 (91)
    Report generated October 24, 2014 at 12:07:13 GMT+3
    Hardware Information: ℹ️
      MacBook Air (13-inch, Mid 2012) (Verified)
      MacBook Air - model: MacBookAir5,2
      1 2 GHz Intel Core i7 CPU: 2-core
      8 GB RAM Not upgradeable
      BANK 0/DIMM0
      4 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      4 GB DDR3 1600 MHz ok
      Bluetooth: Good - Handoff/Airdrop2 supported
      Wireless:  en0: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 4000 -
      Color LCD 1440 x 900
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 0:15:57
    Disk Information: ℹ️
      APPLE SSD SM256E disk0 : (251 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      Macintosh HD (disk1) /  [Startup]: 249.77 GB (28.85 GB free)
      Core Storage: disk0s2 250.14 GB Online
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Internal Memory Card Reader
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Applications/Parallels Access.app
      [loaded] com.parallels.virtualsound (1.0.27 27 - SDK 10.6) Support
      /Applications/Parallels Desktop.app
      [not loaded] com.parallels.kext.hidhook (9.0 24251.1052177) Support
      [not loaded] com.parallels.kext.hypervisor (9.0 24251.1052177) Support
      [not loaded] com.parallels.kext.netbridge (9.0 24251.1052177) Support
      [not loaded] com.parallels.kext.usbconnect (9.0 24251.1052177) Support
      [not loaded] com.parallels.kext.vnic (9.0 24251.1052177) Support
      /Library/Extensions
      [not loaded] org.virtualbox.kext.VBoxDrv (4.2.4) Support
      [not loaded] org.virtualbox.kext.VBoxNetAdp (4.2.4) Support
      [not loaded] org.virtualbox.kext.VBoxNetFlt (4.2.4) Support
      [not loaded] org.virtualbox.kext.VBoxUSB (4.2.4) Support
    Startup Items: ℹ️
      VirtualBox: Path: /Library/StartupItems/VirtualBox
      Startup items are obsolete and will not work in future versions of OS X
    Launch Agents: ℹ️
      [invalid?] com.cisco.anyconnect.gui.plist Support
      [invalid?] com.oracle.java.Java-Updater.plist Support
      [running] com.parallels.mobile.prl_deskctl_agent.launchagent.plist Support
      [invalid?] com.teamviewer.teamviewer.plist Support
      [invalid?] com.teamviewer.teamviewer_desktop.plist Support
      [loaded] org.macosforge.xquartz.startx.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [running] com.cisco.anyconnect.vpnagentd.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [invalid?] com.oracle.java.Helper-Tool.plist Support
      [running] com.parallels.mobile.dispatcher.launchdaemon.plist Support
      [loaded] com.parallels.mobile.kextloader.launchdaemon.plist Support
      [loaded] com.teamviewer.Helper.plist Support
      [invalid?] com.teamviewer.teamviewer_service.plist Support
      [loaded] org.macosforge.xquartz.privileged_startx.plist Support
    User Launch Agents: ℹ️
      [loaded] com.google.keystone.agent.plist Support
      [running] com.microsoft.LaunchAgent.SyncServicesAgent.plist Support
      [running] com.parallels.mobile.startgui.launchagent.plist Support
      [not loaded] org.virtualbox.vboxwebsrv.plist Support
    User Login Items: ℹ️
      iTunesHelper Application (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      Moveslink2 Application (/Applications/Moveslink2.app)
      Quicksilver Application (/Applications/Quicksilver.app)
      Google Drive Application (/Applications/Google Drive.app)
      Google Chrome ApplicationHidden (/Applications/Google Chrome.app)
      Dropbox UNKNOWN (missing value)
      EvernoteHelper Application (/Applications/Evernote.app/Contents/Library/LoginItems/EvernoteHelper.app)
    Internet Plug-ins: ℹ️
      SharePointBrowserPlugin: Version: 14.1.3 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.189 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.189 - SDK 10.6 Support
      Flip4Mac WMV Plugin: Version: 3.0.0.126   - SDK 10.8 Support
      QuickTime Plugin: Version: 7.7.3
      Default Browser: Version: 600 - SDK 10.10
    User Internet Plug-ins: ℹ️
      Google Earth Web Plug-in: Version: 7.1 Support
    Safari Extensions: ℹ️
      AdBlock
      OpenIE
      Facebook Photo Zoom
      Translate
      1-ClickWeather
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      Flip4Mac WMV  Support
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          7% WindowServer
          1% fontd
          1% Google Drive
          0% Microsoft Database Daemon
          0% AppleSpell
    Top Processes by Memory: ℹ️
      180 MB Google Drive
      86 MB mds_stores
      86 MB SyncServicesAgent
      86 MB Google Chrome
      86 MB Finder
    Virtual Memory Information: ℹ️
      2.25 GB Free RAM
      2.84 GB Active RAM
      2.56 GB Inactive RAM
      936 MB Wired RAM
      3.88 GB Page-ins
      74 KB Page-outs

    You have nearly run out of disk space.  Either purchase a larger one or start cleaning out the one you have?

Maybe you are looking for

  • TAX LINE ITEMS

    Hi Experts, This is Suma Mani ,my client having retail stores in India and back support is SAP ECC6.0.My business wants cummulative tax figures would requires post with sales docuemetns not line item wise. Evey busines transaction should be one tax l

  • Sending of OUTBOUND IDOC

    We are sending out idocs for schedule lines, Some idocs get stuck at 03 status (successfully processed), but these idocs or not received by the recepiant systems which does ot acknoledge receipt. hence thou these idocs are successful they are not sen

  • HT5699 Security  question

    I have problem with my Apple ID. I forgot answers to security questions and I can't download anything now. I can't call to support group because I live in Ukraine. Anyone know solution of this problem?

  • ODI error

    Hi When i try to join the source table with the lookup table in ODI 11.1.6. I am getting the following error. Can anyone help me with that ODI-26066- AN unexpected error has occured java.lang.NullPointerException      at oracle.odi.ui.etlmodeler.dumm

  • Finding and deleting duplicate files

    I apologize in advance if I didn't search effectively enough, but having found no discussion of my problem, here it is: Is there a way to find, select and delete duplicate files on my hard drive? I know they exist, and would like to see them listed s