All articles
Everything on Know Zone Lab, organised by topic.
PowerShell Basics
- How to Extract a ZIP in PowerShell Without Overwrites — To extract a ZIP in PowerShell without overwriting existing files, first choose a new destination folder, then run `Expand-Archive -LiteralPath…
- Find the Largest Files in PowerShell Without Deleting — Find the largest files in PowerShell by listing files in a chosen folder, sorting their numeric Length property in descending order, and selecting the…
File Integrity
- How to Verify a SHA-256 Checksum in PowerShell — To verify a SHA-256 checksum in PowerShell, run `Get-FileHash -LiteralPath 'C:\Downloads\release.iso' -Algorithm SHA256`, replacing the example path with…