File Associations & Default Application

Hi All,
First time post so please be gentle.
I have a file (extension qif) which at the moment opens with a windows program via Codeweavers Crossover. I now need to change this to open with a little Applescript application I have written myself. So off I toddle to Get Info, Open With, other, select my QIF2OFX application, click change all...and the application flips back to the previous setting. Now I have tried this on my MacBookPro which doesn't even have Codeweavers or the windows app installed (and so no default program) and it still won't allow me to change the default program for all files. I can change it for the instance of that individual file (for as long as it exists) but as for all files, no joy.
Any ideas anybody?
Best regards,
Chris

Hi,
All resolved thank you very much. Quite chuffed with the outcome as it is my first ever Applescriot...marks out of ten anyone...places it could be improved or made more efficient? Code follows: -
on open TheDroppedFile
-- save ApplesScripts delimiters current state and setup variables
set Old_Delims to AppleScript's text item delimiters
set Save_Date to "00/00/00"
--Extracting the account number from the source file name NOTE This is dependant on the naming convention used by your bank
set QIF_File to TheDroppedFile as text
set Acct_Num to text ((offset of "_" in QIF_File) + 7) thru ((offset of "_" in QIF_File) + 14) of QIF_File
-- Set the file to write to
set OFX_File to (open for access file (((path to documents folder) as string) & Acct_Num & ".ofx") with write permission)
-- write header concat file name with header record
set OFX_Header to "OFXHEADER:100
DATA:OFXSGML
VERSION:102
SECURITY:NONE
ENCODING:USASCII
CHARSET:1252
COMPRESSION:NONE
OLDFILEUID:NONE
NEWFILEUID:NONE
<OFX>
<SIGNONMSGSRSV1>
<SONRS>
<STATUS>
<CODE>0
<SEVERITY>INFO
</STATUS>
<DTSERVER>20991231000000[-5:EST]
<LANGUAGE>ENG
</SONRS>
</SIGNONMSGSRSV1>
<BANKMSGSRSV1>
<STMTTRNRS>
<TRNUID>1
<STATUS>
<CODE>0
<SEVERITY>INFO
</STATUS>
<STMTRS>
<CURDEF>GBP
<BANKACCTFROM>
<BANKID>999999
<ACCTID>" & Acct_Num & "
<ACCTTYPE>CHECKING
</BANKACCTFROM>
<BANKTRANLIST>
<DTSTART>20000101000000[-5:EST]
<DTEND>20991231000000[-5:EST]
" as string
write (OFX_Header) to OFX_File starting at eof
-- Reading your file in to memory
set QIF_Records to paragraphs of (read file QIF_File)
-- Read through records and write out correct OFX standard
repeat with i in QIF_Records
-- Check for EOF NOTE: This is dependent on how your bank ends the file
if (offset of "D" in i) = 1 and length of i = 1 then
exit repeat
end if
-- Create DTPOSTED records
if (offset of "D" in i) = 1 and length of i > 1 then
set OFX_Data1 to "<DTPOSTED>" & (text 8 thru 11 of i) & (text 5 thru 6 of i) & (text 2 thru 3 of i) & "000000[-5:EST]"
end if
-- Create FTID record from DTPOSTED date and increment counter by 1 padded with zeros
if (offset of "D" in i) = 1 then
if Save_Date = (text 2 thru 11 of i) then
set FT_ID to FT_ID + 1
else
set Save_Date to (text 2 thru 11 of i)
set FT_ID to 1
end if
set FITID_Data to "<FITID>+" & (text 8 thru 11 of i) & (text 5 thru 6 of i) & (text 2 thru 3 of i) & addleading_zeros(FTID, 5)
end if
-- Set TRNTYPE to PAYMENT or OTHER depending upon sign
if (offset of "T" in i) = 1 then
if (offset of "-" in i) = 2 then
set OFX_Data1 to "<STMTTRN>" & return & "<TRNTYPE>PAYMENT" & return & OFX_Data1
else
set OFX_Data1 to "<STMTTRN>" & return & "<TRNTYPE>OTHER" & return & OFX_Data1
end if
set OFX_Data2 to "<TRNAMT>" & (text 2 thru (length of i) of i)
end if
-- Check length of text transaction description text and strip out & if present
if (offset of "P" in i) = 1 then
if i contains "&" then
set AppleScript's text item delimiters to {"&"}
set Delimited_List to every text item of i
set AppleScript's text item delimiters to {"&amp:"}
set i to Delimited_List as string
set AppleScript's text item delimiters to Old_Delims
end if
if length of i < 33 then
set TranDescLength to length of i
else
set TranDescLength to 32
end if
set OFX_Data3 to "<NAME>" & (text 2 thru TranDescLength of i) & return & "</STMTTRN>"
set OFX_Data to OFX_Data1 & return & OFX_Data2 & return & FITID_Data & return & OFX_Data3 & return
write (OFX_Data) to OFX_File
end if
end repeat
set OFX_Footer to "</BANKTRANLIST>
<LEDGERBAL>
<BALAMT>00.00
<DTASOF>20991231000000[-5:EST]
</LEDGERBAL>
</STMTRS>
</STMTTRNRS>
</BANKMSGSRSV1>
</OFX>" as string
write (OFX_Footer) to OFX_File starting at eof
set AppleScript's text item delimiters to Old_Delims
do shell script "rm " & quoted form of the POSIX path of QIF_File
tell application "Finder"
--activate
open file (((path to documents folder) as string) & Acct_Num & ".ofx")
delete file (((path to documents folder) as string) & Acct_Num & ".ofx")
end tell
end open
on addleading_zeros(ThisNumber, MaxLeadingZeros)
set the Threshold_Number to (10 ^ MaxLeadingZeros) as integer
if This_Number is less than the Threshold_Number then
set the Leading_Zeros to ""
set the Digit_Count to the length of ((This_Number div 1) as string)
set the Character_Count to (MaxLeadingZeros + 1) - Digit_Count
repeat Character_Count times
set the Leading_Zeros to (the Leading_Zeros & "0") as string
end repeat
return (Leading_Zeros & (This_Number as text)) as string
else
return This_Number as text
end if
end addleadingzeros
Best regards,
Chris

