Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

https://developer.mozilla.

org/en-US/docs/Web/HTML/Element/Heading_Elements
https://www.diffchecker.com/

Unzip files on Windows 11 from PowerShell


To extract a zipped folder with commands from PowerShell on Windows 11 (or 10),
use these steps:
1. Open Start.
2. Search for PowerShell, right-click the top result, and select the Run as
administrator option.
3. Type the following command to unzip files with PowerShell and press Enter:
Expand-Archive -LiteralPath PATH\TO\ZIP -DestinationPath PATH\TO\DESTINATION
This example extracts the zipped files to the “Downloads” folder:
Expand-Archive -LiteralPath C:\Users\m__la\Downloads\wordpress.zip -DestinationPath
C:\Users\m__la\Downloads

Once you complete the steps, the files will be extracted from the zip container to the
specified folder.
In addition to “.zip” files, you may find other compression containers
like “.tar.gz,” commonly found in Linux and macOS. If this is the case, you can
also extract their contents using native commands on Windows 11.

You might also like