Player freezes at the re-building library scr

hello,
i've just got my new v plus. but while i was transferring music files everthing froze, so i plugged out my v plus and reset it. now when i turn it on there is "re-building library" screen comes up and never goes. this is the first day and i can't even add media into it. please help me !!

See the Recovery Mode sticky at the top of the forum.
Try ' Clean Up'.
If that doesn't work, try reloadng the firmware (which you can get from the Support link in the abnner at the top of the page).
If that doesn't work, try 'Format' which will erase *ALL* content from the player.

Similar Messages

  • Frozen on re-building library, plus connection problems (Zen Mic

    Yes, I read the FAQ :smileytongue: I JUST got my new Zen Micro and started putting songs on it. It started giving me trouble with the connection, but was ok for a little bit. After awhile I couldn't get a connection at all. My computer says there's no problem with the USB connection.
    Also, it's stuck on the "re-building library" screen. I did the clean-up and reboot, but it still gets stuck there and I left it on for hours. According the the FAQ, it says ["Next you should try [url="http://www.nomadness.net/modules.php?name=FAQ&myfaq=yes&id_cat=8&categories =Nomad+Jukebox+Zen#23]reloading the firmware/OS[/url], but beware if you are having connection problems also with your PC you may end up with a player that has no firmware and cannot be reloaded."] But I'm having a connection problem, so I shouldn't do this?
    Ahh...someone help! I just got it and I haven't even been able to use it yet! This was after waiting a week for it to be deli'vered.

    Connection problems can be caused by numerous factors unfortunately.
    The best test if you're able to do it is check on another PC. To see if the problem is with your player/cable or the PC.
    There's a lot more advice here in the Zen FAQ at Nomadness.net.

  • [svn] 3159: fix to target the correct player in the external library path for the packaged build file

    Revision: 3159
    Author: [email protected]
    Date: 2008-09-09 12:53:37 -0700 (Tue, 09 Sep 2008)
    Log Message:
    fix to target the correct player in the external library path for the packaged build file
    Modified Paths:
    flex/sdk/trunk/frameworks/build_framework.xml

    Hi Gaurang,
    Were you able to resolve your issue?
    Hope the following links help:
    /message/7579461#7579461 [original link is broken]
    Re: Required JAR files:
    Regards,
    Dao

  • [svn] 3037: Update flex-config. xml files used by the team and qa webapps to use the {targetPlayerMajorVersion} token instead of a hardcoded player version in the library-path and external-library-path .

    Revision: 3037
    Author: [email protected]
    Date: 2008-08-29 06:54:15 -0700 (Fri, 29 Aug 2008)
    Log Message:
    Update flex-config.xml files used by the team and qa webapps to use the {targetPlayerMajorVersion} token instead of a hardcoded player version in the library-path and external-library-path. This will allow the correct playerglobal.swc to be located when the target player version is set in the flex-config.xml or passed to mxmlc or compc.
    Modified Paths:
    blazeds/trunk/apps/team/WEB-INF/flex/flex-config.xml
    blazeds/trunk/qa/resources/config/flex-config.xml

    Unfortunately I don't have the
    "org.eclipse.swt.win32.win32.x86_3.1.2.jar" file. On my computer
    the folder is not set up the same way (C:\Program Files\Adobe\Flex
    Builder 2\plugins) instead it is set up as (C:\Program
    Files\Adobe\Flex Builder 2\metadata\plugins) but I've looked in
    everything and that file just isn't in there. I've re downloaded it
    twice. Still not there. Is there anything else i can do.

  • How can I use a shared library made with the application builder?

    Hi,
    I am using LabVIEW 7.1 running on Slackware 10.1 (kernel 2.4.29) and I am trying to call a graph display from a C program that I use for debugging VME access from a VMIVME controler. So using the application builder I built the VI as a shared library (graph.vi -> graph.so) containing a function called "graph". In my main program the call to the dlopen fails with the error: "graph.so: undefined symbol: UninitLVClient". When I examin graph.so with nm I see that UninitLVClient and other LabVIEW functions are indeed undefined and using ldd shows that graph.so has dependencies only on libc.so.* and *linux*.so.* but not on LabVIEW related stuff. Those functions are defined in the liblv.so that's in the cintools directory but I have no idea if the user is supposed to use that.
    So I think I am missing an important concept here. Can somebody help or direct me to some documentation (I found lots of information about how to link external code to LabVIEW but nothing about how to link LabVIEW code to an external program)?

    Thanks Watermann,
    your message has been very useful so now I am linking to the proper library but I still have problems when trying to load dynamically the shared library produced with LabVIEW. It is strange that I could successfully load the lvrt library at loading time but it does not work when I am loading the library at execution time.
    I made a small LabVIEW program that prints a hello window and I am calling it from a C program. In the first program main.c I am linking to the lvrt library at loading time and it works but in the second one I am linking dynamically at execution time and it does not work. For my work I need to be able to load code done in LabVIEW at execution time. Any help is appreciated!
    Program main.c:
    // small program to call a LabVIEW shared library
    #include
    #include
    #include "hello.h" // got this from the LabVIEW builder, i.e. when I made the hello.so
    int main(void)
    printf("Hello from C!\nLets call LabVIEW now\n");
    hello();
    printf("Bye ... \n");
    return 0;
    The command to compile main.c, i.e. linking shared library lvrt when loading main program:
    gcc -Wall -I /usr/local/lv71/cintools/ -o main main.c hello.so -l lvrt
    The LD_LIBRARY_PATH has been defined and exported:
    $ LD_LIBRARY_PATH=$PWD
    $ export LD_LIBRARY_PATH
    IT WORKS!
    Program main2.c:
    // small program to call a LabVIEW shared library
    #include
    #include
    #include
    int main(void)
    void * h_lvrt;
    void * h_hello;
    void (* hello)(void);
    char * error;
    printf("Hello from C!\nLets call LabVIEW now\n");
    // open LabVIEW RunTime shared library
    // in my computer located at /usr/local/lib/liblvrt.so
    h_lvrt = dlopen("/usr/local/lib/liblvrt.so", RTLD_NOW);
    // check for error
    error = dlerror();
    if (error) {
    printf("error : could not open LabVIEW RunTime library\n");
    printf("%s\n", error);
    return 1;
    // open hello shared library
    // in my computer located at /home/darss/lv_call/hello.so
    h_hello = dlopen("hello.so", RTLD_NOW);
    // check for error
    error = dlerror();
    if (error) {
    // close LabVIEW RunTime shared library
    dlclose(h_lvrt);
    printf("error : could not open hello library\n");
    printf("%s\n", error);
    return 1;
    // get function hello from library hello.so
    hello = dlsym(h_hello, "hello");
    // check for error
    error = dlerror();
    if (error) {
    // close hello shared library
    dlclose(h_hello);
    // close LabVIEW RunTime shared library
    dlclose(h_lvrt);
    printf("error : could not get the hello function\n");
    printf("%s\n", error);
    return 1;
    // call hello function
    hello();
    // close hello shared library
    dlclose(h_hello);
    // close LabVIEW RunTime shared library
    dlclose(h_lvrt);
    printf("Bye ... \n");
    return 0;
    The command to compile main2.c, i.e. dynamically linking library lvrt at execution of main2 program:
    gcc -Wall -o main2 main2.c -l dl
    The LD_LIBRARY_PATH still defined and exported.
    IT DOES NOT WORK!
    Program output:
    Hello from C!
    Lets call LabVIEW now
    error : could not open hello library
    /home/darss/lv_call/hello.so: undefined symbol: WaitLVDLLReady

  • While installing a program (MediaCenter.exe) to handle audiobooks from the library, I erroneously associated the download site with Windows Media Player instead of the actual application (NetLibrary Media Center). How can I reverse/change this?

    While installing a program (MediaCenter.exe) to handle audiobooks from the library, I erroneously associated the download site with Windows Media Player instead of the actual application (NetLibrary Media Center). How can I reverse/change this? Reinstalling the application does not clear the error, so I'm assuming the association is somewhere in Firefox.

    Never mind -- I just found it under Tools/Options.../Applications, where I changed the incorrect association of "nlmcp" from Windows Media Player to the correct one, NetLibrary Media Center. Done!

  • Any tutorials on how to use the daily build of the Flex SDK to create Flash Player 10 content?

    Is there a tutorial on Adobe on how to use the daily build of
    the Flex SDK to create Flash Player 10 content?

    The approach you take might depend on a few things, but it boils down to using mouse interactive coding to trigger whatever effect you eventually realize.  The code you use will depend on the version of Actionscript you plan to use.
    You could make this as a movieclip that is normally stopped at its first frame and when you mouseover or click the movieclip, it animates along its own timeline to its enlarged state.  If the thumbnail is very small and the larger version is substantially larger, and both need to be clear images, this might be the better approach.
    If this only involves enlarging something, you could also probably realize it just using Actionscript Tween coding rather than timeline animation.

  • A  project on iMovie 09 that  Freezes(only the project)  the viwer window blocked in gray ... .. After editing that  took me a year I'm stuck . All my finished projects that are in the Library infected with the same symptoms and it happens only after I w

    a  project on iMovie 09 that  Freezes(only the project)  the viwer window blocked in gray ... .. After editing that  took me a year I'm stuck .
    All my finished projects that are in the Library infected with the same symptoms and it happens only after I went into the problematic project.  
    I tried to open a new project and everything works
    ...I also tried throwing Recent Files, in the past It solved the problem ,not this time ...
    the problem is that this project will take me a long, long time to rebuild
    imovie 09
    Model Name:          iMac 
      Model Identifier:          iMac10,1
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          3.06 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache:          3 MB
      Memory:          4 GB
      Bus Speed:          1.07 GHz

    This recently happened to me.  I am a novice, but it seemed like that project got corrupted some how.
    I deleted it.
    Went to time machine and picked it up again when I knew it was working ok.
    I lost a few hours of work, but not the entire project.
    Once I had the project back from time machine, it worked fine (but like I said, I lost a little bit of work).

  • Lightroom 5 is freezing in the Library module. I can't access folders or import photos!!! HELP!!!

    Lightroom 5 is freezing in the Library module. I can't access folders or import photos!!! HELP!!!

    Dont know if this is a new occurrence or very many details but try changing "permissions".
    Navigate to the following folder: /Users/[user name]/Library/Application Support/Adobe/Lightroom
    Highlight the Lightroom folder and chose File > Get Information
    Under Sharing & Permission, verify that your have Read & Write Privileges. If not, click the padlock icon at the lower right, enter your password when prompted, then click the Read only entry and select Read & Write.

  • [svn:osmf:] 11292: Removing 'libs' as a library path from the Flex Builder project properties.

    Revision: 11292
    Author:   [email protected]
    Date:     2009-10-30 02:28:09 -0700 (Fri, 30 Oct 2009)
    Log Message:
    Removing 'libs' as a library path from the Flex Builder project properties.
    Modified Paths:
        osmf/trunk/framework/MediaFramework/.actionScriptProperties
        osmf/trunk/framework/MediaFramework/.flexLibProperties

    Revision: 11292
    Author:   [email protected]
    Date:     2009-10-30 02:28:09 -0700 (Fri, 30 Oct 2009)
    Log Message:
    Removing 'libs' as a library path from the Flex Builder project properties.
    Modified Paths:
        osmf/trunk/framework/MediaFramework/.actionScriptProperties
        osmf/trunk/framework/MediaFramework/.flexLibProperties

  • Every time I start my PC it says Procedure entry point xmlTextReaderConstName could not be located in the dynamic link library libxml2.dll  It also keeps freezing on Itunes and I cannot sync. Please can anyone help?

    Every time I start my PC it says Procedure entry point xmlTextReaderConstName could not be located in the dynamic link library libxml2.dll  It also keeps freezing on Itunes and I cannot sync. Please can anyone help?

    With Windows Explorer, navigate to your C:\Program Files\Common Files\Apple\Apple Application Support folder.
    Copy the libmxl2.dll that you should find there, navigate to the nearby Mobile Device Support folder, and Paste it in there also.
    Reboot and see if all is well
    In case that your OS is Windows 7 (64 bit)
    1. Open windows explorer, go to location C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    2. Copy file "libxml2.dll"
    3. Open new windows explorer, to to location C:\Program Files (x86)\Common Files\Apple\Mobile Device Support
    4. Paste file "libxml2.dll" to the location.
    5. Reboot your computer, it should not display that message, it should be clear.
    Good Luck

  • Jurassic park builder freezes all the time on iPhone 5s

    jurassic park builder freezes all the time on iPhone 5s

    Which proves it's not an app issue or a device issue, but rather a network issue.
    Do you have a dual band router?  If so, is the 5 connecting to the 2.4Ghz or the 5Ghz network?
    Have you power cycled the router?

  • Nokia 6500 music player always update the library

    Dear All,
    My Nokia 6500 slide music player always update the library automatically. It cause the playing song is stopped. It is very anoying me......
    Can anyone help me.
    Thanks....

    Have you tried here ?
    http://music.ovi.com/gb/en/pc
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • IMac freezing all the time

    Hi all
    My iMac is freezing all the time. And this since about three weeks. Can anyboly help me on this? Here is the EtreCheck log:
    Thanks in advance!
    By the way: I updated the flash - but after the boot, it still says outdated...
    Hardware Information:
              iMac (27-inch, Late 2009)
              iMac - model: iMac11,1
              1 2.8 GHz Intel Core i7 CPU: 4 cores
              8 GB RAM
    Video Information:
              ATI Radeon HD 4850 - VRAM: 512 MB
    System Software:
              OS X 10.9.2 (13C64) - Uptime: 0 days 0:27:36
    Disk Information:
              WDC WD1001FALS-40U9B0 disk0 : (1 TB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 999.35 GB (56.2 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              OPTIARC DVD RW AD-5680H 
    USB Information:
              Apple Inc. iPhone
              Apple Inc. Built-in iSight
              Apple Computer, Inc. IR Receiver
              Apple Internal Memory Card Reader
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
              com.deterministicnetworks.driver.dniregistry          (1.0.4)
              com.deterministicnetworks.driver.dne          (1.0.14 - SDK 10.6)
              com.citrix.driver.net6im          (1.1.6)
              foo.tap          (1.0)
    Startup Items:
              AdobeVersionCueCS2: Path: /Library/StartupItems/AdobeVersionCueCS2
              macsentials: Path: /Library/StartupItems/macsentials
              Olsrd: Path: /Library/StartupItems/Olsrd
              PagicoService: Path: /Library/StartupItems/PagicoService
              ProTecVb: Path: /Library/StartupItems/ProTecVb
              tap: Path: /Library/StartupItems/tap
              tun: Path: /Library/StartupItems/tun
              VirtualPCOSServices: Path: /Library/StartupItems/VirtualPCOSServices
    Launch Daemons:
              [System] com.adobe.fpsaud.plist 3rd-Party support link
              [System] com.adobe.SwitchBoard.plist 3rd-Party support link
              [System] com.citrix.agadminservice.plist 3rd-Party support link
              [System] com.deterministicnetworks.daemon.dniregsvr.plist 3rd-Party support link
              [System] com.google.keystone.daemon.plist 3rd-Party support link
              [System] com.microsoft.office.licensing.helper.plist 3rd-Party support link
              [System] com.oracle.java.Helper-Tool.plist 3rd-Party support link
              [System] com.oracle.java.JavaUpdateHelper.plist 3rd-Party support link
              [System] pcloudd.plist 3rd-Party support link
    Launch Agents:
              [System] com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
              [System] com.adobe.CS5ServiceManager.plist 3rd-Party support link
              [System] com.citrix.AuthManager_Mac.plist 3rd-Party support link
              [System] com.citrix.ReceiverHelper.plist 3rd-Party support link
              [System] com.citrix.ServiceRecords.plist 3rd-Party support link
              [System] com.divx.dms.agent.plist 3rd-Party support link
              [System] com.divx.update.agent.plist 3rd-Party support link
              [System] com.google.keystone.agent.plist 3rd-Party support link
              [System] com.hp.messagecenter.launcher.plist 3rd-Party support link
              [System] com.oracle.java.Java-Updater.plist 3rd-Party support link
    User Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
              [not loaded] com.adobe.ARM.[...].plist 3rd-Party support link
              [not loaded] com.nchsoftware.expressaccounts.agent.plist 3rd-Party support link
              [not loaded] com.zeobit.MacKeeper.Helper.plist 3rd-Party support link
    User Login Items:
              Doodle iCal Connector
              .DS_Store
              CNQL1208_ButtonManager
              Safari
              iCal
              Mail
              GeekTool
              DiskWarriorStarter
              WeatherMenu
              AirPort Base Station Agent
              Microsoft AU Daemon
              System Events
              iTunesHelper
              Dropbox
              RealPlayer Downloader Agent
              TechToolProtection
              VersionCueCS2Status
              CNQL1208_ButtonManager
    Internet Plug-ins:
              AdobePDFViewerNPAPI: Version: 11.0.06 - SDK 10.6 3rd-Party support link
              Flash Player: Version: 13.0.0.182 - SDK 10.6 Outdated! Update
              DivX Web Player: Version: 3.1.1.9 - SDK 10.6 3rd-Party support link
              AGNetscapePlugin: Version: 1.0 3rd-Party support link
              AdobePDFViewer: Version: 11.0.06 - SDK 10.6 3rd-Party support link
              iPhotoPhotocast: Version: 7.0
              RealPlayer Plugin: Version: (null) 3rd-Party support link
              QuickTime Plugin: Version: 7.7.3
              FlashPlayer-10.6: Version: 13.0.0.182 - SDK 10.6 3rd-Party support link
              CitrixICAClientPlugIn: Version: 11.8.2 - SDK 10.7 3rd-Party support link
              GarminGpsControl: Version: 2.7.3.0 Release 3rd-Party support link
              VLC Plugin: Version: 0.8.6i 3rd-Party support link
              Silverlight: Version: 5.0.61118.0 - SDK 10.6 3rd-Party support link
              OVSHelper: Version: 1.1 3rd-Party support link
              Google Earth Web Plug-in: Version: 6.0 3rd-Party support link
              Default Browser: Version: 537 - SDK 10.9
              Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 3rd-Party support link
              o1dbrowserplugin: Version: 5.2.4.18058 3rd-Party support link
              SharePointBrowserPlugin: Version: 14.1.4 - SDK 10.6 3rd-Party support link
              JavaAppletPlugin: Version: Java 7 Update 55 3rd-Party support link
              OfficeLiveBrowserPlugin: Version: 12.2.3 3rd-Party support link
    Safari Extensions:
              Ebay Shopping Assistant: Version: 1.1
              Slick Savings: Version: 1.0
              Amazon Shopping Assistant: Version: 1.1
              Conduit Search for Safari: Version: 1.0
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User iTunes Plug-ins:
              iTonerSupport: Version: (null) 3rd-Party support link
              TuneUp Visualizer: Version: (null) 3rd-Party support link
    User Internet Plug-ins:
              ConduitNPAPIPlugin: Version: 1.0 - SDK 10.6 3rd-Party support link
    3rd Party Preference Panes:
              Adobe Version Cue CS2  3rd-Party support link
              Déjà Vu  3rd-Party support link
              Diablotin  3rd-Party support link
              Flash Player  3rd-Party support link
              Flip4Mac WMV  3rd-Party support link
              GeekTool  3rd-Party support link
              Growl  3rd-Party support link
              Java  3rd-Party support link
              macsentials Datenbank  3rd-Party support link
              Perian  3rd-Party support link
    Old Applications:
              /Library/Application Support/Microsoft/MERP2.0
                        Microsoft-Fehlerberichterstattung:          Version: 2.2.7 - SDK 10.4 3rd-Party support link
                        Microsoft Ship Asserts:          Version: 1.1.2 - SDK 10.4 3rd-Party support link
              /Library/Application Support/DivX
                        DivXUpdate:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        DivXMediaServer:          Version: 10.1 - SDK 10.5 3rd-Party support link
                        DivXTransferWizard:          Version: 10.1.1 (Build 10.1.1.44) - SDK 10.5 3rd-Party support link
                        DMSLaunch:          Version: 1.0 - SDK 10.5 3rd-Party support link
              SLLauncher:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
              /Applications/Microsoft Office 2011/Office
                        Microsoft Graph:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Upload Center:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Office-Erinnerungen:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft-Datenbankhilfsprogramm:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        My Day:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        SyncServicesAgent:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Open XML for Excel:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Alerts Daemon:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Database Daemon:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Chart Converter:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Clip Gallery:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
              /Applications/Microsoft Office 2011
                        Microsoft PowerPoint:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Excel:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Word:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Outlook:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Document Connection:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
              File Buddy:          Version: 10.0b2 - SDK 10.5 3rd-Party support link
                        /Applications/File Buddy/File Buddy.app
              Microsoft AutoUpdate:          Version: 2.3.3 - SDK 10.4 3rd-Party support link
                        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
              STMStart2:          Version: 6.00 - SDK 10.5 3rd-Party support link
                        /Library/Printers/EPSON/LaserPrinter/Common/PageLibraries/STMStart2.a pp
              DivX Converter:          Version: 10.1.1 (Build 10.1.1.67) - SDK 10.5 3rd-Party support link
              FaceboxPro:          Version: 2.1 - SDK 10.0 3rd-Party support link
              DivX Player:          Version: 10.1.1 (Build 11.3.1.8) - SDK 10.5 3rd-Party support link
              TinyExpander:          Version: 1.0 - SDK 10.0 3rd-Party support link
    Time Machine:
              Skip System Files: NO
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 930.71 GB Disk used: 878.38 GB
              Destinations:
                        Time Machine [Local]
                        Total size: 0 B
                        Total number of backups: (null)
                        Size of backup disk: Too small
                                  Backup size 0 B < (Disk used 878.38 GB X 3)
                        urmels_old [Local] (Last used)
                        Total size: 930.54 GB
                        Total number of backups: 46
                        Oldest backup: 2014-03-06 07:11:18 +0000
                        Last backup: 2014-04-11 19:25:18 +0000
                        Size of backup disk: Too small
                                  Backup size 930.54 GB < (Disk used 878.38 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   2%          WindowServer
                   1%          Safari
                   1%          com.apple.WebKit.Networking
                   1%          EtreCheck
                   0%          ps
    Top Processes by Memory:
              238 MB          Safari
              205 MB          mds_stores
              147 MB          com.apple.IconServicesAgent
              115 MB          Dock
              108 MB          com.apple.WebKit.WebContent
    Virtual Memory Information:
              3.61 GB          Free RAM
              2.89 GB          Active RAM
              680 MB          Inactive RAM
              851 MB          Wired RAM
              537 MB          Page-ins
              0 B          Page-outs

    I made a update for flash again. A new run shows this:
    Hardware Information:
              iMac (27-inch, Late 2009)
              iMac - model: iMac11,1
              1 2.8 GHz Intel Core i7 CPU: 4 cores
              8 GB RAM
    Video Information:
              ATI Radeon HD 4850 - VRAM: 512 MB
    System Software:
              OS X 10.9.2 (13C64) - Uptime: 0 days 0:51:57
    Disk Information:
              WDC WD1001FALS-40U9B0 disk0 : (1 TB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 999.35 GB (56.41 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              OPTIARC DVD RW AD-5680H 
    USB Information:
              Apple Inc. iPhone
              Apple Inc. Built-in iSight
              Apple Computer, Inc. IR Receiver
              Apple Internal Memory Card Reader
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
              com.deterministicnetworks.driver.dniregistry          (1.0.4)
              com.deterministicnetworks.driver.dne          (1.0.14 - SDK 10.6)
              com.citrix.driver.net6im          (1.1.6)
              foo.tap          (1.0)
    Startup Items:
              AdobeVersionCueCS2: Path: /Library/StartupItems/AdobeVersionCueCS2
              macsentials: Path: /Library/StartupItems/macsentials
              Olsrd: Path: /Library/StartupItems/Olsrd
              PagicoService: Path: /Library/StartupItems/PagicoService
              ProTecVb: Path: /Library/StartupItems/ProTecVb
              tap: Path: /Library/StartupItems/tap
              tun: Path: /Library/StartupItems/tun
              VirtualPCOSServices: Path: /Library/StartupItems/VirtualPCOSServices
    Launch Daemons:
              [System] com.adobe.fpsaud.plist 3rd-Party support link
              [System] com.adobe.SwitchBoard.plist 3rd-Party support link
              [System] com.citrix.agadminservice.plist 3rd-Party support link
              [System] com.deterministicnetworks.daemon.dniregsvr.plist 3rd-Party support link
              [System] com.google.keystone.daemon.plist 3rd-Party support link
              [System] com.microsoft.office.licensing.helper.plist 3rd-Party support link
              [System] com.oracle.java.Helper-Tool.plist 3rd-Party support link
              [System] com.oracle.java.JavaUpdateHelper.plist 3rd-Party support link
              [System] pcloudd.plist 3rd-Party support link
    Launch Agents:
              [System] com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
              [System] com.adobe.CS5ServiceManager.plist 3rd-Party support link
              [System] com.citrix.AuthManager_Mac.plist 3rd-Party support link
              [System] com.citrix.ReceiverHelper.plist 3rd-Party support link
              [System] com.citrix.ServiceRecords.plist 3rd-Party support link
              [System] com.divx.dms.agent.plist 3rd-Party support link
              [System] com.divx.update.agent.plist 3rd-Party support link
              [System] com.google.keystone.agent.plist 3rd-Party support link
              [System] com.hp.messagecenter.launcher.plist 3rd-Party support link
              [System] com.oracle.java.Java-Updater.plist 3rd-Party support link
    User Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
              [not loaded] com.adobe.ARM.[...].plist 3rd-Party support link
              [not loaded] com.nchsoftware.expressaccounts.agent.plist 3rd-Party support link
              [not loaded] com.zeobit.MacKeeper.Helper.plist 3rd-Party support link
    User Login Items:
              Doodle iCal Connector
              .DS_Store
              CNQL1208_ButtonManager
              Safari
              iCal
              Mail
              GeekTool
              DiskWarriorStarter
              WeatherMenu
              AirPort Base Station Agent
              Microsoft AU Daemon
              System Events
              iTunesHelper
              Dropbox
              RealPlayer Downloader Agent
              TechToolProtection
              VersionCueCS2Status
              CNQL1208_ButtonManager
    Internet Plug-ins:
              AdobePDFViewerNPAPI: Version: 11.0.06 - SDK 10.6 3rd-Party support link
              Flash Player: Version: 13.0.0.201 - SDK 10.6 3rd-Party support link
              DivX Web Player: Version: 3.1.1.9 - SDK 10.6 3rd-Party support link
              AGNetscapePlugin: Version: 1.0 3rd-Party support link
              AdobePDFViewer: Version: 11.0.06 - SDK 10.6 3rd-Party support link
              iPhotoPhotocast: Version: 7.0
              RealPlayer Plugin: Version: (null) 3rd-Party support link
              QuickTime Plugin: Version: 7.7.3
              FlashPlayer-10.6: Version: 13.0.0.201 - SDK 10.6 3rd-Party support link
              CitrixICAClientPlugIn: Version: 11.8.2 - SDK 10.7 3rd-Party support link
              GarminGpsControl: Version: 2.7.3.0 Release 3rd-Party support link
              VLC Plugin: Version: 0.8.6i 3rd-Party support link
              Silverlight: Version: 5.0.61118.0 - SDK 10.6 3rd-Party support link
              OVSHelper: Version: 1.1 3rd-Party support link
              Google Earth Web Plug-in: Version: 6.0 3rd-Party support link
              Default Browser: Version: 537 - SDK 10.9
              Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 3rd-Party support link
              o1dbrowserplugin: Version: 5.2.4.18058 3rd-Party support link
              SharePointBrowserPlugin: Version: 14.1.4 - SDK 10.6 3rd-Party support link
              JavaAppletPlugin: Version: Java 7 Update 55 3rd-Party support link
              OfficeLiveBrowserPlugin: Version: 12.2.3 3rd-Party support link
    Safari Extensions:
              Ebay Shopping Assistant: Version: 1.1
              Slick Savings: Version: 1.0
              Amazon Shopping Assistant: Version: 1.1
              Conduit Search for Safari: Version: 1.0
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User iTunes Plug-ins:
              iTonerSupport: Version: (null) 3rd-Party support link
              TuneUp Visualizer: Version: (null) 3rd-Party support link
    User Internet Plug-ins:
              ConduitNPAPIPlugin: Version: 1.0 - SDK 10.6 3rd-Party support link
    3rd Party Preference Panes:
              Adobe Version Cue CS2  3rd-Party support link
              Déjà Vu  3rd-Party support link
              Diablotin  3rd-Party support link
              Flash Player  3rd-Party support link
              Flip4Mac WMV  3rd-Party support link
              GeekTool  3rd-Party support link
              Growl  3rd-Party support link
              Java  3rd-Party support link
              macsentials Datenbank  3rd-Party support link
              Perian  3rd-Party support link
    Old Applications:
              /Library/Application Support/Microsoft/MERP2.0
                        Microsoft-Fehlerberichterstattung:          Version: 2.2.7 - SDK 10.4 3rd-Party support link
                        Microsoft Ship Asserts:          Version: 1.1.2 - SDK 10.4 3rd-Party support link
              /Library/Application Support/DivX
                        DivXUpdate:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        DivXMediaServer:          Version: 10.1 - SDK 10.5 3rd-Party support link
                        DivXTransferWizard:          Version: 10.1.1 (Build 10.1.1.44) - SDK 10.5 3rd-Party support link
                        DMSLaunch:          Version: 1.0 - SDK 10.5 3rd-Party support link
              SLLauncher:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
              /Applications/Microsoft Office 2011/Office
                        Microsoft Graph:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Upload Center:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Office-Erinnerungen:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft-Datenbankhilfsprogramm:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        My Day:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        SyncServicesAgent:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Open XML for Excel:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Alerts Daemon:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Database Daemon:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Chart Converter:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Clip Gallery:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
              /Applications/Microsoft Office 2011
                        Microsoft PowerPoint:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Excel:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Word:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Outlook:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
                        Microsoft Document Connection:          Version: 14.2.2 - SDK 10.5 3rd-Party support link
              File Buddy:          Version: 10.0b2 - SDK 10.5 3rd-Party support link
                        /Applications/File Buddy/File Buddy.app
              Microsoft AutoUpdate:          Version: 2.3.3 - SDK 10.4 3rd-Party support link
                        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
              STMStart2:          Version: 6.00 - SDK 10.5 3rd-Party support link
                        /Library/Printers/EPSON/LaserPrinter/Common/PageLibraries/STMStart2.a pp
              DivX Converter:          Version: 10.1.1 (Build 10.1.1.67) - SDK 10.5 3rd-Party support link
              FaceboxPro:          Version: 2.1 - SDK 10.0 3rd-Party support link
              DivX Player:          Version: 10.1.1 (Build 11.3.1.8) - SDK 10.5 3rd-Party support link
              TinyExpander:          Version: 1.0 - SDK 10.0 3rd-Party support link
    Time Machine:
              Skip System Files: NO
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 930.71 GB Disk used: 878.18 GB
              Destinations:
                        Time Machine [Local]
                        Total size: 0 B
                        Total number of backups: (null)
                        Size of backup disk: Too small
                                  Backup size 0 B < (Disk used 878.18 GB X 3)
                        urmels_old [Local] (Last used)
                        Total size: 930.54 GB
                        Total number of backups: 46
                        Oldest backup: 2014-03-06 07:11:18 +0000
                        Last backup: 2014-04-11 19:25:18 +0000
                        Size of backup disk: Too small
                                  Backup size 930.54 GB < (Disk used 878.18 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   2%          WindowServer
                   2%          EtreCheck
                   0%          hidd
                   0%          syncdefaultsd
                   0%          Dock
    Top Processes by Memory:
              188 MB          mds_stores
              180 MB          Mail
              172 MB          com.apple.IconServicesAgent
              164 MB          Safari
              164 MB          Messages
    Virtual Memory Information:
              3.10 GB          Free RAM
              3.31 GB          Active RAM
              748 MB          Inactive RAM
              872 MB          Wired RAM
              603 MB          Page-ins
              0 B          Page-outs

  • I downloaded Yosemite to my macbook pro and now it is running extremely slow, freezing all the time. I did the Etresoft and copied the results as suggested to other  Please help me fix the issue.

    Problem description:
    I upgraded to Yosemite recently.  Now my computer acts like it has a virus although my virus checker says it is clean.  It is slow, freezes all the time, I have to turn off my computer to get it to work again.  I don’t like the new Yosemite.
    EtreCheck version: 2.0.7 (93)
    Report generated October 30, 2014 at 3:57:56 AM CDT
    Hardware Information: ℹ️
      MacBook Pro (15-inch, Late 2011) (Verified)
      MacBook Pro - model: MacBookPro8,2
      1 2.2 GHz Intel Core i7 CPU: 4-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1333 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 3000 - VRAM: 384 MB
      Color LCD 1440 x 900
      AMD Radeon HD 6750M - VRAM: 512 MB
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 0:26:55
    Disk Information: ℹ️
      APPLE HDD HTS547550A9E384 disk0 : (500.11 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]: 498.88 GB (434.65 GB free)
      Core Storage: disk0s2 499.25 GB Online
      MATSHITADVD-R   UJ-8A8
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [not loaded] com.devguru.driver.SamsungComposite (1.4.12 - SDK 10.6) Support
      /System/Library/Extensions/ssuddrv.kext/Contents/PlugIns
      [not loaded] com.devguru.driver.SamsungACMControl (1.4.12 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungACMData (1.4.12 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungMTP (1.4.12 - SDK 10.5) Support
      [not loaded] com.devguru.driver.SamsungSerial (1.4.12 - SDK 10.6) Support
    Launch Agents: ℹ️
      [loaded] com.google.keystone.agent.plist Support
      [loaded] com.trendmicro.itis.dca.plist Support
      [running] com.trendmicro.itis.uimgmt.agent.plist Support
      [running] com.trusteer.rapport.rapportd.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [running] com.trendmicro.icore.av.plist Support
      [running] com.trendmicro.icore.main.plist Support
      [running] com.trendmicro.icore.wp.plist Support
      [running] com.trendmicro.itis.plugin.plist Support
      [running] com.trusteer.rooks.rooksd.plist Support
      [running] com.zeobit.MacKeeper.plugin.AntiTheft.daemon.plist Support
    User Launch Agents: ℹ️
      [loaded] com.adobe.ARM.[...].plist Support
      [running] com.amazon.cloud-player.plist Support
      [failed] com.facebook.videochat.[redacted].plist Support
      [loaded] com.trendmicro.itis.uninstaller.plist Support
      [running] com.zeobit.MacKeeper.Helper.plist Support
    User Login Items: ℹ️
      Flux Application (/Applications/Flux.app)
      iTunesHelper ApplicationHidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      Trend Micro Titanium Application (/Applications/TrendMicro.localized/iTIS.app)
      Dropbox Application (/Applications/Dropbox.app)
      AdobeResourceSynchronizer ApplicationHidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
      Genieo Application (/Incompatible Software/Genieo.app)
      KiesViaWiFiAgent ApplicationHidden (/Applications/Kies.app/Contents/MacOS/KiesViaWiFiAgent.app)
      KiesAgent ApplicationHidden (/Applications/Kies.app/Contents/MacOS/KiesAgent.app)
      fuspredownloader ApplicationHidden (/Users/[redacted]/Library/Application Support/.FUS/fuspredownloader.app)
    Internet Plug-ins: ℹ️
      o1dbrowserplugin: Version: 5.38.5.0 - SDK 10.8 Support
      Default Browser: Version: 600 - SDK 10.10
      Flip4Mac WMV Plugin: Version: 3.1.0.24   - SDK 10.8 Support
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.189 - SDK 10.6 Support
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.189 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      googletalkbrowserplugin: Version: 5.38.5.0 - SDK 10.8 Support
      SharePointBrowserPlugin: Version: 14.4.5 - SDK 10.6 Support
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
      CouponPrinter-FireFox_v2: Version: Version 1.1.7 - SDK 10.5 Support
      JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    User Internet Plug-ins: ℹ️
      WebEx64: Version: 1.0 - SDK 10.6 Support
      NPRoblox: Version: 1, 2, 8, 25 - SDK 10.9 Support
    Safari Extensions: ℹ️
      Omnibar (Disabled)
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      Flip4Mac WMV  Support
      Trusteer Endpoint Protection  Support
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          14% WindowServer
          5% Safari
          4% Dropbox
          2% hidd
          1% lsregister
    Top Processes by Memory: ℹ️
      172 MB Safari
      142 MB softwareupdated
      90 MB rapportd
      66 MB Dropbox
      64 MB com.apple.WebKit.WebContent
    Virtual Memory Information: ℹ️
      33 MB Free RAM
      1.40 GB Active RAM
      1.38 GB Inactive RAM
      1.08 GB Wired RAM
      4.82 GB Page-ins
      237 MB Page-outs

    Thank you all for the help.  My mac still freezes.  I've deleted what you suggested.  I hope it did it right.  Can you check and help me out?
    Also I went through the list and saw this
    MATSHITADVD-R   UJ-8A8
    Could this be the reason why my CD/DVD player quit working because it's crap?
    thanks
    Problem description:
    My macbook pro still freezes at times and i have to power it off and on again after downloading Yosemite.  This never happened prior.  This is my second time running etresoft.  I deleted the mackeeper as suggested.  What else is going on?
    EtreCheck version: 2.0.11 (98)
    Report generated November 4, 2014 at 10:26:26 AM CST
    Hardware Information: ℹ️
      MacBook Pro (15-inch, Late 2011) (Verified)
      MacBook Pro - model: MacBookPro8,2
      1 2.2 GHz Intel Core i7 CPU: 4-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1333 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 3000 - VRAM: 384 MB
      Color LCD 1440 x 900
      AMD Radeon HD 6750M - VRAM: 512 MB
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 2 days 18:23:38
    Disk Information: ℹ️
      APPLE HDD HTS547550A9E384 disk0 : (500.11 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]: 498.88 GB (433.64 GB free)
      Core Storage: disk0s2 499.25 GB Online
      MATSHITADVD-R   UJ-8A8 
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Applications/SmartSwitch.app
      [not loaded] com.devguru.driver.SamsungACMControl (1.4.12 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungACMData (1.4.12 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungComposite (1.4.12 - SDK 10.6) Support
      [not loaded] com.devguru.driver.SamsungMTP (1.4.12 - SDK 10.5) Support
      [not loaded] com.devguru.driver.SamsungSerial (1.4.12 - SDK 10.6) Support
    Problem System Launch Agents: ℹ️
      [failed] com.apple.CallHistoryPluginHelper.plist
      [failed] com.apple.CallHistorySyncHelper.plist
      [failed] com.apple.cmfsyncagent.plist
      [failed] com.apple.coreservices.appleid.authentication.plist
      [failed] com.apple.icloud.fmfd.plist
      [failed] com.apple.rcd.plist
      [failed] com.apple.spindump_agent.plist
      [failed] com.apple.telephonyutilities.callservicesd.plist
      [failed] com.apple.warmd_agent.plist
    Problem System Launch Daemons: ℹ️
      [failed] com.apple.awdd.plist
      [failed] com.apple.ctkd.plist
      [failed] com.apple.ifdreader.plist
      [failed] com.apple.nehelper.plist
      [failed] com.apple.periodic-weekly.plist
      [failed] com.apple.tccd.system.plist
      [failed] com.apple.wdhelper.plist
    Launch Agents: ℹ️
      [loaded] com.google.keystone.agent.plist Support
      [loaded] com.trendmicro.itis.dca.plist Support
      [running] com.trendmicro.itis.uimgmt.agent.plist Support
      [running] com.trusteer.rapport.rapportd.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [running] com.trendmicro.icore.av.plist Support
      [running] com.trendmicro.icore.main.plist Support
      [running] com.trendmicro.icore.wp.plist Support
      [running] com.trendmicro.itis.plugin.plist Support
      [running] com.trusteer.rooks.rooksd.plist Support
    User Launch Agents: ℹ️
      [loaded] com.adobe.ARM.[...].plist Support
      [running] com.amazon.cloud-player.plist Support
      [failed] com.facebook.videochat.[redacted].plist Support
      [loaded] com.trendmicro.itis.uninstaller.plist Support
    User Login Items: ℹ️
      Flux Application (/Applications/Flux.app)
      iTunesHelper ApplicationHidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      Trend Micro Titanium Application (/Applications/TrendMicro.localized/iTIS.app)
      Dropbox Application (/Applications/Dropbox.app)
      AdobeResourceSynchronizer ApplicationHidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
      KiesAgent ApplicationHidden (/Applications/Kies.app/Contents/MacOS/KiesAgent.app)
      fuspredownloader ApplicationHidden (/Users/[redacted]/Library/Application Support/.FUS/fuspredownloader.app)
      KiesViaWiFiAgent ApplicationHidden (/Applications/Kies.app/Contents/MacOS/KiesViaWiFiAgent.app)
    Internet Plug-ins: ℹ️
      o1dbrowserplugin: Version: 5.38.5.0 - SDK 10.8 Support
      Default Browser: Version: 600 - SDK 10.10
      Flip4Mac WMV Plugin: Version: 3.1.0.24   - SDK 10.8 Support
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.189 - SDK 10.6 Support
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.189 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      googletalkbrowserplugin: Version: 5.38.5.0 - SDK 10.8 Support
      SharePointBrowserPlugin: Version: 14.4.5 - SDK 10.6 Support
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
      CouponPrinter-FireFox_v2: Version: Version 1.1.7 - SDK 10.5 Support
      JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    User Internet Plug-ins: ℹ️
      WebEx64: Version: 1.0 - SDK 10.6 Support
      NPRoblox: Version: 1, 2, 8, 25 - SDK 10.9 Support
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      Flip4Mac WMV  Support
      Trusteer Endpoint Protection  Support
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          9% Safari
          6% WindowServer
          5% com.apple.WebKit.Plugin.64
          4% hidd
          0% authd
    Top Processes by Memory: ℹ️
      172 MB Safari
      146 MB com.apple.WebKit.Plugin.64
      56 MB WindowServer
      52 MB iTunes
      47 MB com.apple.WebKit.WebContent
    Virtual Memory Information: ℹ️
      64 MB Free RAM
      1.13 GB Active RAM
      1.07 GB Inactive RAM
      1.10 GB Wired RAM
      23.40 GB Page-ins
      1.55 GB Page-outs

Maybe you are looking for

  • Iphoto problem

    Can anyone help me with a small problem,all my photos on iphoto used to be in date order i dont know what i have touched but everything has changed into thumbnails

  • Download from app store

    had upgrade my ipad to ios6 but now face this problem - can't download a numbers of free apps from app store. it alway shows to answer their stupid securtiy question Repeatly and then no downloading done. its not user friendly anymore, messy. so how

  • How do I enter the serial number in lightroom before the trial is up?

    I'm trying to enter the serial number in the program that I downloaded from the trail version. How do I find where I can put the serial number in before the trial is up?

  • Where in Lion 10.7 Time Machine can I find the Address Book file

    Help! I Sync duplicated my Address Book entries. But now with Lion 10.7 I no longer can find the Address Book contacts file to restore in Time Machine.

  • Trigger error ORA-30625

    I created a trigger that executes a procedure on INSERT or UPDATE. This is the SQL of the trigger... DECLARE INDTS VARCHAR2(15); REPORTERS VARCHAR2(30); p_session myschema.wwa_api_module_session; begin INDTS:= p_session.get_value_as_varchar2(p_block_