Similar Messages

  • Open file in default application with unsigned webstart

    Hi,
    Is it possible to open a document in the user's default registered application (on the OS) from an unsigned Java webstart application?
    I don't mind if the user gets a warning, but the only thing I found was the ability to save a file (also with a user warning), but I'd like to automatically open the document generated by the webstart application in the default application on the OS registered for the file association. In this case either a *.xlsx (Excel/OpenOffice) or *.xml file
    Any ideas?

    You can use BasicService.showDocument() to do this, however you will get a blank windows opened in the default browser.

  • Changing file extension default application

    Hello, I periodically change my .avi and .mpg movies default "open with" application to VLC, but although the association change in first place, in a few days the default application mysteriously turn back to QuickTime.
    Is this a bug or an Apple QuickTime appropriative policy? Anyway, is there any way to change to VLC permanently?
    Thanks in advance
    iBook   Mac OS X (10.4.4)  

    Open one of your .avi or .mpg file's "Get Info" window. Pick a new "Open With" application and click the "Change All" button. Confirm your changes.
    From this point on (until you change it again) any time you double-click to open any of these files your chosen app will be used to play the file.
    You can temporarily override these settings by Control-clicking on a icon and choosing a different app from the pull down menu.

  • XDG standards updated re MIME-type associations + default applications

    In April the XDG standards regarding Association between MIME types and applications was updated, and the changes are quite significant. For example, to specify default applications you should now list them in the [Default Applications] section of a mimeapps.list; placing them in the [Added Associations] section is no longer sufficient. Also, mimeapps.list files may now also be located in the $HOME/config ($XDG_CONFIG_HOME) and /etc/xdg ($XDG_CONFIG_DIRS) directories. The file defaults.list is confirmed as deprecated, as well as a mimeapps.list file in $HOME/.local/share/applications ($XDG_DATA_HOME/applications).
    Just to muddy the waters further, there are $desktop-mimeapps.list ($desktop is the desktop environment: kde, gnome, etc) which may accompany mimeapps.list files on all the paths!
    I'm implementing these new standards in my ayr launcher, but no doubt there will be many applications which will lag behind these new standards. The biggest immediate problem will probably be with file managers which often write the default associations they create to the [Added Associations] section in $HOME/.local/share/applications/mimeapps.list.
    This will not be much fun, but if it's standardising better, then so be it!
    Edit: There is a worked example, but there seems to be a mistake in this - $XDG_CONFIG_DIRS  should come before $XDG_DATA_HOME according to the standard.
    Also, the Default applications page on the Wiki is going to need a substantial revamp.
    Edit2: Overview of main changes
    Last edited by ninian (2014-06-18 23:27:39)

    Have now updated the Wiki section on:
    Using MIME types and desktop entries
    to reflect the new changes.

  • Bridge CC file association default not working

    Greetings.
    I've recently upgraded to CC from CS6. Uninstalled and removed CS6 files properly (why have them on C:/ taking up space?).
    Ps, Ai, Id, all working properly (thank my lucky stars...), which are the three apps I use daily,... and Br, however, Bridge CC is acting up it seems. Screenshots for your pictorial review.
    Double-clicking on a JPG, PNG, TIFF, GIF image file within Bridge CC will result in,
    Right-clicking, selecting to "Open With", and selecting "Window Photo Viewer 6.1 (default)" will produce the same result.
    With Ps, Ai, and Id, double-clicking a '.psd', '.ai', and '.indd' will open in their respective app. However, when selecting to "Open With", and selecting either 'Photoshop' or 'Illustrator' will result in an errors (even tho' each app shows as default):
    I've checked the default settings for the respective file types involved, in Bridge CC preferences,
    —PNG, GIF, and TIF files are also associated to 'Windows Photo Viewer 6.1' as show below for JPG—.
    and Windows 7,
    It would appear that the file types are properly associated yet Bridge CC does not read/apply these settings.
    It proved useless to uninstalled/re-installed Bridge CC. Windows Photo Viewer works perfectly fine as default in Windows 7 browser.
    I've read that a solution could be to uninstall all CC apps, run some kind of cleaning process and re-install apps. I find solutions rather odd;  plus, it takes h-o-u-r-s to download/install each app.
    I'm stumped, not to mention quite annoyed. Any thoughts?
    Thank you!

    Thank you for your reply Curt Y, but I didn't foul anything; I followed standard procedures which I have umpteen times—prompts from the install/uninstall app which usually take place all on their own.
    I read post 20, to which you referred me, however, after reading it, it appears that you may have misunderstood my situation; I'll try again, for everyone's benefit as well.
    In Bridge CC:
    Ps files (.psd) defaults to Ps CC when double-clicked and open in the app—no problem.
    Id and Ai files also open to their respective default app—no problem either.
    HOWEVER, and most interestingly, if I should "Open With" and select either 'Photoshop' or 'Illustrator", to open a '.psd' or'.ai' file respectively, I would get the errors,
    While this is an issue I can work around it is not my main concern. My MAIN problem is opening JPG, PNG, GIF, BMP, and TIF files (thus far) in the Windows Photo Viewer (WPV), whose operation apparently is associated to the 'PhotoViewer.dll' file inside the Windows Photo Viewer folder.
    Outside of Bridge CC the WPV works perfectly.
    It is entirely absurd that one should have to launch an app (Ps, for example) every time one wants to simply view an image in a larger scale/window, such as in WPV.
    It is also possible that one would want to open any of the file types listed above in Ps, for example, but as of now the "Open With" as I've described is not working properly—this I could live with.
    In the end, having made the changes to the Ps string as described in "post 20", nothing has changed from my initial post.
    And where would one make the appropriate string corrections for Ai?
    I STILL cannot open JPG,PNG,TIF, GIF, and BMP files in Windows Photo Viewer from Bridge CC.
    Thanks again.

  • Opening file in default application

    I know how to upload the file from client to DB, how to download file from DB to client using WebUtil in Forms 9i.
    But I don't know how to achiewe the following funcionality:
    When I click the button in form the file is downloadad automaticly from DB to client and default application (Win Word for .DOC, AcrobatReader for .DBF...) is opened with opened file inside.
    Where can I find some useful example ?
    Thank and regards
    Sašo Celarc

    Hi,
    after downloaded the file to the client, you can use the client_host command to start the application and open the file.
    Rainer

  • Open file with default application

    Hello, I need open a file from AIR develop with a windows
    default application, i cant do. Thank

    That is a request that has had some heated discussions in the
    past. I think it absolutely needs to be a feature but as far as I
    know there is no supported way to do it.

  • Won't open files with default application

    When I try to open a file it opens preview instead of the default application and does not actually open the file! I have tried changing the default application but it does not help.  How can I fix this?

    Hello,
    Try dragging & dropping the file on the Application's icon that you want to open it with for a test.
    Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions...
    Reset Launch Services...
    http://www.thexlab.com/faqs/resetlaunchservices.html#Anchor-Reset-47857
    Reboot.

  • IPAD restores applications but not data or files associated with applications

    1) Today Itunes prompted me to update the OS on the IPAD.
    2) It warned me to back up IPAD before I did.  I did
    3) I updated software.
    4) It returned with an error saying it could not install software and I must restore to facotry settings
    5) I resotored to factory settings
    6) After that I attempted to restore contents of my IPAD from Itunes on my Windows 7 machine. 
    7) It restored only music but no applications and no other information
    8) I spent all day on the phone with Apple Support who managed to get the applications restored by going through one by one and syncing.
    9) It took a few hours
    10) After I finished I noticed that files/documents associated with various applications like Kindle, Goodreader, Penultimate Notes were missing on the IPAD.
    11) I have made a few phone calls to Apple and thy claim the following: "Apple is not responsible for restoring files or data associated with any applications, only the application itself.  It is your responsibility to contact the application developer to get your files restored."  This sounds patently absurd to me. I spent half an hour explaining the absurdity of this claim to the Apple representatives but they are firm and non-wavering in this opinion.  One even claimed that restoring does not restore applications which of course is not correct.
    12) I gave them the example of MS Word on MacBook Pro. If I save/back up on another machine and then restore back to the original machine I would expect to be able to see the Word files I had created and saved.  That in particular the failure to view them would not be Microsoft's responsibility but Apple's.  They disagreed saying it would be between me and Microsoft and the Apple devices had nothign to do with saving or successful restoring.
    13) So I have lost all e-books purchased on Kindle, plus all documents saved on Goodreader application, notebooks on Penultimate applications, and my children’s drawings on their drawing applications.  Apple Support say I should contact each application vendor to try and recover the missing data.  They refuse to tell me how to get it from ITUNES backup stored on my Windows 7 machine as they say it will not be there. 
    They have asked me to write to
    Apple Customer Support,
    Holly Hill,
    Cork,
    Ireland
    quoting case number 319718819.

    Did you try restoring from a backup of the iPad? If you have a backup with all of your app data and files, that should restore all of that content to the device.
    No - restoring does not restore applications. You have to either sync the applications back from iTunes on your computer, or you can download them again, BUT ... All of your data, files and device settings are stored in your backup. Do you have a backup in iTunes .... Edit>Preferences>Devices - that should show you all of your iDevice backups.

  • Weird: changing file or link associated defaults then changes ALL defaults to the same program

    Y'know... I thought I'd possibly 'seen it all' but today someone brought me a laptop with something I don't believe I've ever seen...
    every link and file association is defaulted to the wrong program, and it is not possible to restore the association to the proper program for the respective file types.  And changing one
    association changes ALL other associations for every other link to a file or shortcut.
    For instance: 'right-clicking' on what I KNOW to be an Adobe Acrobat file and selecting 'open with...' from the context menu, Adobe Acrobat is not shown (even after un-installing and re-installing Acrobat).  So I 'browse' to the Program files (x86)
    folder and select Adobe Acrobat (AcroRd32.exe) from within the Adobe Acrobat program folder to 're-associate' .pdf files with Acrobat..  BUT - this then changes ALL associations for everything  (including shortcuts on the desktop) to Adobe Acrobat.
      And the same can be said if I attempt to change the file association for a "docx" file extension (MS Word document).  Change the 'association' for one single 'docx' file and this results in ALL files or shortcuts on the desktop to also
    change to MS Word.
    So - what the ...?  Anyone have a clue as to what he's done on this "brand new" installation of Windows Home Premium (64-bit)?  I only just (this past week) talked him into 'abandoning' XP in favor of a license of Windows 7 Home Premium,
    and afterwards everything was 100% and fully operational - but now one week later and he's done this...
    So...  A registry issue..? Something to do with 'file association' defaults? (and my suspicion is some sort of 'dll' problem with this performance and the issue of not being able to configure 'program defaults' for any given file type without also affecting
    all other associations...).
    So,short of backing up all his data (out of precaution) and trying to do a 're-installation' of Windows, my most immediate response with this would be to just 'blow it away' and re-install Windows again ... and then copy all of his data back to the corresponding
    locations.  But I would like to know what he's possibly done (for future reference) and maybe learn of some possibility that this can be 'fixed' and the correct 'associations' re-established without having to re-install Windows one more time...
    GAA! THIS is why I shave my head...

    Hi,
    According to the description, it seems that the issue is caused by some corrupted registry entry\keys, a corrupted registry key can be caused by an malware\virus, or an bad-coded program or just some incorrect operation by the user. it's hard to determin
    which is the culprit, but we can try to repair it as we could.
    Please refer to the following link and see if it helps, (backup your registry first before editing the registry)
    http://support.microsoft.com/kb/950505
    we can also create a new user profile instead and copy files and setting from the old profile
    http://windows.microsoft.com/en-in/windows/fix-corrupted-user-profile#1TC=windows-7
    Yolanda Zhu
    TechNet Community Support

  • Mac - navigateToURL opens default application for .html files instead of browser

    On Mac I have Adobe AIR version <string>3.1.0.4880</string> and I have selected TextMate for .html file as default application. With this configuration when I call navigateToURL in my app to open browser, it opens TextMate instead of default browser.
    Following is the simple code to open URL:
    var urlRequest:URLRequest = new URLRequest(url);
    navigateToURL(urlRequest, "_blank");
    Is this known issue? Any workaround for this?
    Thanks,

    Since you've remapped what your default response to .html files are, you can't use navigateToURL() or openWithDefaultApplication().
    So it looks like you'll need to use the NativeProcess class:
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/desktop/NativePro cess.html

  • PDF opens in browser and not default application

    When i click on a pdf file in a document library, it opens in the same web page instead of Adobe reader. I've set the feature of open documents in default application but in vain.
    Any thoughts?
    Thanks a lot in advance

    Hi,
    From your description, I know you want to open SharePoint 2013 PDF files with default application.
    You could re-install your Adobe Reader, and then test this issue. Also, you can have test in another computer with Adobe Reader.
    If this issue is still exist, please refer to this article:
    https://social.technet.microsoft.com/Forums/lync/en-US/b6df4273-4769-4179-a831-ae5504b28f35/opening-pdfs-in-acrobat-9-pro-from-sharepoint-2013.
    Best Regards
    Vincent Han
    TechNet Community Support

  • File associations in Windows 8.1 for applications on a network location

    Hi,
    From Windows 7 to Windows 8 it has been done alot of changes regarding file file assocations. It seem that the main reason was security and was "patched" by having Windows read the hash for the applications instead of where the application was
    located.
    but there seem to be some major hicups and there is limited info on the web covering these issues.
    First issue: when running:  Dism /Online /Export-DefaultAppAssociations:\\Server\Share\AppAssoc.xml and then creating a GPO configuration pointing to
    thi XML file.  With this feature only common file extensions is supported and when users are changing to another computer, these settings is not possible to syncronize using roaming profiles.
    Second issue: In the appassoc.xml file applications must be either appid(metro app) or common application on local harddrive to be registered and not a .EXE
    file on a network location.
    It seems a little strange if this is the case and if there is no other options for administratos to set file associations in more flexible ways. Does anyone have some more info on
    this topic other than these link:
    https://technet.microsoft.com/en-us/library/hh825038.aspx?f=255&MSPPError=-2147217396
    http://blogs.technet.com/b/mrmlcgn/archive/2013/02/26/windows-8-associate-a-file-type-or-protocol-with-a-specific-app-using-a-gpo-e-g-default-mail-client-for-mailto-protocol.aspx
    https://keithga.wordpress.com/2013/11/13/file-associations-in-windows-8/

    Hi Primeid,
    You could use Group policy for file associations or you could deploy the xml file during image deployment. However as you mentioned that the file associations only applies to common application on local hard drive or metro app.
    http://blogs.technet.com/b/mniehaus/archive/2014/01/10/configuring-file-associations-in-windows-8-1.aspx
    http://blogs.technet.com/b/mrmlcgn/archive/2013/02/26/windows-8-associate-a-file-type-or-protocol-with-a-specific-app-using-a-gpo-e-g-default-mail-client-for-mailto-protocol.aspx
    We understand your confusion about this, but we hope you understand that using network location for file association deployment is highly insecure and it is out of our recommendation since the content in that network location could be changed without any
    notification or permissions constraint.
    Thanks for your understanding.
    Regards
    D. Wu
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How to change default application associated with some mime types?

    When we install some new program, for example GIMP, I assume the newly installed program is added to some mime type database, and the /usr/share/applications/mimeinfo.cache file is automatically generated.
    Using my example, GIMP will be the default application for all its registered mime types, even application/pdf. I surely don't want this to happen, and I surely don't want to create all kinds of files that GIMP registered and right click on them and choose Properties and then change it in the Open with... tab. I want to systematically de-prioritize GIMP so that it will not override my previously assigned default applications.
    I wrote a script to modify the mimeinfo.cache file, and it seems to work great. However, after a reboot or upgrade or something I didn't notice, the default application of application/pdf is reconfigured to GIMP. I think the cache suffix of the file indicates that it is just a cache and may be changed by system unnoticed. So I am looking for a new way to change the default applications.
    As far as I know or guess from the phenomena, there should be some system utility that generates the mimeinfo.cache file, it seems to parse all the *.desktop files under /usr/share/applications and register them to certain mime types accordingly. The sequence of the *.desktop files get parsed seems to be related to the time the application is installed, and the newly installed applications seems to be parsed later and inserted in the front of the application list or be parsed earlier and appended to the application list. Is there some place I can change the sequence of the parsing? Or is there some place I can change the behavior of the system utility?
    I know that I can populate my ~/.local/share/applications/mimeapps.list to override the system wide defaults, however, I want a more elegant way to this.
    Any opinion on this is welcomed.
    Last edited by AugustePop (2010-05-14 05:47:15)

    Ah, right. Don't know what DE you are on, but in Gnome:  right-click a (e.g. pdf) file -> Preferences -> Open with.
    All Applications listed there will be available from the right click menu, the marked one will be used on double-click.
    errgrh...
    I surely don't want to create all kinds of files that GIMP registered and right click on them and choose Properties and then change it in the Open with... tab. I want to systematically de-prioritize GIMP so that it will not override my previously assigned default applications.
    I guess what I am trying to propose is this: "de-prioritize" GIMP in its .dekstop file for the types you dont want it to be associated with, and manually add it back in through "Open With" for the file types you want it to be an option. Not sure if this is solving anything for you though
    Last edited by hokasch (2010-05-14 10:28:57)

  • Enabling the ability to uncheck QT file associations in Default Programs

    I have Windows 7 here, and it comes with this nice little utility that lets you set the default programs for various file types (Control Panel\All Control Panel Items\Default Programs\Set Default Programs\Set Program Associations). When I select Quicktime, there are various boxes that I can check, but there are also various boxes that are pre-checked. I would like to uncheck them, but they are greyed out. How can I uncheck them?
    I hope Apple engineers understand the absurdity of having a specific tool for setting file type associations, and them making that tool unable to set file type associations. It sort of defeats the purpose doesn't it?
    For the record, I am administrator and UAC is disabled.

    File associations are a mess right now. Many programs (Opera included) handle them their own way. There's a project underway to handle associations in a standard way (see MIME actions, shared MIME info, desktop entries, all at freedesktop.org), but not all software uses it; KDE is a notable holdout (3 at least, not sure about 4).
    Note that that first spec link, MIME actions, is currently "in the requirements-gathering / early-planning stages." That means there is no spec for that. As I said, a mess.
    Most likely, Opera and Thunderbird detected you were running KDE and special-cased their association-finder to ask KDE instead. Now that you aren't, they're falling back to their normal behavior: use the first .desktop file to claim the MIME type. As I recall, both applications offer ways to specify associations in their preferences; you might just want to stick to that for now. Or use a desktop environment.
    The kernel-level MIME support is designed to allow execution of strange files using interpreters. For example, you could directly execute Windows applications (as in "./notepad.exe") by setting the kernel to "interpret" application/exe files using wine. No applications use it for opening files.

Maybe you are looking for

  • Changing header and footer in massive projects

    Hi all, I am working with RH8 but i have to work on the project which is created in RH5.0.2.It contain total of 249 project and one project in which all the projects are merged.Worst part is that in the project, master page is only used in the parent

  • How do download Nokia Maps files for Nokia C6-00 o...

    Recently I found an update files to my Nokia C6-00 Nokia Maps file, I stucked at 81MB of 99MB and prompted the download is timeout. I have fail download for 3 times. Is there any where I can download the file manually for Malaysia map ? Thank you.

  • Import from older ibook to imac

    I had a ibook and saved my address book to a usb drive and when I got my new iMac I am unable to import the addresses. I could not use firewire because the computers did not overlap. They are for work and I switched jobs. Is there anyway to get my ol

  • WHEN uploading pics MAC FREEZES

    whenever I try to upload pics on to a site like kijji my mac takes forever to load and only when I cancel does the picture window come up and then it automatically freezes.

  • "unable to list firewire devices?"  what's up?

    I recently bought an external hard drive and case. I have had on again/off again issues with it being recognized by my system when I turn it on. It is connected by firewire. My usb external drive never has this issue. When i click "about this mac" an