Opening Different .bin files - Beware if Toast is around (& Similar others)

Xpost because many people have posted about the same thing: downloaded .BIN files not opening/opening incorrectly etc. [I'll offer this up as a User TIP because the problem isn't going away for a while...)
The advice usually given is 100% correct -use Stuffit - for THAT type of BIN file (the original posters had trouble with downloads of WinMediaPlayer, AIM, Admium, etc. BINs). But there are many other types.
Here's a more complete explanation - because I'm seeing it as a widespread problem (and I really don't know why so many sites seem to be switching to some variant of BIN instead of .SIT, ZIP, TAR, GZ, DMG, or one of the many other formats and extensions which don't have the 'confusion' problem I'm outlining...).
The WinMediaPlayer BIN is a compressed Binary (I looked) and Stuffit or Stuffit expander (and a number of others) will open it BUT beware: If you have Toast or other ISO/CD/DVD reader/mounter/burner Apps installed on your Mac, THEY will 'grab' the right to open BIN files which they see as ISO Disk Images (which in many cases - like this one, they aren't) this will result in Toast asking you dumb questions, you hitting 'continue' and Toast 'mounting' the 'image' as if it were an ISO image and you'll 'see' what is apparently an Audio CD (Note to Disk App developers - how about having a peek at the headers, and telling the user, please ?).
Very confusing.
The opposite applies, if course, if you download a 'real' ISO BIN file (which usually comes with a matching .CUE file) you want to make sure that it's opened by a program which will treat it correctly as an ISO Disk image - NOT Stuffit.
With any file/App/whatever, you can always CTRL-Click (or Right Click on a multibutton moose [=large Mouse ] ) and choose 'open with', click OFF 'show recommended applications' so you may choose ANY app - and simply choose an App you know will open ISO BINs - like Toast.
If it's NOT an ISO BIN - like AIM, WinMediaPlayer,admium etc.. but is, in fact an archive, use the same approach but choose 'stuffit expander' or another suitable 'UnStuffing' App.
Simple, eh ?
grin.
Please write if you need more.
Best wishes,
Wayne T

Xpost because many people have posted about the same thing: downloaded .BIN files not opening/opening incorrectly etc. [I'll offer this up as a User TIP because the problem isn't going away for a while...)
The advice usually given is 100% correct -use Stuffit - for THAT type of BIN file (the original posters had trouble with downloads of WinMediaPlayer, AIM, Admium, etc. BINs). But there are many other types.
Here's a more complete explanation - because I'm seeing it as a widespread problem (and I really don't know why so many sites seem to be switching to some variant of BIN instead of .SIT, ZIP, TAR, GZ, DMG, or one of the many other formats and extensions which don't have the 'confusion' problem I'm outlining...).
The WinMediaPlayer BIN is a compressed Binary (I looked) and Stuffit or Stuffit expander (and a number of others) will open it BUT beware: If you have Toast or other ISO/CD/DVD reader/mounter/burner Apps installed on your Mac, THEY will 'grab' the right to open BIN files which they see as ISO Disk Images (which in many cases - like this one, they aren't) this will result in Toast asking you dumb questions, you hitting 'continue' and Toast 'mounting' the 'image' as if it were an ISO image and you'll 'see' what is apparently an Audio CD (Note to Disk App developers - how about having a peek at the headers, and telling the user, please ?).
Very confusing.
The opposite applies, if course, if you download a 'real' ISO BIN file (which usually comes with a matching .CUE file) you want to make sure that it's opened by a program which will treat it correctly as an ISO Disk image - NOT Stuffit.
With any file/App/whatever, you can always CTRL-Click (or Right Click on a multibutton moose [=large Mouse ] ) and choose 'open with', click OFF 'show recommended applications' so you may choose ANY app - and simply choose an App you know will open ISO BINs - like Toast.
If it's NOT an ISO BIN - like AIM, WinMediaPlayer,admium etc.. but is, in fact an archive, use the same approach but choose 'stuffit expander' or another suitable 'UnStuffing' App.
Simple, eh ?
grin.
Please write if you need more.
Best wishes,
Wayne T

Similar Messages

  • Cant open the bin- file ??

    I dont know why but recently my premiere project wont open whilst others will. i have a hunch it may be because my project bin in the project has over 1000 clips in it. i have 4gbs of memory on my imac. has anyone else ever had this message whilst it loads up then crashes-
    DeNoiser2 - could not open the bin- file
    i know i posted this 2 days ago but if anyone has a fix i so desperately need it.

    The .bin file is an image file of the router's firmware.  It does not need to be "opened" or "unzipped".  The .bin file is loaded into the router "as is".

  • Quicktime not opening a .bin file

    i always get the error movie could not be opened but nothing else. am i missing a particular codec to open up these .bin movie types.
    thanks

    I hope I found the answer you're looking for.
    http://www.nickoneill.com/article/25/how-to-mount-bin-files-on-mac-osx
    Essentially it may mount using Roxio's Toast.
    If not, try to download the latest Stuffit Expander (as of this writing) http://www.versiontracker.com/dyn/moreinfo/macosx/182&page=4
    Please report back.

  • How to open a bin file

    I have os 10.7 and 10.6.8 and have several atari rom files that are compressed
    as bin files and i can't open them w/ stuffit expander or unachriever
    at this point i can't find anything to open them please help
    thanks Mike

    If you have no luck with decompression tools available within Lion or Snow Leopard, you might want to consider that either those Atari ROMS are simply not decompressible with or without existing tools, or that perhaps they were originally compressed using something else.
    After I read your post, I thought maybe there is a functional Atari emulator for OS X that would have tools to deal with those Atari ROMS. That lead me to the Hatari emulator sources. Among the pre-requsites for building Hatari, was also obtaining and building Zlib from Github sources. Apparently, Zlib is its own compression/decompression animal that appears to used for .png data compression in libpng. It apparently will also deflate compressed data within PDF files.
    It is a stretch to presume that Atari ROMS may be compressed with Zlib, but since nothing else may have worked, it might be possible that the Zlib library could be the can opener you need. It may be worth reading further.
    On the Zlib site, they have a link to a heavily documented stream I/O source file called zpipe.c. There is a downloadable copy of it. You do not need to download the Zlib library code or anything else. Just get this zpipe.c file. I have Mountain Lion and the zlib include file and library are already included in the OS, as they are in Lion. I have not found any Zlib command line tools in either OS X release though.
    I have Xcode 4.5.2 and command-line tools installed in ML. You won't need Xcode itself, just the command-line GNU C++ compiler. You need to open zpipe.c in the editor of your choice and change the following line only:
    From                               To
    #include "zlib.h"                #include <zlib.h>
    Now, save the file.
    Compile it in the Terminal (on Mountain Lion 10.8.2, the library file name is libz.1.2.5.dylib)
    g++ -O2 -o zpipe zpipe.c /usr/lib/libz.1.1.3.dylib
    I got a clean compile on Mountain Lion with the 1.2.5 version.
    I haven't been amazed in awhile, so if this works, it will be worth it.
    You would use zpipe in the following manner from the terminal to possibly deflate [ -d ] a COPY of an Atari ROM file.
    zpipe [ -d ] < Atari ROM file > Dest File

  • Opening a .Bin file on mac?

    Hi,
    I have got a .bin file on my mac that is 255mb big, and should contain a load of music samples in it, but when i double click it, it says' archiving, like its unzipping it or something, but nothing happens, it just creates a slightly smaller file with the extension .bin.cpgz
    Anyone know how i can get at the contents of this .bin file please?
    Thank you for any help and suggestions.
    Tom

    Try Stuffit Expander->
    http://download.cnet.com/StuffIt-Expander-2010/3000-2250_4-10653042.html

  • How can I open different binary files from BLOB column ?

    If we store some type of binary file (XLS, DOC, PDF, EML and so on, not only pictures) in BLOB column how can I show the different contents? We use designer and forms 9i with PL/SQL.
    How can I copy the files from BLOB to file in a directory or how can I pass BLOB's content to the proper application directly to open it?

    The mime type is just a string as explained above (e.g. application/pdf...). There are lot of samples here and on metalink.
    E.g. add a column mime_type varchar(30) to your blob table. Create a procedure similar to the following:
    PROCEDURE getblob
    (P_FILE IN VARCHAR2
    IS
    vblob blob;
    vmime_type myblobs.mime_type%type;
    length number;
    begin
         select document, mime_type into vblob,vmime_type from myblobs where docname = p_file;
         length := dbms_lob.getlength(vblob);
         if length = 0 or vblob is null then
         htp.p('Document not available yet.');
         else
         owa_util.mime_header(vmime_type);
         htp.p('Content-Length: ' || dbms_lob.getlength(vblob));
         owa_util.http_header_close;
         wpg_docload.download_file(vblob);                
         end if;
    exception
         when others then
         htp.p(sqlerrm);
    END;
    Create a DAD on your application server (refer to documentation on how to create a DAD).
    Display the blob from forms (e.g. on a when-button-pressed trigger):
    web.show_document('http://myserver:port/DAD/getblob?p_file=myfilename','_blank');
    For storing blobs in a directory on your db server take a look at the dbms_lob package.
    For storing blobs in a directory on your app server take a look at WebUtil available on OTN.
    HTH
    Gerald Krieger

  • Open a BIN file (AL11) in ECC6 Unicode generated in 46C

    Dears,
    I have the following critical Issue.
    We have upgraded the system from 4.6C to ECC 6 with Unicode and we have some PDF files stored in AL11 with extension '.PDF'.
    The report that we have in 4.6C, read these files and archive it as PDF using:
    - OPEN DATASET gl_upfile FOR INPUT IN LEGACY TEXT MODE.
    In ECC 6 this statement is not valid and we have changed it in:
    - OPEN DATASET gl_upfile FOR INPUT IN LEGACY BINARY MODE. 
    Unfortunateley this works for files created in new release ECC 6 but doesn't work for files stored and created in old release.
    Have you suggestions?
    Kind regards,
    Giuseppe.

    Try this alternate way
    copy the files from application server to presentation server using CG3Y and then read the file from the
    presentation server. using fm GUI_DOWNLOAD in Binary mode (format BIN)

  • Playing  .bin  files?

    I am currently downloading a .bin file but do not know how to play it when the download has completed fully. When I click on the file for a preview, Toast 6 Titanium comes up, but the file doesn't actually play. I don't know what to do, please help!
    Sorry if this question is in the wrong category.

    Hello! Sorry if this makes me sound stupid, but I don 't really understand. There is no way I can find out what application the file was made with. When I open the .bin file and roxio toast opens, it looks like it wants me to burn it onto a DVD and that's the only way I can watch what is on the file. I've had no experience with Roxio Toast so this is all seeming very complicated :/

  • How to open .bin files on Mac?

    Hey, I was wondering, how do we view .bin files on Mac computers? The .bin files that I have are generally movies, so I want to extract them sumhow to allow me to watch the file. In Windows, I would usually use a program called Alcohol 120% to mount the image on the harddrive, and then open a media player and watch it thru there...Im not sure if anyone, knows what Im talk about.. but thanks

    There's no such thing as .bin video format.
    ".bin" is normally an extension used by a CD image file. CD image itself is a "snapshot" of a CD disc that can contain virtually anything -- a software, a VCD movie, an SVCD movie, a game, X rated images, etc.
    For .bin files, you should always try open the .bin file first -- think it as a helluva big "zip file" that fits usually perfectly to a single CDR disc.
    For opening such image, you have two options -- you can burn it to a CDR and see what it has inside it after you've burned the disc.
    http://www.command-tab.com/2005/04/10/dealing-with-bincue-files-on-a-mac/

  • Can't open .bin file (trying to install windows media player)

    I'm trying to install windows media player on my brand new macbook pro. I downloaded the .bin file and have installed Stuffit Expander. When i try to open the .bin file, stuffit opens to the progress window and tells me that its preparing but nothing happens. it just freezes on me. i've openeother .bin files with no problem. How can I open this .bin file?
    macbook pro   Mac OS X (10.4.8)  

    I hope you are aware that the Windows Media Player plug-in will not work with Safari because it's not a universal binary. Furthermore, WMP is no longer supported by Microsoft for the Mac. Instead you should download and install Flip4Mac (www.versiontracker.com or www.macupdate.com.)
    Although the WMP plug-in for Safari will not work on an Intel Mac, the player will work fine through the Rosetta emulator. If you are insistent upon using WMP with Safari, then after you install WMP and the plug-in, select Safari's application icon, press COMMAND-I to open the Get Info window. Check the option "Open using Rosetta." This will force Safari to run as a PPC app.
    If Stuffit Expander will not open the .bin archive then check to be sure you are using the current version of it. If you continue having problems then try using TheUnarchiver instead (www.versiontracker.com or www.macupdate.com.) It's also possible you have a defective download.
    Why reward points?(Quoted from Discussions Terms of Use.)
    The reward system helps to increase community participation. When a community member gives you (or another member) a reward for providing helpful advice or a solution to their question, your accumulated points will increase your status level within the community.
    Members may reward you with 5 points if they deem that your reply is helpful and 10 points if you post a solution to their issue. Likewise, when you mark a reply as Helpful or Solved in your own created topic, you will be awarding the respondent with the same point values.

  • Can't open .bin files downloaded from Belkin's site

    I can't get firmware updates from Belkin's website to open. Supposedly they're in .bin archives including instructions and the firmware. I even updated my Stuffit Expander to version 10. No luck.
    If I drag the bin file onto expander it pops up a dialog box (that goes by too fast to read in less than 7 or 8 tries ) but there's never anything expanded to the desktop (the folder where the .bin file is).
    This is the file I need http://www.belkin.com/support/download/downloaddetails.asp?download=993 and I've tried also to open files from this page too http://www.belkin.com/support/article/?lid=en&aid=5027
    Can anyone make a suggestion on how to get this file expanded or is the linked file just a corrupt file? Thanks.

    Did you take the trouble to read the install.pdf file located on the same download page as the firmware file?
    I actually read the instructions elsewhere on that site. I don't ask for help without trying to find the answers on my own. For example, before posting, I did both a Google search on "can't open .bin files" and also did a search on the discussion boards too. Or was that a rhetorical question?
    It gives specific instructions on installation.
    I wasn't asking about installation instructions.
    You don't open the .bin file with Stuffit. It's not an archive. It's actually a binary file.
    Stuffit Expander was listed as the default application when using CMD-I AND elsewhere on that site it said it was a Mac archive .bin file. The fact that it's NOT a .bin archive file is news to me. Thanks.
    If you continue to have a problem contact Belkin's tech support. Apple Discussions does not provide support for third-party products.
    I wasn't asking for support with a Belkin product. I was asking for help getting what I thought was a Mac formatted .bin archive open using my Mac. I provided a link to the file because I thought perhaps it was corrupt.
    No need to get your knickers in a bunch.
    Thanks for explaining that it's not a .bin archive because obviously I was not going to figure that out on my own based on what I read elsewhere.

  • Microsoft excel tries to open .bin files

    I have MacBook Pro. It seems anytime I download a .bin file to install something (such as windows media player 9 for mac), the trial version of excel opens and tries to open the .bin file. (Which it can't, of course) Even when the download dialog in Firefox asks me if I want to save to disk or open with Stuffit Expander, and I chose "open with Stuffit Expander," it STILL tries to open in Excel. Also, when I ctrl-click on the .bin file itself and go to "open with" and look through my applications folder, I can't find the Stuffit Expander anywhere. It must be installed somewhere, otherwise that option wouldn't appear in the download dialog...

    Look in /Applications/Utilities/ or try using Spotlight to find where Stuffit Expander is located.
    If you can't find Stuffit Expander installed on your system then you probably don't have it and need to get the free download from:
    http://www.allume.com/mac/index.html
    I am not totally sure, but I think Firefox has it's own list of recommended helper applications that it would like to try to use to open files of a certain type, but that doesn't necessarily mean that you actually have that helper application on your machine.

  • Open .bin files wihtout Stuffit Expander?

    Hi,
    I need to install the Windows Media Player 9 because of some streaming movies that currently have troubles with the latest Flip4Mac. So I downloaded WMP9 from the Microsoft site, which is a .bin file.
    Unfortunately I am unable to open this .bin file. I know there is an application called Stuffit Expander. But before I can download this application I have to fill in my e-mail address to get an e-mail with the download link. This is definitely not something I enjoy doing. It seems pretty weird to me that even Apple is suggestion software from this vendor.
    Is there any alternative?

    Hi, prupert.
    You wrote: "So why are they not just offering the download with a link on their website, as most software vendors do?"You'll have to ask Smith Micro, as they now own Allume (nee Aladdin), the developers of StuffIt.
    You can easily opt-out of their marketing e-mails with the first one you receive per the instructions below the Submit button on the page page in question.
    The file you downloaded — which I suspect is
    WindowsMediaInstaller.bin
    from this page — is not a proper MacBinary (.bin) file. It is actually a StuffIt X archive and can only be opened in StuffIt Expander. This can be seen by opening the file in either TextEdit or a hexadecimal editor, like HexEdit, where you will see the following at the start of the file:
    Windows Media.sitx
    If it were a true MacBinary file, then if you downloaded it with Safari, it would be expanded without need for StuffIt. However, if I download it in Safari, the download is assigned the .sitx extension, not bin.
    So, you need StuffIt Expander to decompress the download.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • Cannot open any RAW files on PS CS6? what could be causing this?

    This is the message i keep getting...
    "Could not complete your request because Photoshop does not recognize this type of file."

    Is it specific to any particular raw file?
    Could you specify the Camera Name and Model?
    What is the version of PS (Help>System Info)?
    What is the version of Camera Raw?
    Check if you are able to open different raw files in PS CS6.
    ~ Arpit

  • Oracle 10.2.0.4 Bin file

    Hi
    I have downloaded the patchset 10.2.0.4 from the marketplace
    MS Windows x86-64 (64-bit)
    /Oracle/Oracle 10.2.0.4/Database RDBMS/MS Windows x86-64 (64-bit)
    Patchset_10204_MSWIN-x86-64aa.bin
    Patchset_10204_MSWIN-x86-64ab.bin
    Patchset_10204_MSWIN-x86-64ac.bin
    But I can seem to open these files to install the patchset. Can some one guide me as to how to open these *.bin files and proceed with the installation.
    Regards
    Sam

    Hi,
    You have to create a zip file out of the .bin files you have. Use the copy command in windows command prompt as follows
    copy Patchset_10204_MSWIN-x86-64aa.bin /B + Patchset_10204_MSWIN-x86-64ab.bin /B + Patchset_10204_MSWIN-x86-64ac.bin Patchset_10204_MSWIN-x86-64.zip
    After this you can unzip the file and continue..
    Gen syntax:
    copy <prefix>aa.bin /B +  <prefix>ab.bin /B + ... <prefix>.zip
    Hope this helps.
    Edited by: Mohammed Anish on Jan 27, 2009 6:57 AM

Maybe you are looking for

  • How to add mulitple namespace in xml

    Hi, I have this output xml: <?xml version="1.0" encoding="utf-8" ?> - <E24B:E24B_Update_MachineCards_001 xmlns:E24B="urn:E24B_UpdateMachineCards_001"> - <E24B:DataArea> - <E24B:UpdateMachineCards> - <E24B:Machine> - <E24B:Component>   <f:ComponentSer

  • Cost of Sales to PA

    I'm currently trying to use SAP series sales and create acontract for a product.  When the contract is created and billed an invoice is also created at which point FI postings are made to recievables and deferred revenue.  After running revenue recog

  • Regarding The Discover Reports

    Hi, CAn any body can get me the setup file for downloading the Discover reports Thank you

  • How do I create some black video in Final Cut Pro?

    I am new to fcp having moved from premiere how do I create some black video in fcp please Thanks Derek

  • BDC NOT WORKING BACKGROUND

    Hi all            I did a bdc for the tcode mira. It works fine in the foreground and displays a status message "INVOICE DOCUMENT 411523 POSTED" is raised by SAP itself. But in backgroud the program gets finished,but no documents is posted. I want to