How to remove programs from "open with".

Recently I installed VM Fusion on my new MBP with SnowLeopard. The annoying issue is that when I right click on a file from SL and select "open with" I get a long list with windows programs that I don't intend to use. Is there a way to remove those programs when I select "open with". Thank you
Juan

Juan2009 wrote:
Recently I installed VM Fusion on my new MBP with SnowLeopard. The annoying issue is that when I right click on a file from SL and select "open with" I get a long list with windows programs that I don't intend to use. Is there a way to remove those programs when I select "open with".
no, there isn't. this list is generated by the launch services database and you can't control it manually.
Juan
Message was edited by: V.K.

Similar Messages

  • How to remove application from Open With?

    Hi,
    I added by accident a wrong application to a file type in Finder. Now I would like to remove this entry from the files Open With list. How could this be done?
    Thanks and best regards
    Ralph

    Is it just that specific document you want to open with another application or is it all documents of the same format?
    #1 Hold down Ctrl key and choose Open with. Choose the application you want to open the document with. IF you want to always open this one document with another app then the pre-chosen one hold down both the CTRl and the Option key and choose application.
    #2 When you want a certain format of documents to open with another application, let us say all .rtf should open with Pages instead of Textedit, select one rtf document and use Command (apple) key and I to get the information window for this document. Somewhere in the middle you can choose with which app. to open this document with and right beneath there is another button that gives you the opportunity to open all document of the same format with the same application.
    Pardon my Swenglish, but I hope you are helped by this!

  • Remove applications from 'Open With' dialog

    I have searched seemingly everywhere for an answer to this question. When I right click on an html file (or really any other file) and to go the 'open with' dialog there is a huge laundry list of applications listed. For the html files there are DivX converters, Big Bang games, etc.
    How can I remove all of the applications that I know can not open an html file and others that I would never use to open those files either? I like the ability to easily open the file with different browsers but really dislike scrolling through 30 different applications to find them.
    I have deleted the "com.apple.LaunchServices" file and rebooted.
    I have run "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/LaunchServ ices.framework/Support/lsregister -kill -r -domain local -domain system -domain user" and rebooted.
    Neither of these solutions are helping the problem at all. I even tried some Onyx program. Is there a way to "trim the fat" from that window?

    The command you ran "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/LaunchServ ices.framework/Support/lsregister -kill -r -domain local -domain system -domain user" is for 10.4, it is not the correct command to rebuild LaunchServices in 10.5.
    Launch /Utilities/Terminal and copy & paste this at the command line to rebuild LaunchServices:
    Code:
    <pre class="alt2" style="margin:0px; padding:3px; border:1px inset; width:640px; height:34px; overflow:auto">/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchSe rvices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain system -domain user</pre>
    Then press return. Wait until terminal returns to the command line. Quit Terminal. After that, log out and back in or restart. That should solve it. Let us know
    -mj

  • Remove Applications from "Open With..." List

    Ever since I installed Adobe Creative Suite, there have been countless applications available in the Open With... list for image file types (JPEGs, PNGs, etc.).
    How do I remove applications from that list for a given file type?
    Thanks!

    There are a whole bunch of mostly useless little droplets that are installed by Photoshop and ImageReady. You can either toss them all, toss all but the one or two you might use, or just zip them and then if you ever want one unzip, take what you want and rezip the others (I kept Make Sepia Tone.exe and zipped all the others, and put a text file with a list of them all in the parent folder). Here's the location:
    "/Applications/Adobe Photoshop CS/Samples/Droplets"
    There is one folder full of ImageReady ones, and another folder of the Photoshop ones. If you trash them you can also get them back from the install disk. After you zip or trash them restart the computer and your Open with list will be back to normal.
    Francine
    Francine
    Schwieder

  • How to remove ^M when open with vi

    Hi All,
    O.S is SUN 5.10
    below is .sh file which i need to run but when i opened it with vi it shows ^M, so how to remove this , please suggest.
    ORACLE_SID=test^M
    . oraenv^M
    ^M
    sqlplus /nolog << EOF^M
    conn / as sysdba^M
    ^M
    set echo on^M
    set heading off^M
    set timing on^M
    set serveroutput on^M
    set timing on^M
    ^M
    spool FUL_.SQL.OUT^M
    ^M
    ALTER SESSION ENABLE RESUMABLE;^M
    ALTER SESSION SET RESUMABLE_TIMEOUT = 10800;^M
    alter session set current_schema=partd;^M
    ^M
    @FUL_.SQL^M
    ALTER SESSION DISABLE RESUMABLE;^M
    spool off^M
    EOF^M

    [email protected] wrote:
    Hi All,
    O.S is SUN 5.10
    below is .sh file which i need to run but when i opened it with vi it shows ^M, so how to remove this , please suggest.
    ORACLE_SID=test^M
    . oraenv^M
    ^M
    sqlplus /nolog << EOF^M
    conn / as sysdba^M
    ^M
    set echo on^M
    set heading off^M
    set timing on^M
    set serveroutput on^M
    set timing on^M
    ^M
    spool FUL_.SQL.OUT^M
    ^M
    ALTER SESSION ENABLE RESUMABLE;^M
    ALTER SESSION SET RESUMABLE_TIMEOUT = 10800;^M
    alter session set current_schema=partd;^M
    ^M
    @FUL_.SQL^M
    ALTER SESSION DISABLE RESUMABLE;^M
    spool off^M
    EOF^MWell, this isn't an oracle question ... but ...
    What you are seeing is the result of moving a text file from a dos (windows) platform to a nix platform without proper translation.  In dos, two characters are used to indicate end-of-line.  they are the control characters for Carraige Return and Line Feed (x'13' and x'10').  In nix, only one character. I can't remember if it is the x'13' or the x'10'. Normally, when a file is copied from one platform to another, the copy utility will recognize this and make the proper modification to the file. However, if you ftp the file in binary mode, no translation occurs. Of course, you can ftp in text (ascii) mode only if it is a text file to begin with, so you can't do this with a zip file.
    As already given, there are ways to use vi substitution commands to fix it after the fact. You can also use the utility 'dos2unix' to fix the file after it has landed on the *nix platform. (the actual name of the file may be a variant on the theme of 'dos2unix'.  You may have to google a bit to find it on your OS).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Is there a way to remove items from "Open With" list?

    I have an interesting dilemma that I have not yet found an answer to in all of my internet/discussion forum searches.  Maybe I'm asking the wrong questions or searching in the wrong places, but I've given up and now have to post the question in hopes there's an answer out there.
    My issue is that whenever I want to use the "Open With" feature for an image/jpeg file, the list of choices is massive! Looking at it now, it lists over 30 applications, but at most I would only ever want to open this type of file in one of maybe four applications.
    Starting off, I used to have Parallels on my computer.  Have since purchased VMWare Fusion 4 and now use that as my virtual machine to run Windows for some of my design work.  As far as I know, I had removed ALL of Parallels from my computer when I uninstalled the app.  I followed all of the instructions in the uninstall process, but there seems to be something left behind.
    It may seem that mentioning that wouldn't have anything to do with the "Open With" function, but here is a screen shot to show what happens whenever I right-click an image file:
    http://www.virtuosocreative.com/apple/openwith1.jpg
    Most of the time, if I right click the image, it'd be to open in Photoshop or Set as Desktop.  On occasion I have had to open a jpeg file in Illustrator, but that's it.
    For some reason, there are still Parallels applications showing on the "Open With" list, even though it was uninstalled and removed from my computer.  But like I said earlier, it looks like I missed something. 
    In addition, although I am not logged into Windows or have Fusion running in the background, the "Open With" list includes all of the suggested Windows apps as well.  why???
    As much as I appreciate there being such an abundance of options to choose from, this gets extremely annoying when using the feature and I wanted to see if there was any way to modify this list. 
    More than anything, I really want to get rid of all the Parallels extras that are left on my system.  But also, I wanted to see if there was a setting to tweak so that whenever I click on "Open With" on my Mac, it'll only list applications that are my Mac applications and nothing through Fusion or Parallels or anything else.  And to take it a step further, it'd be nice to shorten the list to only applications I would personally use for opening a jpeg file. (i.e. Preview (default), Photoshop, Illustrator, Safari).
    My system is a 2010 iMac i5 2.8GHz/8GB RAM. Lion OS X 10.7.3
    Thanks!

    The Open With menu is built by LaunchServices which collects the information from each app as to what it says it can open. VMWare appears to be registering every app to open jpegs.
    You might try rebuilding the LaunchServices database. I believe this command still works in Lion. Or, you could use a utility like OnyX to call it:
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain system -domain user

  • Removing Items from "Open With" Menu

    I have installed Adobe CS2 awhile back on both my computers. Since I have have done so. Selecting the "Open with" on a selected image file brings up a list of maybe 40 options. Constrain to 200 Pixels and all this other crap. Honestly, it's screwed up a few of my files by accidentally clicking on them. The program will open.. run the script and close. I just want help on getting these items of my list. without removing the apps.
    Thanks alot!

    Mike has the right of it. What I did was to make a list of all the droplets and store it in the droplets folder, then zip all of them except one I actually sometimes use. There is also a folder full of droplets for Image Ready. Should I ever want to see what's there for some batch processing I can consult the list, unzip, and use. Then toss.
    Francine
    Francine
    Schwieder

  • [xfce4] - removing options from "open with" submenu [SOLVED]

    Since installing wine, I have a number of entries in my right-click>open with menu that are similar to "Wine - Internet Explorer."  I'd like to remove these.  Any tips are appreciated.
    Last edited by graysky (2011-12-10 16:03:42)

    You should have a look at $HOME/.local/share/applications/
    Last edited by Spider.007 (2011-12-10 13:33:19)

  • Remove Items from "Open With" Menu

    I installed Photoshop CS2 last week and it added a ton of unnecessary and unwanted items in the "Open With" menu in Tiger...
    Sorry that image is so large, but imagine having to look at that on a regular basis. Can I remove all of that crap?! It's slowed Tiger's performance considerably.

    If you are never going to use them, you can simply trash and restart. Or you can do what I (and many others) have done and leave the ones you do use and zip the rest. They are here:
    "/Applications/Adobe Photoshop CS/Samples/Droplets"
    There's one folder for Photoshop, and second for ImageReady.
    Francine
    Francine
    Schwieder

  • How to default programs to open with certain programs

    Okay, this may sound dumb, but I can't seem to figure out how to set a .avi file to open with vlc player instead of quicktime. Any suggestions?

    Another dumb question: i have all my icons laid out perfectly, then, when i restart, it moves everything around again...how do i fix this?

  • Remove double items (programs) from Open With menu??

    Hello;
    Since some disk perturbances and hooking up an external HD for backup there is one notorious issue in my Finder (Panther 10.3.9): All the applications are listed twice, overstuffing the right-click menu with double Safaris, double Previews and so on.
    How do I get rid of this stuff? My Contextual Menu items' removal makes no difference (I have just two), as well as trashing the Finder preferences. Do I have any influence on how this list is being built?
    I've searched Apple tech articles and this forum, to no avail. Somebody knows the solution? This is very annoying...
    PowerBook G4 Alu 1.25GHz   Mac OS X (10.3.9)  

    Try these:
    1) Repair permissions using Disk Utility (Applications >> Utilities)
    2) Repair Disk (Bootup from OS X Install Disk 1)
    3) Clean System and User caches
    4) Optimize the System
    5) Update "whatis Mac OS X" database
    Everything here except Repairing the Disk can be done with the freeware utility "OnyX" (www.titanium.free.fr). In OnyX, Tasks 1, 4, and 5 and be found in the "Maintenance" tab. Task 3 is found in the "Cleaning" tab. More in-depth info about these tasks can be found at my System Maintenance and General Troubleshooting guides:
    System Maintenance: http://happymac.50webs.com/smx.html
    General Troubleshooting: http://happymac.50webs.com/gtx.html
    Indragie

  • How to remove virus from words with friends?

    Recently when I play words with friends the app opens up my safari browser to the following address but it is blank. "Cdn3.doubleverify.com".  I downloaded all my apps from the App Store and I thought they were supposed to be "virus free".
    Can anyone help on how to delete the pop up virus from my iPad 3 since it is very annoying  
    There are many others with other iPad versions that have the same issue.

    Since the iPad is not suceptible to malware, the most it can do is be a little annoying.  Words with friends may be attempting to redirect to an offer for the full version or something similar and is going to this page whcih doesn't really work as far as I can tell.
    This is more an issue with their App, and possibly their Ad provider than anytihng else.
    There's really nothing to be done other than complain to words with firends.  Let them know on their own support forums so they may fix it.
    http://www.zyngaplayerforums.com/forumdisplay.php?787-Bugs-amp-Reporting&s=ae7da 1505f3f7d18763a6b5c3f912ac0

  • How to remove glare from eyewear with Elements 10

    Hello, I'm new to the photoshop scene and just purchased the Elements 10.  I have one photo before sending it off from a huge photo shoot that needs glare repair from eyewear.  I have tried the clone tool and the little bandaid tool.  I'm doing something wrong.  It doesn't look right.  Also not understanding "layers".  Anyone out there have an answer?   Thank so much!

    I only used the Spot Healing Brush:
    Use the Selection Brush to make an accurate selection of the glare on the glass surface:
    Use the Spot Healing Brush set to "Content aware", and set the size very small -- 10 pix.  This small size prevents too much of the surrounding area from being used as the fill.  Cover the entire selected area and release the mouse button:
    When you remove the selection, you'll see some small areas that need touching up:
    Use the Spot Healing Brush set to the smallest size covering the areas to clean them up:
    The end result isn't too bad:
    The glare is removed, while preserving the appearance of a shiny surface.
    Added:
    It wouldn't hurt to adjust for the skin tones, either.  I used Enhance...Adjust Color...Adjust Color for Skin Tone, and clicked on the boy's cheek to set the adjustment:
    Ken
    Message was edited by: photodrawken to add additional example

  • How do I remove an addon (Open with Phoshop)?

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/921974]]</blockquote>
    I know how to remove addons, but 'Open with Photoshop' is not removing itself:
    I installed version 1.2 of 'Open with Photoshop', then i updated firefox, but the addon didn't work. There have been many updates for both firefox and 'Open with Photoshop' since then, but I can't upgrade or remove the addon to install the latest version and use it. how should i do this?
    I have ended up with version 1.2 that wont remove, and version 2.2 floating between the list of installed and uninst6alled addons in the addons manager. Help please?!!!
    It won't uninstall on nightly 13 (04/03/12) and firefox 10.0.2

    See:
    *http://kb.mozillazine.org/Uninstalling_add-ons
    *http://kb.mozillazine.org/Uninstalling_toolbars

  • HT1386 The first time I synced my iphone with my mac, I didn't realize that all of my photos from iphoto would transfer over to the phone.   Now, I need to remove some, as they are taking up too much space.  I cannot figure out how to remove them from the

    The first time I synced my iphone 4 with my mac, I didn't realize that all of my photos from the iphoto library would transfer over to the phone (more than 3,000).   Now, I need to remove some, as they are taking up too much space.  I cannot figure out how to remove them from the phone.  I tried to uncheck boxes and sync again, but I get a message that there is no room on the iphone.  I've read as many articles as I can find, but still cannot manage this.  Thanks for any help.

    Open itunes, connect iphone, select what you want, sync

Maybe you are looking for

  • HT5312 I need help resetting my security questions so I can shop from the apple store.

    I can't answer the security questions because I never set them up. I need to download n buy a game for my daughter.

  • Error in Inbound B2B: AIP-50031:  B2B adapter general error: java.lang.Null

    Hi, I am getting the following error in inbound B2B - Custom Document over Generic Exchange - SFTP Description: B2B adapter general error StackTrace: Error -: AIP-50031: B2B adapter general error      at oracle.tip.adapter.b2b.engine.Engine.processIn

  • Set the archive bit on files in a folder?

    While viewing files on my Mac from Windows machines on my network, the archive bit seems to be set on the files in soe directories. Setting the archive bit from the Windows machine appears to work, but the bit doesn't really get reset, as a quick ref

  • 3rd party Sansa media player does not appear in Itunes

    A friend of mine gave me his Sansa Clip media player and asked me to put some music on it. He had 20 some songs that I agreed to purchase for him, and then put them on his media player. Well, duh, I've since learned that purchased songs can only be l

  • Brightness of the screen

    I have an iMac with latest updates and disc permission always done. However, whenever I restart the computer the brightness of the screen is almost all the way down. I always have to go to the prefs and crank it up again. Is there a way to fix this?