Change File Type association to match creator?

I've searched this and other forums, but not seen a similar question. Is there a way to make the Finder open a given file type automatically in its CREATOR application, rather than the associated File Type application?
I have hundreds of files created in Illustrator, all without file extensions, and with PDF compatibility, which means that the Finder sees them as PDFs, not Illustrator files, and opens them in Preview.
Can I tell the Finder NOT to open those in Preview, but still allow PDFs (not created in Illustrator) to retain Preview as their default?
I know you can easily do that on an individual basis, I'm looking for a global solution, so I can still double-click the files and have them open in Illustrator.

Fortunately, for now the OS is recognizing the old icons (from earlier versions of Illustrator). The sad thing is, if I keep those files long enough, I fear the time is coming soon that the OS won't recognize them at all.
If all they need is an extension, open Automator and create a new application. Then select the Files & Folders group and add the Rename Finder Items action. Click "Don't Add" in the alert that appears, unless you want duplicates made of all files you run this script on! Change the popup that reads "Add Date or Time" to "Add Text" and change the Add popup to "as extension", then type the appropriate extension in the box (minus the period). Save it to your desktop, then drop groups of files that need that extension onto it.
It's sad the way Apple jettisons the past, dumping support for the legacy of its users' work.
Nothing in this dumps support for users' work. Those files will continue to work just fine, as long as the application in question (Illustrator) continues to support them.

