How to Unzip a File on Any Computer (And What to Do When It Fails)

How to Unzip a File on Any Computer (And What to Do When It Fails)

2026-08-13
unpk.app Team

Most of the time, unzipping a file takes one double-click and no software at all. Every modern operating system has handled .zip for over two decades.

So the short answer:

  • Windows - right-click the file, choose Extract All, pick a folder, click Extract
  • Mac - double-click it. macOS unzips it into the same folder automatically
  • ChromeOS - double-click it in the Files app, then drag the contents out of the mounted archive
  • Linux - right-click, Extract Here, or run unzip archive.zip

If that worked, you're done. The rest of this page is for when it doesn't, because that is where people actually get stuck.

When Your Computer Says It Can't Open the File

The most common reason is that the file is not actually a .zip. Windows and macOS only handle a handful of formats without help, and the moment someone sends you something from the Linux or developer world, the built-in tools stop being useful.

FormatWindows 11 (23H2+)Windows 10macOSChromeOS
.zipYesYesYesYes
.tar, .tar.gzYesNoYesNo
.rarYesNoNoNo
.7zYesNoNoNo
.tar.xz, .tar.zstYesNoNoNo
.isoMount onlyMount onlyMount onlyNo

Windows 11 quietly became much better at this in the 23H2 update, when Microsoft added libarchive and picked up RAR, 7z and the whole TAR family in one go. Windows 10 never got that, so the same file that opens with a double-click on a colleague's machine may do nothing at all on yours.

macOS is the awkward one for .rar and .7z. Archive Utility has never supported either, and it never will.

What "The Archive Is Corrupt" Usually Means

This is the part almost nobody writes about honestly, so here is what the failures actually look like. These are the real causes behind 161 failed extractions on unpk.app over one month, in order of how often they happen.

You downloaded a web page, not a file

This came up 11 times. The file has the right name and roughly the right size, but it is HTML. A download link expired, a login redirected you, or a file host served an error page and your browser saved it under the original filename.

Open it in a text editor. If the first thing you see is <!DOCTYPE html>, the archive was never downloaded. Go back and get it again.

The extension is lying

Nine files were named .zip and were not ZIP archives. Renaming a file does not convert it. If someone renamed a .rar to .zip hoping it would open more easily, it will not, and the error you get will be confusing.

Every archive format starts with a signature in its first few bytes. A ZIP begins with PK, a RAR with Rar!, a Zstandard file with the bytes 28 B5 2F FD. Good tools check the signature rather than trusting the name.

It is only one piece of a set

Large downloads are often split: archive.part1.rar, archive.part2.rar, or .z01, .z02 next to the main file. No tool on earth can extract a complete archive from one piece. You need every part, in the same folder, before you start.

This is the single most common reason a RAR file fails to open, and the error message you get rarely says so.

It needs a password you don't have

Six failures were simply a wrong password. Encrypted archives fail in an unhelpful way: you may see "corrupt" rather than "wrong password", because the tool decrypts garbage and then finds the garbage doesn't parse.

The archive really is damaged

Some archives genuinely are truncated, usually from an interrupted download. If the file is noticeably smaller than the source says it should be, download it again before blaming anything else.

Unzipping Without Installing Anything

If you are on a work laptop, a school Chromebook or any machine where you cannot install software, you have two options.

Upload-based sites will unzip almost anything, but your file goes to somebody else's server, sits there for some period you don't control, and you wait through an upload before anything happens. For a holiday photo archive that may be fine. For a client contract, a database dump or anything with personal information in it, it is worth thinking about.

The alternative is a browser tool that works locally. unpk.app reads the archive directly from your disk and writes the files back out without anything leaving your computer. There is no upload step, so there is no size ceiling either. You can disconnect from the internet after the page loads and extraction still works, which is a reasonable way to verify the claim for yourself.

It handles the formats in the table above, plus the ones Windows and macOS have no answer for at all.

Password-Protected ZIP Files

Neither Windows Explorer nor macOS Archive Utility can open an encrypted ZIP. They either fail outright or produce files that look extracted but are unusable.

You need a tool that understands ZIP encryption, and there are two kinds: the original ZipCrypto, and the AES modes WinZip introduced that most modern software produces. A tool that supports one but not the other will fail on half the encrypted archives you meet.

If you don't have the password, no tool can help. Encryption that could be bypassed would not be encryption.

Very Large Archives

Anything above a few gigabytes causes trouble for two different reasons.

Upload-based services cap file size because bandwidth and storage cost them money, so you'll typically hit a limit somewhere between 100 MB and 2 GB depending on the service.

Desktop tools have a different problem: many read the whole archive into memory before starting, which means a 5 GB archive wants several gigabytes of free RAM and fails awkwardly if it doesn't get them.

The way around both is streaming, where the archive is read in pieces and each file is written out as it is decoded. Memory use then stays flat regardless of archive size. It is how unzip on the command line has always worked, and it is what makes multi-gigabyte extraction possible in a browser tab.

The Short Version

Try the double-click first. If it fails, work through this in order:

  1. Check what the file actually is. Open it in a text editor and look for <!DOCTYPE html>
  2. Check whether it is one part of a multi-part set
  3. Check whether your operating system supports that format at all, using the table above
  4. If it is encrypted, make sure you have the right password
  5. If none of that explains it, the download is probably truncated. Fetch it again

Most "corrupt archive" messages are one of the first two, and neither has anything to do with the archive being broken.

Ready to extract a file?

No uploads, no software installation. 100% private client-side extraction.

Open File Extractor