Skip to content

Instantly share code, notes, and snippets.

@cverbiest
Created August 26, 2025 07:10
Show Gist options
  • Save cverbiest/9df1518a848618e8def3b0e14e7df169 to your computer and use it in GitHub Desktop.
Save cverbiest/9df1518a848618e8def3b0e14e7df169 to your computer and use it in GitHub Desktop.
Powershell pwsh snippets

Collection of pwsh snippets

Get-ChildItem sample showing full path

gci -Filter *.txt -Recurse | % { $_.FullName }

Show version

$PSVersionTable

Show shortcut keys

Get-PSReadLineKeyHandler

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