Similar Messages

  • Changing file type association through java

    hello all,
    here i had a problem like , we know when we try to open .csv file by default it wll open in excel , because the csv file type was associated with excel this we can see in mycomputer->tools->folder options->file types and here we even have the possiblity of changing the association.
    anyway, my question is that is there any way of changing this association like csv to oepn in wordpad through java program
    with regards
    satya

    i created a like wordCsv.reg
    REGEDIT 4
    [HKEY_CLASSES_ROOT\.csv]
    "Default"=string:Wordpad.Document.1
    when i click on this file i could see a message that the entry wassucessfully entried but i cannot see the entry
    is my approach was correct in adding entry in regedit programatically,
    please any more ideas
    http://jniwrapper.com/pages/winpack/downloads
    here in this link i saw some samples regarding changing file types association
    , dont now will it works
    since this is for win32
    i found a program FileTypeAssociation dont know will it works
    * Copyright (c) 2002-2005 TeamDev Ltd. All rights reserved.
    * Use is subject to license terms.
    * The complete licence text can be found at
    * http://www.jniwrapper.com/pages/winpack/license
    package com.jniwrapper.win32.shell;
    import com.jniwrapper.Function;
    import com.jniwrapper.LongInt;
    import com.jniwrapper.Pointer;
    import com.jniwrapper.UInt;
    import com.jniwrapper.win32.registry.RegistryKey;
    import com.jniwrapper.win32.registry.RegistryKeyType;
    import com.jniwrapper.win32.registry.RegistryKeyValues;
    import com.jniwrapper.win32.registry.RegistryException;
    import java.io.File;
    * This class provides functionality for creating file type associations.
    * @author Vladimir Kondrashchenko
    public class FileTypeAssociation
    private static final String FUNCTION_SHCHANGENOTIFY = "SHChangeNotify";
    private static final long SHCNE_ASSOCCHANGED = 0x08000000L;
    private static final long SHCNF_IDLIST = 0x0000;
    private String _extention;
    * Creates a class instance for associating files of the specified type.
    * @param extention specifies the file type by its extention.
    public FileTypeAssociation(String extention)
    if (extention.startsWith("."))
    _extention = extention;
    else
    _extention = "." + extention;
    * Creates a file type association.
    * @param executable an associated file will be passed as a parameter of this executable file.
    * @param progID the programm identifier in the registry. If the specified prog ID is not exist, it
    * will be created.
    public void createAssociation(File executable, String progID)
    if (!executable.isFile())
    throw new IllegalArgumentException("File not found.");
    String commandLine = "\"" + executable.getAbsolutePath() + "\" \"%1\"";
    createAssociation(commandLine, progID);
    * Creates a file type association.
    * @param commandLine specifies an executable command.
    * @param progID the executable programm identifier in the registry. If the specified prog ID is not exist, it
    * will be created.
    public void createAssociation(String commandLine, String progID)
    RegistryKey registryKey = RegistryKey.CLASSES_ROOT.createSubKey(progID+"\\shell\\open\\command", true);
    RegistryKeyValues values = registryKey.values();
    if (commandLine != null)
    values.put("", commandLine);
    else
    values.put("", "");
    registryKey.close();
    registryKey = RegistryKey.CLASSES_ROOT.createSubKey(getExtention(), true);
    values = registryKey.values();
    values.put("", progID, RegistryKeyType.SZ);
    registryKey.close();
    changeNotify();
    * Removes all associations for the file extention.
    public void removeAssociation()
    try
    RegistryKey.CLASSES_ROOT.deleteSubKey(getExtention());
    catch(RegistryException e)
    try
    RegistryKey.CURRENT_USER.openSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FileExts").
    deleteSubKey(getExtention());
    catch(RegistryException e)
    try
    RegistryKey.LOCAL_MACHINE.openSubKey("SOFTWARE\\Classes").deleteSubKey(getExtention());
    catch (RegistryException e)
    changeNotify();
    * Returns the default executable command for the file extention.
    * @return the default executable command for the file extention.
    public String getDefaultCommand()
    RegistryKey key = RegistryKey.CLASSES_ROOT.openSubKey(getProgID());
    key = key.openSubKey("\\shell\\open\\command");
    RegistryKeyValues values = key.values();
    return values.get("").toString();
    * Returns the program identified of the default executable program.
    * @return the program identified of the default executable program.
    public String getProgID()
    RegistryKeyValues values = RegistryKey.CLASSES_ROOT.openSubKey(getExtention()).values();
    return values.get("").toString();
    * Returns <code>true</code> if a file type association for the specified extention is registered.
    * @return <code>true</code> if a file type association for the specified extention is registered.
    public boolean isRegistered()
    try
    RegistryKey.CLASSES_ROOT.openSubKey(getExtention());
    catch (RegistryException e)
    return false;
    return true;
    * Returns the file extention.
    * @return the file extention.
    public String getExtention()
    return _extention;
    private void changeNotify()
    Function function = Shell32.getInstance().getFunction(FUNCTION_SHCHANGENOTIFY.toString());
    function.invoke(null,
    new LongInt(SHCNE_ASSOCCHANGED),
    new UInt(SHCNF_IDLIST),
    new Pointer(null, true),
    new Pointer(null, true));

  • Old icons remain after changing file type association

    I have several video file types in my Movies folder: MPG, MP4, AVI, and MKV.  Many of the file types are automatically associated with Quicktime Player, (despite it being unable to process them, such as the AVIs).  Being unable to play my MKVs at all, I downloaded VLC player to supplement.  I have since grown to like the additional features of VLC, and would like to use it as my player of choice for all movie files.
    Changing the file type associations was simple enough, (Get Info -> Open With, Set as default for each file type), however the pre-associated files still retain their original QT icon.
    How do I go about batch changing the incorrect QT-associated finder icons for icons that correctly represent their new association with VLC?
    Thanks for reading

    I was having that same trouble, but with ".rar" archives (in my case - OS X Yosemite), I tried all ways to solve it, following all kind of tips, like: choosing a new program as default to open the file, app cleaners, terminal commands, disk utility, etc.. but nothing worked. When finally I got problem solved, how I did it: 1) Download the program: Cocktail (http://www.maintain.se/cocktail/), after downloading, I got the message to register it, I simply clicked on "Remind me later". 2) Now, after installing it, configure Cocktail with this short tutorial, exactly as described (http://www.everythingmacintosh.com/tech-notes/maintain-your-mac-with-mac-os-x-co cktail/). After following 2 steps, Cocktail will be configured and will run, in the end your Mac will restart, you can now check that all your archives will be with correct icon (preview/thumbnail). Hope it helps!

  • Change file type associations after install?

    Hi there,
    i need to open/save .mp3 files with audition. apparently i forgot to tick the respective box during the file type association part of audition setup. is there a way to subsequently add .mp3 to a list of associated file types for audition?
    i double-checked - when trying to work around via right-click on a mp3 file --> open with... and then browsing for audition.exe it just goes back to the list of programs to choose from but audition is not the
    also, i can drag & drop mp3 files into audition and work on/with them, but cannot save them as .mp3. this is somewhat strange behavior as i can't see why i can work with the files but cannot really open them with audition nor save them from inside audition. i hope i don't have to reinstall it, any thoughts on this?
    thanks,
    fux
    EDIT: i recognized that this also counts for .pk files, same here..

    thanks for answering ryclark,
    but audition is not in the list. even further, when i choose open with, select choose default program, browse and select audition and click "open", i get directed back to the open with.. list of programs as if nothing happened and audition is still not available from the list. i guess thisis because i didn't associate .mp3 and .pk files with audition in the first place (= when installing audition).
    while it was working, in contrary to your statement, loading a .mp3 file in audition and just clicking on "save", like a ctrl+s would do, saved it perfectly fine as .mp3.
    besides, i know that audition works with .wav files and that .wav is the common format of choice regarding lossless results. nevertheless i would like to be able to load .mp3 files (and .pk files!) into audition and be able to save to .mp3.

  • How to change file type associations in SAP ERP 6.0?

    Hello,
    I'd like to figure out how to change the application associated with a given file type in SAP. I want to open a .DOC file, but I am using OpenOffice instead of MS Word. I have .DOC file type already associated with OpenOffice in Windows XP, but SAP doesn't seem to recognize that association. I am using SAP ERP 6.0. Any ideas?
    Mike

    Hi,
    MS Word is mandatory. You will not be able to work using Open Office in SAP.
    Regards,
    Rajesh Kumar

  • Command line to change file type association?

    I'm trying to find the correct way to change the association for .PDF files by command line, to add to a deployment script.  The client mahcines have Reader X and Acrobat 7.  I'm trying to get it so by default, all users on a machine will use Acrobat 7 to open PDF files.  I have had no luck editing the registry key under Explorer/Shell, or using the commands FTYPE and ASSOC.  Is there another way to get this done?

    Hi Brian,
    You're looking for a hack because not only are 7 and 8 not supported, they are doubly not supported in conjunction with Reader 10.0. If you had 9.x and later products, you could specify which app was the default PDF handler. There could be a way to do what you want, but you're out in the wilderness on this one.
    Ben

  • How do you change file type associations?

    as in which kind of file opens with what application

    Hi,
    You can do this via the 'Get Info' command in the Finder:

  • File Type Associations

    Recently re-installed Adobe Photoshop CS6, Dreamweaver CS4 and Illustrator CS4 because I had considered not renewing my Adobe CC subscription. I decided to stay on CC one more year, but the previous version installs totally messed up my default file associations. I do not want to uninstall those previous apps.
    So of course I went to Bridge preferences and painfully changed them to the CC programs. The problem is if I want to open an .ai in Photoshop CC I used to be able to from one of the options in the flyout. Now I can only pick the default and all the other options are like Photoshop CS6 and Illustrator CS4. How can I change those other options populating the flyout without uninstalling the old apps?
    I can go to Photoshop CC and manually open it there, but that defeats the whole purpose of Bridge.
    I tried to change file type associations through Windows 8 file type associations but it won't let me do it there either.
    Thanks.

    Find a file you want to have associated to a different application in the Finder.
    Control-mouse click (or right click if you have a two button mouse) the file and select Open With's submenu Other...
    Find the application you want to open it with, and make sure in the Open With... file dialog box, you check "Always Open With" before selecting the application. Documents of that type will now always open with that specific application you chose.

  • Since changing our computer I have been unable to download ebooks to my Reader Library I get a message Some file types associated with EPUB files are not associated with Reader Library; Waterstones suggest that I may have accidentally created a new Adobe

    When I try to download them from the Waterstones website I get a message saying:
    ‘Some file types associated with EPUB files are not associated with Reader Library.  Do you want to associate them now?  When I reply yes I get another message; ‘Configuration error unable to update EPUB files check network firewall and try again’.
    The ‘books’ are saved in the Download directory and I can’t transfer them from there to my E-Reader. I have not had any problems before, it was very simple; I saved the download and it automatically went into the Reader Library.
    I contacted HP and they said it is a software error and suggested I contact Waterstones.  I contacted Waterstones Customer Support and got the following response:
    As the error message is specifically mentioning the firewall it does sound like something in the firewall settings is stopping the download from taking place correctly. However, the files should not be being saved to the Download folder. It would be worth trying again by going to your Digital Order History on your Waterstones.com account and pressing the download button, and then making sure to press "Open" not "Save". When you press Open rather than Save it should give the option to open the file with Adobe Digital Editions. If the firewall message still comes up then I'm afraid something is blocking it on your end.
    If the above "Open" download method works but you then still get an error message it could possibly be that you have accidentally created a new Adobe ID when setting up on the new computer, rather than signing in with your old Adobe ID. It would be worth trying the aforementioned download technique again first, but if problems did still persist it would be worth calling Adobe themselves on 0207 365 0735, as they should be able to sort out any account issue.
      In response to the first para of Waterstones email I already do what they suggest I do press ‘Open’ not ‘Save’ but I don’t get the open with Adobe Digital Editions (we have installed Adobe Digital Editions on the new computer. Waterstones say we may have ‘accidentally created a new Adobe ID when setting up the new computer’ does that mean that we shouldn’t have installed Adobe Digital Editions on the new computer as it would have already been there? How do I sign in with my old Adobe ID? 

    Hi all after attampting to get some supoport from adobe by phone.... nice people infurating policys as far as support for digital editions or DRM is conserned... However I got no where with support.
    I ended up instaling Digital editions on my desktop PC and going through the motions of registering and borrowing a book then returning it. Then I trying on my iPad, Bluefire worked, Over drive did not so I completely removed Overdrive and reinstalled and re registered. all working now.
    Maybe some one at adobe did something. Maybe the install of the adobe DE client on a PC corrected what ever was out of wack with my account. Mayby the server that my account lives on did a scan disk and corrected a bad clustrer.
    What ever happend My account is actiove and working again. hope this helps others.

  • File Type Associations Do Not Stick System-Wide CS4

    When I set File Type Associations for PSD, Tiff, DNG and Jpeg fles in Bridge CS4 so that my files will open in PS CS3 (and insure that the same file associations apply in Bridge CS3), this works as it should from within CS4 and CS3, but it is impossible to introduce a system-wide change in Mac OS 10.5.5 via File-Info. It always reverts to CS4 for these file types, if I try to 'modify all'. The same thing happened when I upgraded from CS2 to CS3.

    If File Type Associations are set properly in the Bridge preferences, the default setting can be made to open files in PS CS3, with CS4 installed. This works from within CS3 and CS4. However, it sometimes happens that one is in the Finder, and the default remains PS CS4, however much one tries (via File-Get Info) to modify the default system-wide settings so that these files open in CS3. In any event, a bit invasive. Of course, if I could get comfortable with the Adjustment Layer Panels, all this would be unnecessary, but for the moment, there appear to be too many clicks, and it is going to take some time, so I don't want to burn bridges. Perhaps there is also some ambiguity in my mind as to what the pointing finger in the new Curves dialogue box, much like a tolling bell, is trying to tell me.
    But thanks, once again Anne, for your good-natured help.

  • Setting Bridge's file type associations in Preferences

    Hello,
    I am using Bridge with Windows 7 and I'm trying to change the file type association for a jpg from Photoshop to Office 2015. When I click on Browse, I find myself looking in Program Files/ Program Files (x86) but nothing seems to be a form of Office 2015 that will work. I see a folder for Office 2015 and inside is an .exe file, but that doesn't do it.
    Any suggestions?
    Thank you.

    cosmasd86465293 wrote:
    Hey,
    I apologize station_two but when you say "look for a specific application" what would the extension be?  The only thing I seem to see are .exe files and they don't seem to work…
    You are looking for an application, and ALL applications in a Windows environment have an .exe extension.  There's no other kind.
    cosmasd86465293 wrote:
    …More importantly, though, could you tell me what you mean by "I cannot even remotely imagine why you would want to do that, but it's your workflow, not mine."?
    Because to me it sounds nuts.  All MS Office applications are pretty bad at handling images and voracious resource hogs.
    cosmasd86465293 wrote:
    …I don't want to open up Photoshop every time I want to see a jpg. What would be a good "viewer" -- that's not as huge as Photoshop?…
    Google is your friend.  There are all kinds of free image viewers, even free image editors.  I can't help you there because I don't do windows. 
    Finally:
    Remember, you are not addressing Adobe here in the user forums.  You are requesting help from volunteers users just like you who give their time free of charge. No one has any obligation to answer your questions.

  • File Type Association fails when opening multiple files from Bridge to Premiere

    I'm running Vista 32 bit CS3 Bridge and Premiere.
    According to the Video workshop
    http://www.adobe.com/designcenter-archive/video_workshop/
    under Premiere > all 19 topics > Managing Media in Adobe Premiere Pro > at 02:46 it shows group selecting a bunch of quicktime files using Edit > Select all, then File > Open With ...the drop down shows Premiere.
    Mine only show Premiere if a single file is selected. If I multiple select, it only shows Quicktime Player 7.6.
    I've checked the file type association in preferences of Bridge to open these files in Premiere but it still only sees Premiere if a single file is selected.
    I've upgraded Bridge to 2.1.1.9 and set to run as Administrator but to no avail.
    Any ideas?

    Import has always worked fine. this is not the issue.
    I have now changed the file association in Vista, re-started Premiere and Bridge and then after having started just Premiere chose File > Browse and the selected all the .mov files and selected Open With. Hurrah! Premiere is now listed!
    However, If I continue the focus changes to Premiere but a warning appears "This file path does not exist on disk at this location".
    Nothing is imported. Unlike the video workshop mentioned above.
    If however, I chose Open and not Open with then the files are imported.
    Seems to be a bug with Open with with more than one file chosen. If a single file is chosen and Open With is applied then the focus changes to Premiere but no file is imported.
    I have seen the exact same problem in another discusion "Re: Bridge CS3: Not importing clips into Premiere CS3" (see the More Like This panel on the rightside of this window)

  • RemoteApp 2012 and File Type Associations

    Hi, All :),
    the scenario is like this -  2 x Server 2012: one as the RD Connection Broker and RD Web Access and one as the RD Session Host (clients are Windows 7). ALMOST everything works: there is one collection, several applications, all successfully thrown into
    the RemoteApp and Desktop Collections by GPO (Powershell script - http://gallery.technet.microsoft.com/ScriptCenter/313a95b3-a698-4bb0-9ed6-d89a47eacc72/).
    But one thing doesn't work - file type associations. Well, I want the client without, for example, Office installed to open the RemoteApp application (Excel) by clicking on the XLSX file. When looking at the application properties -> File Type Associations
    -> Current Associations column, I see the name of the collection, which includes Excel ... but it does not work. After updating the RemoteApp and Desktop Connections on the client, the RDP file with Excel noticed a new line:
    remoteapplicationfileextensions: s:. csv,. xls,. xlsx,. xltx
    How do I make it work? I know that in RemoteApp on Server 2008R2 you could export the MSI file that took care of File Type Associations, but what to do in case of Server 2012?

    Unfortunately, the feature to install file type associations for RemoteApp programs in your GPO-pushed RemoteApp and Desktop Collection is only supported on Windows 8 clients. Several improvement were made over the old MSI-based file type associations, and
    those improvements rely upon changes in the Windows 8 OS.
    Ultimately file type associations are controlled with registry keys, all of which are documented on MSDN. RemoteApp programs are pretty much the same as any other local program, except the file type is associated with mstsc.exe with some special parameters.
    Although the way we register those file type associations in Windows 8 won't work for you, the way the old MSIs used to register them would. You could in theory register the RemoteApp file type associations yourself in the same way that one of the old MSIs
    would have done (you could use some sort of GPO-pushed script on the clients).
    The easiest way to do this would be to track down one of those old MSIs, install it, and do a before-and-after view of the registry to see what changes it makes.
    Hope that helps,
    Travis Howe | RDS Blog: http://blogs.msdn.com/rds/default.aspx

  • KB2878233 corrupts PowerPoint file type associations (bis).

    Dear,
    I posted the question below a week ago in the Office forums on answers.microsoft.com, but did not receive any reaction. Allow me to repeat:
    Installing the KB2878233 security update corrupts the file type associations for PowerPoint files in the following environment: Windows XP SP3 ("fully" updated) / PowerPoint
    Viewer v. 14.0.7015.1000.
    PPT files get associated with MOC.EXE for opening them.  Uninstalling the update does not restore the original associations.  The problem can be alleviated by repairing the PPT Viewer installation manually.
    Question: can this High Priority security update please be re-released through Windows Update without the corruption effects?
    TIA.
    Kind Regards,
    Jan J.
    Brussels, Belgium

    Hi,
    We can try to change the file associate in Registry key:
    For all users on this computer, please change associate program of the .doc or file type you would like to under
    HKEY_LOCAL_MACHINE\Software\Classes.
    For current user account, please change associate program of the .doc or file type you would like to under HKEY_CURRENT_USER\Software\Classes. If there is no such extension, please create new keys for it.
    Hope these could be helpful.
    Kate Li
    TechNet Community Support

  • Configure File Type Associations

    I just moved from Windows XP Professional 32 bit to Windows 7 Professional 64 bit and installed several versions of JDeveloper (10.1.3.5, 11.1.1.5, 11.1.2.1) on the new machine.
    All of them are popping up the "Configure File Type Associations" window every time I start JDeveloper, no matter what my answer to the prompt. After I press OK or Cancel, all my versions of JDeveloper are working fine. But the pop up is getting annoying. On my Windows XP machine, this only popped up the first time I ran JDeveloper, and never again. Anybody know how I can stop it?

    Not quite, csoto, but you inspired me to try something that seems to have done the trick. You were right, it is a Windows 7 issue.
    I started one of my copies of JDeveloper with "Run as Administrator", pressed OK on the prompt. Then I closed JDeveloper and started it again as myself. Now none of my versions of JDeveloper are showing the prompt. Annoyance gone.
    What I think is happening is that the "Configure File Type Associations" dialog needs to change something in the Windows registry. Windows 7 security requires you to have administrative rights to do this, so when you run JDeveloper without those rights, it can't make the change. But (and I think this should be considered a bug) it doesn't show an error to tell you that it didn't have the right to do it. It just closes the dialog window. The next time JDeveloper runs, it notices that you haven't set file associations yet, so it shows the dialog again. Running JDeveloper - any version - as Administrator lets it change the file associations (which apparently applies to all versions) so that it never displays the prompt again.

Maybe you are looking for

  • USB slot of Satellite L30 shuts down Windows when in use

    I recently bought a Satellite L30 (psl33E) for my wife, and all seemed to go well. That was until she needed more usb ports for her stuff, and used the port on the left hand side of the machine (as opposed to the one always used, at the back.) As soo

  • Aaaargh!  Why does my website not display on my iPhone?

    Of course, the first thing I tried with my new iPhone is to view my own website. Safari on the iPhone thinks about it for a few seconds, then renders a completely blank white screen. Safari on Windows, as well as Firefox, IE, Netscape et al all manag

  • New computer MSI NF750-G55

    Hello All, Just received a new shipment and the computer is not passing POST, Details as follows... (oops) AMD Phenom II x6 1090T MSI NF750-G55 BIOS default no software installed yet... GSkill 4x4GB DDR3 1333 CoolMax 500w +3.3 30A +12v1 18A +12v2 16A

  • Dynamic Textboxes in JSP using struts

    Hi all I'm using JSP and Struts framework. I have two buttons Add row and delete row.(not submit buttons) on click i need to either generate or delete a row of textboxes. I able to do the same using javascript but the tag in that case is <input..>(no

  • How to delete Software Component in Repository

    Hi forum, I have a software component in repository, i have deleted all nameSpaces inside it, how can i delete the Software component from the Repository, thanks