{ claus.conrad }

Microsoft PowerShell

https://learn.microsoft.com/en-us/powershell/

Resources

FAQ

Get SHA256 hash for a file

(Get-FileHash -Algorithm SHA256 -Path FILE_PATH).Hash

Make Ctrl+D close the shell

In profile:

Set-PSReadlineKeyHandler -Key ctrl+d -Function ViExit

Create alias

E.g. in profile:

Set-Alias -Name <ALIAS> -Value <SOMEAPP.EXE>