Skip to content

Instantly share code, notes, and snippets.

@woodongwong
Created April 11, 2023 04:12
Show Gist options
  • Save woodongwong/82992191a0daad628a79f3e47be9ce4b to your computer and use it in GitHub Desktop.
Save woodongwong/82992191a0daad628a79f3e47be9ce4b to your computer and use it in GitHub Desktop.
Get the history of all sessions in PowerShell
# PS > notepad $PROFILE
function Get-History-All
{
Get-Content -Path (Get-PSReadlineOption).HistorySavePath
}
New-Alias history-all Get-History-All
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment