Rename App?

I wanted to change the name of my app from App AB to App CD and so I used Rename function under Products, Executables, and the Target. All **** has broke loose.
Now, when I make changes to the code, Xcode compiles to a new version under the old name BUT brings up the old version in the simulator.
So, how are you supposed to rename apps within a project, and how do I get the simulator to present the latest app? Thanks.

Never mind. This answered it well http://discussions.apple.com/thread.jspa?messageID=7390635&#7390635

Similar Messages

  • Why iPods don't have the ability to rename apps I downloaded? I want such a function!

    Please Apple, enable a function to rename apps which were downloaded

    Make a suggestion to Apple here:
    Apple - iPod touch – Feedback

  • Why is renaming apps bad? What does it do?

    Hi all. I've been searching the web and forums all over, but i haven't found a satisfactory answer to this question yet. The best i've found is that the app may not function properly if renamed. Mainly I'm trying to find out if it's ok to rename apps and their folders from say "quicktime player" to "quicktime player 7.6.4" without any detrimental effects. I would like to do this with all my apps ideally - firefox, safari, itunes, divx, etc. It makes it much faster and easier to see what version i'm running.
    does anyone know if this is ok to do. What problem, if any, might it cause and why?
    thanks in advance

    Hi all. I've been searching the web and forums all over, but i haven't found a satisfactory answer to this question yet. The best i've found is that the app may not function properly if renamed. Mainly I'm trying to find out if it's ok to rename apps and their folders from say "quicktime player" to "quicktime player 7.6.4" without any detrimental effects. I would like to do this with all my apps ideally - firefox, safari, itunes, divx, etc. It makes it much faster and easier to see what version i'm running.
    does anyone know if this is ok to do. What problem, if any, might it cause and why?
    Some apps are launched by other apps. For example Quicktime Player is often started by other apps when you ask the other app to play a video clip. Preview is another such app for pictures. Disk Utility when an uninitialized disk is attached to the Mac. Network Utility if there is a network connection problem. Software Update can be invoked via the Apple menu. Terminal when double clicking on a .command file. That is just scratching the surface.
    And of course all those Open With settings may stop finding the apps associated with file type.
    As mentioned software updates may not find the original app if it has been renamed, its parent directory renamed, or the app has been moved. In one case, the app may not be updated at all, and in another case the new version will be installed in the old location, but you will continue using the old version, then one day you read about a new feature in the app, only the old version does not have the feature, you come back to these forums and complain, contributes to the forum try to help, but you never mention you have renamed/moved things, you get frustrated with the people trying to help you, you accuse them of being Fanboys, you dump Mac OS X and install Windows. All because you renamed/moved installed applications
    My general rule is, if the application has an installer, I leave the application where it was installed and do not rename nor move the app. If the application was downloaded via a .dmg file and the installation is just drag and drop from the .dmg, then I store those apps my own /Local/Applications or /Local/Utilities.
    If I want to access an app from anywhere else (or use a different name), I create an alias, change the alias name to whatever I want, and put the alias anywhere I want (or use multiple aliases).

  • How to rename app folders

    Is it possible to rename app folders?

    Place your finger on a folder and wait for it to wiggle... lift up... tap on the folder again... now you can rename the folder .
    Message was edited by: David M Brewer

  • Rename app on the store : possible or not

    Hi
    for legal reson I have to rename app :  not only the name that appear beside the icon on the phone but the app name on the store.
    I upload new version and change the name in the descriptor file. But this appear to only change the name of app in the phone.
    How to change the name in iTunes and the app store  ?
    the ultimate solution is to unpublish but I am looking for an alternative

    In iTunes Connect you have to go to your app and then click "Add Version" to submit details on an update.
    Then click on the icon for "New Version" (if you aren't already on it).
    At the very top of the page (up higher above the meta data section) there should be a "View Information" label with an edit button next to it. Click on that edit button.
    In the form that pops-up you should be able to edit the name of you app.
    Hope that helps.

  • Is it possible to rename app icons on the home screen?

    When I save an app or bookmark to the home screen, I invariably get the name wrong so that I want to rename it. But I can't find out how to. Is it possible to rename, or do I have to start all over again?
    Thanks

    Delete the bookmark and then re-save it, That's the only way that I have found.

  • File rename app

    I created a small application to rename a file using 2 classes. Both compile, and both run, but when I test it on a file, it doesn't rename it.
    Heres the application file:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.text.*;
    import java.text.*;
    public class FileRenameTool {
    //String for the label
    private static String NewFileNameString = "New File Name: ";
    public Component createComponents() {
    //Create the label, field and button.
    JLabel TextFieldLabel = new JLabel(NewFileNameString);
    final JTextField FileNameField = new JTextField(20);
    JButton RenameFile = new JButton("Rename File");
         RenameFile.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e) {
              String text = FileNameField.getText();
    // create file rename object
    FileRename fr = new FileRename();
    // create string values for file names
    String OldFile = "C:\\TestFile01.txt";
    String NewFile = text;
              fr.RenameFile(OldFile, NewFile);
    //Layout the text fields in a panel.
    JPanel fieldPane = new JPanel();
    fieldPane.setBorder(BorderFactory.createEmptyBorder(
    30, //top
    30, //left
    10, //bottom
    30) //right
    fieldPane.setLayout(new GridLayout(0, 1));
    fieldPane.add(TextFieldLabel);
    fieldPane.add(FileNameField);
    fieldPane.add(RenameFile);
              return fieldPane;
         // main method
    public static void main(String[] args) {
         try {
    UIManager.setLookAndFeel(
    UIManager.getCrossPlatformLookAndFeelClassName());
    } catch (Exception e) {}
    //Create the top-level container and add contents to it.
    JFrame frame = new JFrame("FileRename");
    FileRenameTool rntool = new FileRenameTool();
    Component contents = rntool.createComponents();
    frame.getContentPane().add(contents, BorderLayout.CENTER);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.pack();
    frame.setVisible(true);
    ...and here is the class it is calling:
    import java.io.*;
    public class FileRename {
         public String OldFile;
         public String NewFile;
         public void RenameFile(String OldFile, String NewFile) {     
              this.OldFile = OldFile;
              this.NewFile = NewFile;     
              try {
                   File file = new File(OldFile);
                   File NewName = new File(NewFile);
                   file.renameTo(NewName);
              catch(Exception e) {
                   e.printStackTrace();
    Thanks in advance for your help.

    I advise you to use instead of renameFile, use a method called "renameTo" it has the following format file1.renameTo(file2), it works correctly becuse i have used it before. i am here for any question.

  • Can I rename an app or a game?

    Is it possible to rename an app or a game?
    I have this uneasy feeling, an itch or something, whenever I see something that does not match.
    The game Doom And Destiny used a capital letter for the word "And". It's giving me a feeling of uneasiness or something. I don't know, It just doesn't feel right whenever I look at it.
    Can I rename it?

    No, we can't rename apps. You can report the grammatical error to the developers if you like and see if they release an update to put things right.

  • How can I rename many files at the same time?

    Hello!
    I have a bunch of PDF files (2 thousand at least) that I need to transfer to another Mac but since it's running OS 9.2 it won't accept the files because the names are too long, therefore, I need a quick way to change all such files into a shorter name but maintaining some of the serial numbers each file name has (i.e., not changing all to the same name but just taking off the first or last 5 characters for example), is there a way to do this sort of thing with OS 10.3.9 or 10.5.2?
    Best!
    Danny

    Look at this shareware. http://www.jonn8.com/ntf/ It's a batch renaming app, but I'm not sure it will do exactly what you want. However, it does have a 7 day free trial.
    If you do a Google serach using +batch file rename mac+ you can review a lot more apps.
     Cheers, Tom

  • Bridge looses cache folder tree window when I rename parent folder

    I managed to activate the code to change the name of the parent folder containing some images (I put an underscore before de parent folder name).
    When I did it by hand, the folder and subfolders I was navigating on were visible on the folder window (left side)
    But I lose the navigation of folders in the left window when I do exactly the same by code.
        var newPath = decodeURI(Path.parent)+"/_"+name;
        var bt = new BridgeTalk();
        bt.target = "bridge";
        // as acções do bridge contêm 1. colocação do _   2. label  3. organização dos ficheiros por tipo
        bt.body = "app.document.thumbnail =Folder('"+newPath+"').fsName;";
        bt.send(8);
        bt.pump();
    ... and the left navigation desapears...
    Is there same cache loosing problem? Can I recreate the last folder navigational window some how with code?

    I can't believe I found it, but it works and it is simple.
    At the same time, I spent 2 years using Bridge the wrong way and if I had an Adobe Bridge dev here, I wouldn't be very happy.
    Why Adobe simply can't give straight and direct answers like this case?
    When i rename a app.document.presentationPath, I usually returned to its parent folder on first place and then refresh() this one.
    Then I would go back to the new renamed folder.
    Problem:
    The 'Content' panel was OK and refreshed but the 'Folders' panel was not: the last non-renamed folder was still there and I always needed to close its parent folder on 'Folder' panel, click F5, and reopen making that ghost folder to disappear.
    The solution is simple and logical but sadly it took 2 years for me to solve it.
    I only needed to start dealing with the node string containing a fully qualified Bridge URI (uniform resource identifier).
    For example:
    var origin = Folder(app.document.presentationPath);
    var renamedFolderName = 'v_'+ Folder(app.document.presentationPath).name;
    app.document.thumbnail = new Thumbnail(new Folder(app.document.presentationPath).parent); // back to parent folder
    Folder(origin).rename(renamedFolderName ); // renaming
    app.document.thumbnail.refresh(); // refreshing the parent folder
    app.document.thumbnail = new Thumbnail(new Thumbnail(Folder(Folder(origin).parent + "/" + renamedFolderName ).fsName).uri); // the uri is the node (fully qualified Bridge URI)
    And... the 'Folders' panel was updated correctly and the ghost folder vanished!

  • OSX on external drive - MAS apps damaged when changing computer

    hi,
    i have my osx mountain lion installation on an external harddrive (ssd, thunderbolt connection)
    and i'm doing it for a long time without problems. everyday i change the computer 2 or more times.
    home -> office -> home ....
    since a couple of days a lot of apps puchased in mac app store dont start anymore. the icon
    bumps just once, the login window "you didnt buy this app on this computer ...." pops up. this is
    ok, i login and then - some seconds later an error popup pops up.
    e.g.
    “Renamer.app” is damaged and can’t be opened. Delete “Renamer.app” and download it again from the App Store.
    app deleting and downloading/installing agian works. until i connect on the next computer. then
    the **** starts again.
    this unusual work process worked all the time, so i dont know waht to do. downloading and installing
    apps all the time, twice a day cant be a solution.

    i just startet a test.
    1. clean mountain lion install on a new external usb hard drive
    2. after all the only thing i did was to login into mac app store and reload 2 of my purchased apps
    3. apps work
    4. shutdown and start the hd on another mac
    5. apps dont work with the described error
    6. shut down and start again on the first mac
    7. apps work
    the problem was suddenly there, no updates or upgrades in the last time. the apps worked
    after upgrading to 10.8.2. and suddenly nothing works anymore. in my opinion this must
    be a mac app store bug. it would be very strange if so many apps from one day to another -
    without updates - dont work anymore.

  • New Market Place My Apps Missing Installed

    I'm having the same problem as another post under the droid x so I know its not unique to this model. A ton of my installed apps are missing from the new market place.  The follow up question from verizon to that post was "If you search for your apps in the market place do they still come up and show as installed.  Sometimes authors remove or rename apps from the market place..." yada yada.  The answer is yes.  In fact the market place alerted me I had an update available but the app was not listed in the my app section, nor did the my app section display the update all button.  I had to search for each of my apps to find the one with an update.  They all came up in the market place, and they all said installed.  But none were on the my apps list.  The only thing in common about the ones actually listed is that they seem to all be the paid apps. I haven't gone through every one yet to see if that's the case, but so far all the one's missing were free, and from my recollection of what I've purchased, those all seem to be listed in my apps.   

    Hello mls1915. I'm hoping that we can work together and find a solution to the problems encountered. Please send me a PM and include a contact number and the best time to reach you. 
    ChaunceyM_VZWSupport 
    Follow us on twitter @VZWSupport 

  • Can I develop an App or a Game for PC on MacBook Air?

    I want to be a game programmer. And I love Apple. Now I'm learning C++. With Microsoft Visual C++, I can program a software. But I want a MacBook Air. Please help me. Can I create a game on MacBook Air (2012 Model). I know that I can develop a game for iOS only on Mac. But can I develop for PC. My PC is not good. Or can I develop a game for OSX on MB air? Please........., help me!

    No, we can't rename apps. You can report the grammatical error to the developers if you like and see if they release an update to put things right.

  • Somehow flashmall has invaded my macbook which is really annoying, but what is worse is that my Safari keeps crashing. I've tried Linc Davis' suggestions but my macbook keeps telling me that no launch agent files can be found.

    Please, please help me someone. I also tried installing Adblock but that was no good either. Here is my printout -
    ashjmth     Feb 16, 2015 10:10 AM 
      Re: how to get rid of pop ups flash mall  in response to Linc Davis      
    Start time: 15:07:38 02/16/15
    Revision: 1166
    Model Identifier: MacBook3,1
    Memory: 2 GB
    System Version: Mac OS X 10.6.8 (10K549)
    Kernel Version: Darwin 10.8.0
    64-bit Kernel and Extensions: No
    Time since boot: 49 minutes
    Root access: No
    Memory
        BANK 0/DIMM0:
          Size: 1 GB
          Speed: 667 MHz
          Status: OK
          Manufacturer: 0xCE00000000000000
        BANK 1/DIMM1:
          Size: 1 GB
          Speed: 667 MHz
          Status: OK
          Manufacturer: 0xAD00000000000000
    SerialATA
       ST9160310AS                            
    USB
       USB 2.0 Hub [MTT] (TERMINUS TECHNOLOGY INC.)
       2300 Series (Lexmark International Inc.)
    Diagnostic reports
       2015-02-11 system_profiler crash x3
       2015-02-11 update.2RNuveIh crash
       2015-02-11 update.Glk1Z30f crash
       2015-02-11 update.Lr8kXw9K crash
       2015-02-11 update.MPGRwdpH crash
       2015-02-11 update.RaoXqURz crash
       2015-02-11 update.UjMxExm5 crash
       2015-02-11 update.V1Tw1lG3 crash
       2015-02-11 update.YRrkyupY crash
       2015-02-11 update.ZYblVTl0 crash
       2015-02-11 update.b2tLuq1w crash
       2015-02-11 update.xCD43rK3 crash
       2015-02-11 update.za7pA4fX crash
       2015-02-12 update.oahvyuFy crash
       2015-02-13 Safari crash x2
       2015-02-13 WebProcess crash
       2015-02-13 update.X6HNc79e crash
       2015-02-14 update.e8mnQgiv crash
       2015-02-15 WebProcess crash x2
       2015-02-15 update.VuMnXe7B crash
       2015-02-16 update.zH1u3R8l crash
    Log
       Mon Feb 16 15:04:36 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:04:46 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:04:56 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:05:06 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:05:16 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:05:26 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:05:36 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:05:46 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:05:56 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:06:06 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:06:16 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:06:26 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:06:36 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:06:46 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:06:56 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:07:06 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:07:16 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:07:26 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:07:36 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:07:46 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:07:56 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:08:06 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:08:16 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:08:26 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
       Mon Feb 16 15:08:36 com.zeobit.MacKeeper.Helper: Throttling respawn: Will start in 10 seconds
    Activity
       CPU: user 31%, system 10%
    Bad kernel extensions
       /System/Library/Extensions/AppleUSBEthernetHost.kext
    Loaded kernel extensions
       e.AppleFSCompression.AppleFSCompressionTypeZlib (1.0.0d1)
       e.BootCache (31.1)
       e.Dont_Steal_Mac_OS_X (7.0.0)
       e.driver.ACPI_SMC_PlatformPlugin (4.7.0a1)
       e.driver.AirPortBrcm43224 (428.42.4)
       e.driver.AppleACPIButtons (1.3.6)
       e.driver.AppleACPIEC (1.3.6)
       e.driver.AppleACPIPlatform (1.3.6)
       e.driver.AppleAHCIPort (2.1.7)
       e.driver.AppleAPIC (1.4)
       e.driver.AppleBacklight (170.0.46)
       e.driver.AppleBacklightExpert (1.0.1)
       e.driver.AppleEFINVRAM (1.4.0)
       e.driver.AppleEFIRuntime (1.4.0)
       e.driver.AppleFWOHCI (4.7.3)
       e.driver.AppleHDA (2.0.5f14)
       e.driver.AppleHDAController (2.0.5f14)
       e.driver.AppleHPET (1.5)
       e.driver.AppleHWSensor (1.9.3d0)
       e.driver.AppleIntelCPUPowerManagement (142.6.0)
       e.driver.AppleIntelCPUPowerManagementClient (142.6.0)
       e.driver.AppleIntelGMAX3100 (6.3.6)
       e.driver.AppleIntelGMAX3100FB (6.3.6)
       e.driver.AppleIntelMeromProfile (19)
       e.driver.AppleIntelPIIXATA (2.5.1)
       e.driver.AppleLPC (1.5.1)
       e.driver.AppleMCCSControl (1.0.20)
       e.driver.AppleProfileCallstackAction (20)
       e.driver.AppleProfileKEventAction (10)
       e.driver.AppleProfileReadCounterAction (17)
       e.driver.AppleProfileRegisterStateAction (10)
       e.driver.AppleProfileThreadInfoAction (14)
       e.driver.AppleProfileTimestampAction (10)
       e.driver.AppleRTC (1.3.1)
       e.driver.AppleSMBIOS (1.7)
       e.driver.AppleSMC (3.1.0d5)
       e.driver.AppleSmartBatteryManager (160.0.0)
       e.driver.AppleUSBBluetoothHCIController (2.4.5f3)
       e.driver.AppleUSBComposite (3.9.0)
       e.driver.AppleUSBEHCI (4.2.4)
       e.driver.AppleUSBHub (4.2.4)
       e.driver.AppleUSBMergeNub (4.2.4)
       e.driver.AppleUSBTCKeyEventDriver (201.6)
       e.driver.AppleUSBTCKeyboard (201.6)
       e.driver.AppleUSBTrackpad (201.6)
       e.driver.AppleUSBUHCI (4.2.0)
       e.driver.AppleUpstreamUserClient (3.5.7)
       e.driver.AudioAUUC (1.57)
       e.driver.AudioIPCDriver (1.1.6)
       e.driver.CSRUSBBluetoothHCIController (2.4.5f3)
       e.driver.DiskImages (289)
       e.driver.DspFuncLib (2.0.5f14)
       e.driver.IOPlatformPluginFamily (4.7.0a1)
       e.driver.SMCMotionSensor (3.0.1d2)
       e.driver.XsanFilter (402.1)
       e.filesystems.autofs (2.1.0)
       e.iokit.AppleProfileFamily (41)
       e.iokit.AppleYukon2 (3.2.1b1)
       e.iokit.IO80211Family (320.1)
       e.iokit.IOACPIFamily (1.3.0)
       e.iokit.IOAHCIBlockStorage (1.6.4)
       e.iokit.IOAHCIFamily (2.0.6)
       e.iokit.IOATAFamily (2.5.1)
       e.iokit.IOATAPIProtocolTransport (2.5.1)
       e.iokit.IOAudioFamily (1.8.3fc2)
       e.iokit.IOBDStorageFamily (1.6)
       e.iokit.IOBluetoothFamily (2.4.5f3)
       e.iokit.IOBluetoothSerialManager (2.4.5f3)
       e.iokit.IOCDStorageFamily (1.6.1)
       e.iokit.IODVDStorageFamily (1.6)
       e.iokit.IOFireWireFamily (4.2.6)
       e.iokit.IOFireWireIP (2.0.3)
       e.iokit.IOGraphicsFamily (2.2.1)
       e.iokit.IOHDAFamily (2.0.5f14)
       e.iokit.IOHIDFamily (1.6.6)
       e.iokit.IONDRVSupport (2.2.1)
       e.iokit.IONetworkingFamily (1.10)
       e.iokit.IOPCIFamily (2.6.5)
       e.iokit.IOSCSIArchitectureModelFamily (2.6.8)
       e.iokit.IOSCSIMultimediaCommandsDevice (2.6.8)
       e.iokit.IOSMBusFamily (1.1)
       e.iokit.IOSerialFamily (10.0.3)
       e.iokit.IOStorageFamily (1.6.3)
       e.iokit.IOSurface (74.2)
       e.iokit.IOUSBFamily (4.2.4)
       e.iokit.IOUSBHIDDriver (4.2.0)
       e.iokit.IOUSBUserClient (4.2.4)
       e.iokit.SCSITaskUserClient (2.6.8)
       e.kext.AppleMatch (1.0.0d1)
       e.kext.OSvKernDSPLib (1.3)
       e.nke.applicationfirewall (2.1.14)
       e.security.TMSafetyNet (6)
       e.security.quarantine (0)
       e.security.sandbox (1)
       ing74.driver.Soundflower (1.5.1)
       irit.driver.rbiokithelper (1.9.1)
    Agents
       com.abbott.mal.launchclient
       - status: -
       com.apple.AirPortBaseStationAgent
       - status: -
       com.apple.Kerberos.renew.plist
       - status: 1
       com.apple.ServiceManagement.LoginItems
       com.apple.mrt.uiagent
       - status: 255
       com.apple.servernotifyd
       com.apple.store_helper
       com.apple.storeagent
       com.google.keystone.user.agent
       com.webhelper
       - status: -
       com.webtools.update.agent
       - status: -
       com.zeobit.MacKeeper.Helper
       - status: 1
       org.x.startx
    Startup items
       /Library/StartupItems/CandelairPrefsTool/CandelairPrefsTool
       /Library/StartupItems/CandelairPrefsTool/StartupParameters.plist
    Extensions
       /System/Library/Extensions/AppleBacklightExpert.kext
       - N/A
       /System/Library/Extensions/AppleMCCSControl.kext
       - N/A
       /System/Library/Extensions/AudioAUUC.kext
       - N/A
       /System/Library/Extensions/RBIOKitHelper.kext
       - N/A
       /System/Library/Extensions/Soundflower.kext
       - N/A
    Applications
       /Applications/3Connect/3Connect Setup Assistant.app
       - com.birdstep.easyconnect.assistant
       /Applications/3Connect/3Connect.app
       - com.birdstep.easyconnect.controlpanel
       /Applications/3Connect/Uninstaller.app
       - N/A
       /Applications/Address Book.app
       - com.apple.AddressBook
       /Applications/App Store.app
       - com.apple.appstore
       /Applications/Automator.app
       - com.apple.Automator
       /Applications/BBC iPlayer Desktop.app
       - BBCiPlayerDesktop.UUID.1
       /Applications/Calculator.app
       - com.apple.calculator
       /Applications/Carbon Copy Cloner.app
       - com.bombich.ccc
       /Applications/Chess.app
       - com.apple.Chess
       /Applications/DVD Player.app
       - com.apple.DVDPlayer
       /Applications/Dashboard.app
       - com.apple.dashboardlauncher
       /Applications/Dictionary.app
       - com.apple.Dictionary
       /Applications/Dropbox.app
       - com.getdropbox.dropbox
       /Applications/Font Book.app
       - com.apple.FontBook
       /Applications/FreeStyle Auto-Assist/FreeStyle Auto-Assist.app
       - com.abbott.FreeStyleAuto-Assist
       /Applications/Front Row.app
       - com.apple.frontrowlauncher
       /Applications/GarageBand.app
       - com.apple.garageband
       /Applications/Image Capture.app
       - com.apple.Image_Capture
       /Applications/Mail.app
       - com.apple.mail
       /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/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/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/Photo Booth.app
       - com.apple.PhotoBooth
       /Applications/Plex.app
       - com.plexsquared.Plex
       /Applications/Preview.app
       - com.apple.Preview
       /Applications/QuickTime Player.app
       - com.apple.QuickTimePlayerX
       /Applications/Remote Mouse.app
       - com.remotemouse.remotemouseserver
       /Applications/Safari.app
       - com.apple.Safari
       /Applications/Skype.app
       - com.skype.skype
       /Applications/Stickies.app
       - com.apple.Stickies
       /Applications/System Preferences.app
       - com.apple.systempreferences
       /Applications/TextEdit.app
       - com.apple.TextEdit
       /Applications/Time Machine.app
       - com.apple.backup.launcher
       /Applications/Utilities/Activity Monitor.app
       - com.apple.ActivityMonitor
       /Applications/Utilities/Adobe AIR Application Installer.app
       - com.adobe.air.ApplicationInstaller
       /Applications/Utilities/Adobe AIR Uninstaller.app
       - com.adobe.air.Installer
       /Applications/Utilities/AirPort Utility.app
       - com.apple.airport.airportutility
       /Applications/Utilities/AppleScript Editor.app
       - com.apple.ScriptEditor2
       /Applications/Utilities/Audio MIDI Setup.app
       - com.apple.audio.AudioMIDISetup
       /Applications/Utilities/Bluetooth File Exchange.app
       - com.apple.BluetoothFileExchange
       /Applications/Utilities/Boot Camp Assistant.app
       - com.apple.bootcampassistant
       /Applications/Utilities/ColorSync Utility.app
       - com.apple.ColorSyncUtility
       /Applications/Utilities/Console.app
       - com.apple.Console
       /Applications/Utilities/DigitalColor Meter.app
       - com.apple.DigitalColorMeter
       /Applications/Utilities/Disk Utility.app
       - com.apple.DiskUtility
       /Applications/Utilities/Expose.app
       /Applications/Utilities/Grab.app
       - com.apple.Grab
       /Applications/Utilities/Grapher.app
       - com.apple.grapher
       /Applications/Utilities/Java Preferences.app
       - com.apple.java.JavaPreferences
       /Applications/Utilities/Keychain Access.app
       - com.apple.keychainaccess
       /Applications/Utilities/Migration Assistant.app
       - com.apple.MigrateAssistant
       /Applications/Utilities/Network Utility.app
       - com.apple.NetworkUtility
       /Applications/Utilities/Podcast Capture.app
       - com.apple.PodcastCapture
       /Applications/Utilities/RAID Utility.app
       - com.apple.RAIDUtility
       /Applications/Utilities/Remote Install Mac OS X.app
       - com.apple.remoteinstallmacosx
       /Applications/Utilities/Spaces.app
       - com.apple.spaceslauncher
       /Applications/Utilities/System Profiler.app
       - com.apple.SystemProfiler
       /Applications/Utilities/Terminal.app
       - com.apple.Terminal
       /Applications/Utilities/VoiceOver Utility.app
       - com.apple.VoiceOverUtility
       /Applications/Utilities/X11.app
       - org.x.X11
       /Applications/VLC.app
       - org.videolan.vlc
       /Applications/iCal.app
       - com.apple.iCal
       /Applications/iChat.app
       - com.apple.iChat
       /Applications/iDVD.app
       - com.apple.iDVD
       /Applications/iMovie.app
       - com.apple.iMovieApp
       /Applications/iPhoto.app
       - com.apple.iPhoto
       /Applications/iSync.app
       - com.apple.isync
       /Applications/iTunes.app
       - com.apple.iTunes
       /Applications/iWeb.app
       - com.apple.iWeb
       /Applications/iWork '09/Keynote.app
       - com.apple.iWork.Keynote
       /Applications/iWork '09/Numbers.app
       - com.apple.iWork.Numbers
       /Applications/iWork '09/Pages.app
       - com.apple.iWork.Pages
       /Google Chrome.app
       - com.google.Chrome
       /Google Earth.app
       - com.Google.GoogleEarthPlus
       /Library/Application Support/Microsoft/HV1.0/Microsoft Help Viewer.app
       - com.microsoft.helpviewer
       /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
       - com.microsoft.autoupdate2
       /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/iPhoto/iPhoto Library Upgrader.app
       - com.apple.iPhotoLibraryUpgrader
       /Library/Documentation/Applications/iDVD/iDVD Getting Started.app
       - com.apple.iDVDGettingStarted
       /Library/Documentation/License.app
       - com.apple.License
       /Library/Documentation/User Guides And Information.localized/Apple Hardware Test Read Me.app
       - com.apple.AppleHardwareTestReadMe
       /Library/Documentation/User Guides And Information.localized/Welcome to Leopard.app
       - com.apple.WelcometoLeopard
       /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/Adobe AIR Updater.app
       - com.adobe.air.Installer
       /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Template.app
       - com.adobe.air.Template
       /Library/Image Capture/Devices/Brother Scanner.app
       - com.brother.scanner.ica
       /Library/Image Capture/Devices/Canon IJScanner1.app
       - jp.co.canon.ijscanner1.scanner.ica
       /Library/Image Capture/Devices/Canon IJScanner2.app
       - jp.co.canon.ijscanner2.scanner.ica
       /Library/Image Capture/Devices/EPSON Scanner.app
       - com.epson.scanner.ica
       /Library/Image Capture/Devices/HP Scanner 3.app
       - com.hp.scanModule3
       /Library/Image Capture/Devices/HPScanner.app
       - com.hp.scanModule
       /Library/Image Capture/Devices/Lexmark Scanner.app
       - com.lexmark.scanner.ica
       /Library/Image Capture/Devices/Samsung Scanner.app
       - com.samsung.imagecapture.scanner.app
       /Library/Image Capture/Support/LegacyDeviceDiscoveryHelpers/CIJScannerRegister.app
       - jp.co.canon.cijscannerregister
       /Library/Printers/Brother/Utilities/BrStatusMonitor.app
       - com.brother.utility.BrStatusMonitor
       /Library/Printers/Canon/BJPrinter/Utilities/BJPrinterUtility2.app
       - jp.co.canon.bj.print.app.bjprinterutility2
       /Library/Printers/Canon/BJPrinter/Utilities/CIJAutoSetupTool.app
       - jp.co.canon.ij.print.cijautosetuptool
       /Library/Printers/EPSON/InkjetPrinter2/AutoSetupTool/EPIJAutoSetupTool2.app
       - com.epson.ijprinter.EPIJAutoSetupTool2
       /Library/Printers/EPSON/InkjetPrinter2/Filter/commandtoescp.app
       - com.epson.ijprinter.commandtoescp
       /Library/Printers/EPSON/InkjetPrinter2/Filter/pdftopdf2.app
       - com.epson.ijprinter.pdftopdf2
       /Library/Printers/EPSON/InkjetPrinter2/Filter/rastertoescpII.app
       - com.epson.ijprinter.rastertoescpII
       /Library/Printers/EPSON/InkjetPrinter2/Utility/UTL/Epson Printer Utility Lite.app
       - com.epson.ijprinter.EpsonPrinterUtilityLite
       /Library/Printers/Lexmark/Drivers/Lexmark Printer Utility.app
       - com.lexmark.print.lexmarkutility.2009
       /Library/Printers/Lexmark/Utilities.localized/UtilityLogger.app
       - com.lexmark.UtilityLogger
       /Library/Printers/Lexmark/filter/CUPSDriver.app
       - com.lexmark.CUPSDriver
       /Library/Printers/hp/Fax/HPFaxBackend.app
       - com.hp.CupsFaxBackend
       /Library/Printers/hp/Utilities/HP Utility.app
       - com.hp.printerutility
       /Library/Printers/hp/cups/Deskjet.driver
       - com.hp.print.cups.filter.deskjet
       /Library/Printers/hp/cups/Inkjet.driver
       - com.hp.print.cups.filter.inkjet
       /Library/Printers/hp/cups/Inkjet1.driver
       - com.hp.print.cups.filter.inkjet1
       /Library/Printers/hp/cups/Inkjet3.driver
       - com.hp.print.cups.filter.inkjet3
       /Library/Printers/hp/cups/Inkjet4.driver
       - com.hp.print.cups.filter.inkjet4
       /Library/Printers/hp/cups/Inkjet5.driver
       - com.hp.print.cups.filter.inkjet5
       /Library/Printers/hp/cups/Inkjet6.driver
       - com.hp.print.cups.filter.inkjet6
       /Library/Printers/hp/cups/Inkjet8.driver
       - com.hp.print.cups.filter.inkjet8
       /Library/Printers/hp/cups/Laserjet.driver
       - com.hp.print.cups.filter.laserjet
       /Library/Printers/hp/cups/Officejet.driver
       - com.hp.print.cups.filter.officejet
       /Library/Printers/hp/cups/Photosmart.driver
       - com.hp.print.cups.filter.photosmart
       /Library/Printers/hp/cups/PhotosmartPro.driver
       - com.hp.print.driver.cups.photosmart_pro
       /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
       /Library/Printers/hp/filter/hprastertojpeg.driver
       - com.hp.quick.connect.software.cups.filter
       /Library/Scripts/ColorSync/Embed.app
       - N/A
       /Library/Scripts/ColorSync/Extract.app
       - N/A
       /Library/Scripts/ColorSync/Match.app
       - N/A
       /Library/Scripts/ColorSync/Proof.app
       - N/A
       /Library/Scripts/ColorSync/Remove.app
       - N/A
       /Library/Scripts/ColorSync/Rename.app
       - N/A
       /Library/Scripts/ColorSync/Set Info.app
       - N/A
       /Library/Scripts/ColorSync/Show Info.app
       - N/A
       /System/Library/ColorSync/Calibrators/Display Calibrator.app
       - com.apple.ColorSyncCalibrator
       /System/Library/CoreServices/AVRCPAgent.app
       - com.apple.AVRCPAgent
       /System/Library/CoreServices/AddPrinter.app
       - com.apple.print.add
       /System/Library/CoreServices/AirPort Base Station Agent.app
       - com.apple.AirPortBaseStationAgent
       /System/Library/CoreServices/Apple80211Agent.app
       - com.apple.airport.helper
       /System/Library/CoreServices/AppleFileServer.app
       - N/A
       /System/Library/CoreServices/AppleGraphicsWarning.app
       - com.apple.AppleGraphicsWarning
       /System/Library/CoreServices/AppleScript Runner.app
       - com.apple.AppleScriptRunner
       /System/Library/CoreServices/AppleScript Utility.app
       - com.apple.AppleScriptUtility
       /System/Library/CoreServices/Archive Utility.app
       - com.apple.archiveutility
       /System/Library/CoreServices/Automator Launcher.app
       - com.apple.Automator_Launcher
       /System/Library/CoreServices/Automator Runner.app
       - com.apple.AutomatorRunner
       /System/Library/CoreServices/Bluetooth Setup Assistant.app
       - com.apple.BluetoothSetupAssistant
       /System/Library/CoreServices/BluetoothAudioAgent.app
       - com.apple.BluetoothAudioAgent
       /System/Library/CoreServices/BluetoothUIServer.app
       - com.apple.BluetoothUIServer
       /System/Library/CoreServices/CCacheServer.app
       - edu.mit.Kerberos.CCacheServer
       /System/Library/CoreServices/Certificate Assistant.app
       - com.apple.CertificateAssistant
       /System/Library/CoreServices/CoreLocationAgent.app
       - com.apple.CoreLocationAgent.plist
       /System/Library/CoreServices/CoreServicesUIAgent.app
       - com.apple.coreservices.uiagent
       /System/Library/CoreServices/Database Events.app
       - com.apple.databaseevents
       /System/Library/CoreServices/Directory Utility.app
       - com.apple.DirectoryUtility
       /System/Library/CoreServices/DiskImageMounter.app
       - com.apple.DiskImageMounter
       /System/Library/CoreServices/Dock.app
       - com.apple.dock
       /System/Library/CoreServices/Expansion Slot Utility.app
       - com.apple.ExpansionSlotUtility
       /System/Library/CoreServices/File Sync.app
       - com.apple.FileSyncUI
       /System/Library/CoreServices/FileSyncAgent.app
       - com.apple.FileSyncAgent
       /System/Library/CoreServices/Finder.app
       - com.apple.finder
       /System/Library/CoreServices/Folder Actions Dispatcher.app
       - com.apple.FolderActionsDispatcher
       /System/Library/CoreServices/Folder Actions Setup.app
       - com.apple.FolderActionsSetup
       /System/Library/CoreServices/Front Row.app
       - com.apple.frontrow
       /System/Library/CoreServices/HelpViewer.app
       - com.apple.helpviewer
       /System/Library/CoreServices/Image Events.app
       - com.apple.imageevents
       /System/Library/CoreServices/Installer.app
       - com.apple.installer
       /System/Library/CoreServices/Jar Launcher.app
       - com.apple.JarLauncher
       /System/Library/CoreServices/Java Web Start.app
       - com.apple.JavaWebStart
       /System/Library/CoreServices/KerberosAgent.app
       - edu.mit.Kerberos.KerberosAgent
       /System/Library/CoreServices/KeyboardSetupAssistant.app
       - com.apple.KeyboardSetupAssistant
       /System/Library/CoreServices/Language Chooser.app
       - com.apple.LanguageChooser
       /System/Library/CoreServices/MRTAgent.app
       - com.apple.mrt.uiagent
       /System/Library/CoreServices/ManagedClient.app
       - com.apple.ManagedClient
       /System/Library/CoreServices/Memory Slot Utility.app
       - com.apple.MemorySlotUtility
       /System/Library/CoreServices/NetAuthAgent.app
       - com.apple.NetAuthAgent
       /System/Library/CoreServices/Network Diagnostics.app
       - com.apple.NetworkDiagnostics
       /System/Library/CoreServices/Network Setup Assistant.app
       - com.apple.NetworkSetupAssistant
       /System/Library/CoreServices/OBEXAgent.app
       - com.apple.OBEXAgent
       /System/Library/CoreServices/ODSAgent.app
       - com.apple.ODSAgent
       /System/Library/CoreServices/PreferenceSyncClient.app
       - com.apple.PreferenceSync
       /System/Library/CoreServices/Printer Setup Utility.app
       - com.apple.print.PrintCenter
       /System/Library/CoreServices/Problem Reporter.app
       - com.apple.ProblemReporter
       /System/Library/CoreServices/RemoteManagement/ARDAgent.app
       - com.apple.RemoteDesktopAgent
       /System/Library/CoreServices/Screen Sharing.app
       - com.apple.ScreenSharing
       /System/Library/CoreServices/SecurityAgent.app
       - com.apple.securityagent
       /System/Library/CoreServices/SecurityFixer.app
       - com.apple.SecurityFixer
       /System/Library/CoreServices/SecurityProxy.app
       - com.apple.SecurityProxy
       /System/Library/CoreServices/ServerJoiner.app
       - com.apple.ServerJoiner
       /System/Library/CoreServices/Setup Assistant.app
       - com.apple.SetupAssistant
       /System/Library/CoreServices/Software Update.app
       - com.apple.SoftwareUpdate
       /System/Library/CoreServices/System Events.app
       - com.apple.systemevents
       /System/Library/CoreServices/SystemUIServer.app
       - com.apple.systemuiserver
       /System/Library/CoreServices/Ticket Viewer.app
       - com.apple.Ticket-Viewer
       /System/Library/CoreServices/UnmountAssistantAgent.app
       - com.apple.UnmountAssistantAgent
       /System/Library/CoreServices/UserNotificationCenter.app
       - com.apple.UserNotificationCenter
       /System/Library/CoreServices/VoiceOver.app
       - com.apple.VoiceOver
       /System/Library/CoreServices/loginwindow.app
       - com.apple.loginwindow
       /System/Library/CoreServices/rcd.app
       - com.apple.rcd
       /System/Library/Filesystems/AppleShare/check_afp.app
       - com.apple.check_afp
       /System/Library/Image Capture/Automatic Tasks/Build Web Page.app
       - com.apple.BuildWebPage
       /System/Library/Image Capture/Automatic Tasks/MakePDF.app
       - com.apple.MakePDF
       /System/Library/Image Capture/Devices/BluetoothCamera.app
       - com.apple.BluetoothCamera
       /System/Library/Image Capture/Devices/MassStorageCamera.app
       - com.apple.MassStorageCamera
       /System/Library/Image Capture/Devices/PTPCamera.app
       - com.apple.PTPCamera
       /System/Library/Image Capture/Devices/TWAINBridge.app
       - com.apple.TWAINBridge
       /System/Library/Image Capture/Devices/Type1Camera.app
       - com.apple.Type1Camera
       /System/Library/Image Capture/Devices/Type2Camera.app
       - com.apple.Type2Camera
       /System/Library/Image Capture/Devices/Type3Camera.app
       - com.apple.Type3Camera
       /System/Library/Image Capture/Devices/Type4Camera.app
       - com.apple.Type4Camera
       /System/Library/Image Capture/Devices/Type5Camera.app
       - com.apple.Type5Camera
       /System/Library/Image Capture/Devices/Type6Camera.app
       - com.apple.Type6Camera
       /System/Library/Image Capture/Devices/Type7Camera.app
       - com.apple.Type7Camera
       /System/Library/Image Capture/Devices/Type8Camera.app
       - com.apple.Type8Camera
       /System/Library/Image Capture/Support/Application/AutoImporter.app
       - com.apple.AutoImporter
       /System/Library/Image Capture/Support/Image Capture Extension.app
       - com.apple.ImageCaptureExtension2
       /System/Library/Image Capture/Support/Image Capture Web Server.app
       - com.apple.ImageCaptureWebServer
       /System/Library/Input Methods/50onPaletteServer.app
       - com.apple.50onPaletteIM
       /System/Library/Input Methods/CharacterPalette.app
       - com.apple.CharacterPaletteIM
       /System/Library/Input Methods/ChineseHandwriting.app
       - com.apple.inputmethod.ChineseHandwriting
       /System/Library/Input Methods/InkServer.app
       - com.apple.ink.inkserver
       /System/Library/Input Methods/KeyboardViewer.app
       - com.apple.KeyboardViewer
       /System/Library/Input Methods/KoreanIM.app
       - com.apple.inputmethod.Korean
       /System/Library/Input Methods/Kotoeri.app
       - com.apple.inputmethod.Kotoeri
       /System/Library/Input Methods/PluginIM.app
       - com.apple.inputmethod.PluginIM
       /System/Library/Input Methods/SCIM.app
       - com.apple.inputmethod.SCIM
       /System/Library/Input Methods/TCIM.app
       - com.apple.inputmethod.TCIM
       /System/Library/Input Methods/TamilIM.app
       - com.apple.inputmethod.Tamil
       /System/Library/Input Methods/VietnameseIM.app
       - com.apple.inputmethod.VietnameseIM
       /System/Library/Perl/Extras/5.10.0/darwin-thread-multi-2level/auto/Wx/wxPerl.ap p
       - net.sourceforge.wxperl
       /System/Library/Perl/Extras/5.8.9/darwin-thread-multi-2level/auto/Wx/wxPerl.app
       - net.sourceforge.wxperl
       /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/st ore_helper.app
       - com.apple.store_helper
       /System/Library/PrivateFrameworks/WebKit2.framework/PluginProcess.app
       - com.apple.WebKit.PluginProcess
       /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app
       - com.apple.WebProcess
       /System/Library/ScriptingAdditions/FontSyncScripting.app
       - com.apple.FontSyncScripting
       /System/Library/ScriptingAdditions/Keychain Scripting.app
       - com.apple.KeychainScripting
       /System/Library/ScriptingAdditions/URL Access Scripting.app
       - com.apple.URLAccessScripting
       /System/Library/Services/ChineseTextConverterService.app
       - com.apple.ChineseTextConverterService
       /System/Library/Services/ImageCaptureService.app
       - com.apple.ImageCaptureService
       /System/Library/Services/SpeechService.service
       - com.apple.speech.SpeechService
       /System/Library/Services/Spotlight.service
       - com.apple.SpotlightService
       /System/Library/Services/SummaryService.app
       - com.apple.SummaryService
       /System/Library/Speech/Recognizers/AppleSpeakableItems.SpeechRecognizer/Content s/Resources/SpeakableItems.app
       - com.apple.speech.recognition.SpeakableItemsApp
       /Users/USER/Desktop/MY DOCUMENTS/PLAYS/QLab.app
       - com.figure53.QLab.2
       /Users/USER/Library/Caches/org.python.python.app
       - N/A
       /Users/USER/Library/Printers/Lexmark 2300 Series.app
       - com.apple.print.PrinterProxy
       /usr/libexec/MiniTerm.app
       - com.apple.pppminiterm
       /usr/share/java/Tools/Applet Launcher.app
       - com.apple.AppletLauncher
       /usr/share/java/Tools/Jar Bundler.app
       - com.apple.JarBundler
       /usr/share/java/Tools/Java VisualVM.app
       - com.apple.java.VisualVM.launcher
    Frameworks
       /Library/Frameworks/Adobe AIR.framework
       - com.adobe.AIR
       /Library/Frameworks/HPDeviceModel.framework
       - com.hp.dmf
       /Library/Frameworks/HPDeviceModel.framework/Frameworks/ClientUI.framework
       - com.hp.dmf.ClientUI
       /Library/Frameworks/HPDeviceModel.framework/Frameworks/Configure.framework
       - com.hp.dmf.Configure
       /Library/Frameworks/HPDeviceModel.framework/Frameworks/Core.framework
       - com.hp.dmf.Core
       /Library/Frameworks/HPDeviceModel.framework/Frameworks/DataStore.framework
       - com.hp.dmf.DataStore
       /Library/Frameworks/HPDeviceModel.framework/Frameworks/DeviceID.framework
       - com.hp.dmf.DeviceID
       /Library/Frameworks/HPDeviceModel.framework/Frameworks/HDT.framework
       - com.hp.dmf.HDT
       /Library/Frameworks/HPDeviceModel.framework/Frameworks/PML.framework
       - com.hp.dmf.PML
       /Library/Frameworks/HPDeviceModel.framework/Frameworks/Status.framework
       - com.hp.dmf.Status
       /Library/Frameworks/HPDeviceModel.framework/Frameworks/XMLServices.framework
       - com.hp.dmf.XMLServices
       /Library/Frameworks/HPPml.framework
       - com.hp.hpio.HPPmlFramework
       /Library/Frameworks/HPServicesInterface.framework
       - com.hp.hpio.HPServicesInterfaceFramework
       /Library/Frameworks/HPSmartPrint.framework
       - com.hp.print.HPSmartPrint
       /Library/Frameworks/PluginManager.framework
       - com.apple.PluginManager
       /System/Library/Frameworks/VideoDecodeAcceleration.framework
       - com.apple.VideoDecodeAcceleration
       /System/Library/PrivateFrameworks/AVFoundationCF.framework
       - com.apple.avfoundationcf
       /System/Library/PrivateFrameworks/AppleGVA.framework
       - com.apple.AppleGVAFramework
       /System/Library/PrivateFrameworks/ApplePushService.framework
       - com.apple.aps.framework
       /System/Library/PrivateFrameworks/CommerceKit.framework
       - com.apple.CommerceKit
       /System/Library/PrivateFrameworks/CommerceKit.framework/Frameworks/CommerceCore .framework
       - com.apple.CommerceCore
       /System/Library/PrivateFrameworks/CoreKE.framework
       - com.apple.CoreKE
       /System/Library/PrivateFrameworks/Heimdal.framework
       - com.apple.Heimdal
       /System/Library/PrivateFrameworks/WebKit2.framework
       - com.apple.WebKit2
    PrefPane
       /Library/PreferencePanes/Candelair.prefPane
       - com.iospirit.Candelair
       /Library/PreferencePanes/Flash Player.prefPane
       - com.adobe.flashplayerpreferences
       /Library/PreferencePanes/Perian.prefPane
       - org.perian.PerianPane
    Bundles
       /Library/Audio/MIDI Drivers/EmagicUSBMIDIDriver.plugin
       - info.emagic.driver.unitor
       /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/HPDeviceModel.framework/Versions/2.0/Frameworks/Core.framew ork/Versions/2.0/Resources/PlugIns/CFXmlParser.plugin
       - com.hp.dmf.plugins.CFXmlParser
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Core.framew ork/Versions/2.0/Resources/PlugIns/LegacySecureData.plugin
       - com.hp.dmf.plugins.LegacySecureData
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Core.framew ork/Versions/2.0/Resources/PlugIns/SecureData.plugin
       - com.hp.dmf.plugins.SecureData
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Core.framew ork/Versions/2.0/Resources/PlugIns/libXmlParser.plugin
       - com.hp.dmf.plugins.libXmlParser
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/CDPrintingStatus.plugin
       - com.hp.dmf.plugins.CDPrintingStatus
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/CoversStatus.plugin
       - com.hp.dmf.plugins.CoversStatus
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/DeviceAlerts.plugin
       - com.hp.dmf.plugins.DeviceAlerts
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/DeviceStatus.plugin
       - com.hp.dmf.plugins.DeviceStatus
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/DeviceTrays.plugin
       - com.hp.dmf.plugins.DeviceTrays
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/EstimatedPagesStatus.plugin
       - com.hp.dmf.plugins.EstimatedPagesStatus
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/JobsStatus.plugin
       - com.hp.dmf.plugins.JobsStatus
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/SpecialtyPrintingStatus.plugin
       - com.hp.dmf.plugins.SpecialPrintingStatus
       /Library/Frameworks/HPDeviceModel.framework/Versions/2.0/Frameworks/Status.fram ework/Versions/2.0/Resources/PlugIns/SuppliesStatus.plugin
       - com.hp.dmf.plugins.SuppliesStatus
       /Library/Frameworks/HPSmartPrint.framework/PlugIns/SPSettingValueTransformer.pl ugin
       - com.hp.print.HPSmartPrint.SPSettingValueTransformer
       /Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
       - null
       /Library/Internet Plug-Ins/Silverlight.plugin
       - com.microsoft.SilverlightPlugin
       /System/Library/Extensions/ATIRadeonX3000GA.plugin
       - com.apple.ATIRadeonX3000GA
       /System/Library/Extensions/AppleIntelHDGraphicsGA.plugin
       - com.apple.driver.AppleIntelHDGraphicsGA
       /Users/USER/Library/Application Support/MacKeeper Helper/NoticeEngine.plugin
       - com.zeobit.MacKeeper.plugin.NoticeEngine
    dylibs
       /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/WebKit.dylib
       /Library/Frameworks/HPServicesInterface.framework/Versions/B/Libraries/libHPIOn etsnmp.5.dylib
       /Library/Printers/Samsung/SCMS/libscmssc.dylib
       /Library/Printers/Samsung/SCMS/libscmssf.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/f loat_rgba.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/f loat_rgbx.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/h alf_rgba.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/h alf_rgbx.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/s fixed14_rgba.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/s int16_rgba.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/s int32_rgba.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/s int8_rgba.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/s norm16_rgba.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/s norm8_rgba.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u int16_rgba.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u int32_rgba.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u int8_rgba.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm16_rgba.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm16_rgbx.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_a.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_argb.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_i.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
       /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgbx.dylib
       /usr/X11/lib/internal/libMesaGL.1.dylib
       /usr/X11/lib/libAppleWM.7.dylib
       /usr/X11/lib/libFS.6.dylib
       /usr/X11/lib/libGL.1.2.dylib
       /usr/X11/lib/libGLU.1.3.dylib
       /usr/X11/lib/libICE.6.dylib
       /usr/X11/lib/libOSMesa.7.2.dylib
       /usr/X11/lib/libSM.6.dylib
       /usr/X11/lib/libX11.6.dylib
       /usr/X11/lib/libXRes.1.dylib
       /usr/X11/lib/libXTrap.6.dylib
       /usr/X11/lib/libXau.6.dylib
       /usr/X11/lib/libXaw6.6.dylib
       /usr/X11/lib/libXaw7.7.dylib
       /usr/X11/lib/libXaw8.8.dylib
       /usr/X11/lib/libXcomposite.1.dylib
       /usr/X11/lib/libXcursor.1.dylib
       /usr/X11/lib/libXdamage.1.dylib
       /usr/X11/lib/libXdmcp.6.dylib
       /usr/X11/lib/libXevie.1.dylib
       /usr/X11/lib/libXext.6.dylib
       /usr/X11/lib/libXfixes.3.dylib
       /usr/X11/lib/libXfont.1.dylib
       /usr/X11/lib/libXfontcache.1.dylib
       /usr/X11/lib/libXft.2.dylib
       /usr/X11/lib/libXi.6.dylib
       /usr/X11/lib/libXinerama.1.dylib
       /usr/X11/lib/libXmu.6.dylib
       /usr/X11/lib/libXmuu.1.dylib
       /usr/X11/lib/libXp.6.dylib
       /usr/X11/lib/libXpm.4.dylib
       /usr/X11/lib/libXprintAppUtil.1.dylib
       /usr/X11/lib/libXprintUtil.1.dylib
       /usr/X11/lib/libXrandr.2.dylib
       /usr/X11/lib/libXrender.1.dylib
       /usr/X11/lib/libXss.1.dylib
       /usr/X11/lib/libXt.6.dylib
       /usr/X11/lib/libXtst.6.dylib
       /usr/X11/lib/libXv.1.dylib
       /usr/X11/lib/libXvMC.1.dylib
       /usr/X11/lib/libXvMCW.1.dylib
       /usr/X11/lib/libXxf86misc.1.dylib
       /usr/X11/lib/libXxf86vm.1.dylib
       /usr/X11/lib/libcairo.2.dylib
       /usr/X11/lib/libdmx.1.dylib
       /usr/X11/lib/libfontconfig.1.dylib
       /usr/X11/lib/libfontenc.1.dylib
       /usr/X11/lib/libfreetype.6.dylib
       /usr/X11/lib/libglut.3.7.dylib
       /usr/X11/lib/liblbxutil.1.dylib
       /usr/X11/lib/liboldX.6.dylib
       /usr/X11/lib/libpixman-1.0.dylib
       /usr/X11/lib/libpng.3.dylib
       /usr/X11/lib/libpng12.0.dylib
       /usr/X11/lib/libxcb-atom.1.dylib
       /usr/X11/lib/libxcb-aux.0.dylib
       /usr/X11/lib/libxcb-composite.0.dylib
       /usr/X11/lib/libxcb-damage.0.dylib
       /usr/X11/lib/libxcb-dpms.0.dylib
       /usr/X11/lib/libxcb-event.1.dylib
       /usr/X11/lib/libxcb-glx.0.dylib
       /usr/X11/lib/libxcb-icccm.1.dylib
       /usr/X11/lib/libxcb-image.0.dylib
       /usr/X11/lib/libxcb-keysyms.0.dylib
       /usr/X11/lib/libxcb-property.1.dylib
       /usr/X11/lib/libxcb-randr.0.dylib
       /usr/X11/lib/libxcb-record.0.dylib
       /usr/X11/lib/libxcb-render-util.0.dylib
       /usr/X11/lib/libxcb-render.0.dylib
       /usr/X11/lib/libxcb-reply.1.dylib
       /usr/X11/lib/libxcb-res.0.dylib
       /usr/X11/lib/libxcb-screensaver.0.dylib
       /usr/X11/lib/libxcb-shape.0.dylib
       /usr/X11/lib/libxcb-shm.0.dylib
       /usr/X11/lib/libxcb-sync.0.dylib
       /usr/X11/lib/libxcb-wm.0.dylib
       /usr/X11/lib/libxcb-xevie.0.dylib
       /usr/X11/lib/libxcb-xf86dri.0.dylib
       /usr/X11/lib/libxcb-xfixes.0.dylib
       /usr/X11/lib/libxcb-xinerama.0.dylib
       /usr/X11/lib/libxcb-xprint.0.dylib
       /usr/X11/lib/libxcb-xtest.0.dylib
       /usr/X11/lib/libxcb-xv.0.dylib
       /usr/X11/lib/libxcb-xvmc.0.dylib
       /usr/X11/lib/libxcb.1.dylib
       /usr/X11/lib/libxkbfile.1.dylib
       /usr/X11/lib/libxkbui.1.dylib
       /usr/lib/libXplugin.1.dylib
       /usr/lib/libapr-1.0.3.8.dylib
       /usr/lib/libaprutil-1.0.3.9.dylib
    Contents of /Library/LaunchAgents/com.abbott.mal.launchclient.plist
       - mod date: Aug  1 01:05:59 2013
       - checksum: 2802284997
       <?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.abbott.mal.launchclient</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/FreeStyle2/adclaunchd</string>
        <string>-x</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.abbott.mal.malserver.plist
       - mod date: Aug  1 01:05:59 2013
       - checksum: 4222551808
       <?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.abbott.mal.malserver</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/FreeStyle2/adcmald</string>
        <string>-x</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.bombich.ccc.plist
       - mod date: Dec  1 17:32:30 2010
       - checksum: 3730953884
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <false/>
        <key>Label</key>
        <string>com.bombich.ccc</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.bombich.ccc</string>
        </array>
        <key>ServiceIPC</key>
        <true/>
        <key>Sockets</key>
        <dict>
        <key>MasterSocket</key>
        <dict>
        <key>SockFamily</key>
        <string>Unix</string>
        <key>SockPathMode</key>
        <integer>438</integer>
        <key>SockPathName</key>
       ...and 7 more line(s)
    Contents of /Library/LaunchDaemons/com.iospirit.candelair.daemon.plist
       - mod date: Jun  9 20:17:29 2011
       - checksum: 1768000052
       <?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.iospirit.candelair.daemon</string>
        <key>Program</key>
        <string>/Library/StartupItems/CandelairPrefsTool/CandelairPrefsTool</string>
        <key>ProgramArguments</key>
        <array>
        <string>CandelairPrefsTool</string>
        <string>daemon</string>
        </array>
        <key>MachServices</key>
        <dict>
        <key>com.iospirit.candelair.daemon</key>
        <true/>
        </dict>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.iospirit.candelair.sync.plist
       - mod date: Jun  9 20:17:29 2011
       - checksum: 958149984
       <?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.iospirit.candelair.sync</string>
        <key>Program</key>
        <string>/Library/StartupItems/CandelairPrefsTool/CandelairPrefsTool</string>
        <key>WatchPaths</key>
        <array>
        <string>/Library/Preferences/com.apple.driver.AppleIRController.plist</string>
        <string>/Library/Preferences</string>
        </array>
       </dict>
       </plist>
    Contents of /System/Library/LaunchAgents/com.apple.AirPortBaseStationAgent.plist
       - mod date: Nov 30 19:17:41 2012
       - checksum: 1071213906
       <?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>EnableTransactions</key>
        <true/>
        <key>KeepAlive</key>
        <dict>
        <key>PathState</key>
        <dict>
        <key>/Library/Preferences/com.apple.AirPortBaseStationAgent.launchd</key>
        <true/>
        </dict>
        </dict>
        <key>Label</key>
        <string>com.apple.AirPortBaseStationAgent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent</string>
        <string>-launchd</string>
        <string>-allowquit</string>
        </array>
       </dict>
       </plist>

    MacKeeper – Do Not Install
    MacKeeper – Do Not Install (2)        See  SDW2001’s post
    MacKeeper Removal
    MacKeeper Removal

  • How can I disable Pages 5.1 and make 4.0.3 the default again?

    Does anyone know how to disable Pages 5.1 so that it NEVER opens a doc again unless I somehow re-enable it?
    I don't want to delete it in case someone sends me a tainted 5.1 Pages doc. Plus I'm sure if I DO delete it, it will keep showing up like a bad penny when I run the software updater which is nearly equally anoying.
    I have tried doing a "get info" on a pages doc and selecting "open with pages 4.0.3" then clicked on "Change All" to make it the default app. This worked on my initial install of Mavericks but after doing some updates, the system will no longer obey the "change all" and insists on opening new pages files with 5.1. I've even tried changing the name of the app, but OSX is not so easily fooled and still opens the doc with the renamed app.

    Bury it a couple of folders down in Applications or simply archive (zip) it.
    Peter
    btw You seriously need to update iWork '09 to v4.3

Maybe you are looking for