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…
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…