# 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")
Last active
April 18, 2025 03:12
-
-
Save FOBshippingpoint/ceb97255cb0a5c37b467140566eccce0 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment