Microsoft PowerShell
https://learn.microsoft.com/en-us/powershell/
Resources
Section titled “Resources”- Everything you wanted to know about variable substitution in strings
- GitHub
- Tips for Writing Cross-Platform PowerShell Code
Get SHA256 hash for a file
Section titled “Get SHA256 hash for a file”(Get-FileHash -Algorithm SHA256 -Path FILE_PATH).HashMake Ctrl+D close the shell
Section titled “Make Ctrl+D close the shell”In profile:
Set-PSReadlineKeyHandler -Key ctrl+d -Function ViExitCreate alias
Section titled “Create alias”E.g. in profile:
Set-Alias -Name <ALIAS> -Value <SOMEAPP.EXE>