Is it possible to open a self-extracting compressed Windows file on a Mac?

27

5

If I have a compressed file that's stored as a self-extracting archive for Windows, i.e., a .exe file, is it possible to convert it to a zip file that can be unzipped under OS X? Alternatively, is there Mac program that can open one of these archives?

abeger

Posted 2010-02-07T20:27:14.210

Reputation: 725

I think that depends on how the file was created. Do you know that? – bdecaf – 2012-07-19T13:06:05.137

Answers

60

This is an old question, but I thought I'd throw this in anyway. With self extracting archives, you might be able to simply just run the sfx file and it should do it's thing. Make sure to give it executable permissions (chmod +x filename.sfx) and simply run that file in terminal (./filname.sfx) and it might just work.

Mike S.

Posted 2010-02-07T20:27:14.210

Reputation: 721

@Uri as I understand the question, it's about .EXE self-extracting archives (or SFX for short), not .SFX files. – gronostaj – 2013-06-12T22:11:20.840

3@gronostaj yes the original question is specifically about EXE but I was looking for .SFX and found this question. This answer helped me; I don't think it should be chosen as the correct answer, but I also don't think it merits a negative score. – Uri – 2013-06-13T13:31:17.283

2This may not exactly answer OP's question, but Google sent me here and this was the answer I needed, so I'm upvoting. – RyanHennig – 2013-06-23T18:54:46.427

1Ditto @RyanHennig -- I wanted to know how to open .sfx files on a Mac OSX system, and enabling executable mode on the file and running it from the terminal worked perfectly in my case. – iX3 – 2013-10-10T15:43:52.400

11

The Unarchiver supports this, and is an all round great extraction utility.

MJeffryes

Posted 2010-02-07T20:27:14.210

Reputation: 1 292

1The Unarchiver was able to handle multi-part, self-extracting archives for me. – Andrew Hedges – 2013-01-03T21:56:17.093

3

The command line unzip in the terminal should be able to do it (it will report that it skips bytes at the beginning but should work fine otherwise).

List files:

unzip -v windowsfile.exe

Extract:

unzip windowsfile.exe 

Yamodax

Posted 2010-02-07T20:27:14.210

Reputation: 238

2

The freeware Keka is able to do that, too.

It first extracts a .zip file from the .exe file, which you have to open again with any zip-extracting tool that can handle password encrypted archives.

But if you just change the file extension from '.exe' to '.zip' you can skip the conversion and are asked for the password right away.

donaldo

Posted 2010-02-07T20:27:14.210

Reputation: 21

1Keka did not work for me. – Koray Tugay – 2014-11-20T12:07:52.207

1

UnRarX handles this perfectly on OS X for me.

Keith Smiley

Posted 2010-02-07T20:27:14.210

Reputation: 196

It doesn't work at this moment – Jaime Agudo – 2014-10-29T12:50:34.867

0

Checkout iZip unarchiver, great program for mac, that comes with the ability to extract .exe files.

http://download.cnet.com/iZip-Unarchiver/3000-2250_4-76038252.html

Or find it on the app store:

https://itunes.apple.com/au/app/izip-unarchiver-rar-7z-zip/id717545828?mt=12

James111

Posted 2010-02-07T20:27:14.210

Reputation: 101

0

I was unable to get unzip, The Unarchiver, nor Stuffit Expander to unpack an old self-extracting zip. I finally tried opening it in CrossOver Mac and it worked perfectly.

Chris Bloom

Posted 2010-02-07T20:27:14.210

Reputation: 220