Skip to content

Instantly share code, notes, and snippets.

@FOBshippingpoint
Last active April 18, 2025 03:12
Show Gist options
  • Save FOBshippingpoint/ceb97255cb0a5c37b467140566eccce0 to your computer and use it in GitHub Desktop.
Save FOBshippingpoint/ceb97255cb0a5c37b467140566eccce0 to your computer and use it in GitHub Desktop.

PowerShell Tips

# Get help with opened window
Get-Help somecommand -ShowWindow
# or simply
help somecommand -s

# Alias
# There is a alias in powershell
# For example cd = Set-Location; cat = Get-Content
# The Get-Alias itself has `gal` alias
Get-Alias cd
# CommandType     Name                                               Version    Source
# -----------     ----                                               -------    ------
# Alias           cd -> Set-Location                                            

# Get latest file
Get-ChildItem | Sort-Object LastAccessTime | Select-Object -First 1

# Check file hash
$fileToCheck = "somefile.txt"
(Get-FileHash -Algorithm MD5 $fileToCheck | Select-Object -ExpandProperty Hash) -ilike (Get-Content "$fileToCheck.md5")


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment