Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Powershell Configuration ====== A handy POSH configuration <code powershell> set-alias exp explorer.exe Set-PSReadLineOption -HistoryNoDuplicates function h2 { notepad (Get-PSReadLineOption | select -ExpandProperty HistorySavePath) } function h3 { code -n (Get-PSReadLineOption | select -ExpandProperty HistorySavePath) } function hp { Get-History | Out-GridView -Title "Press CTRL, select multiple and Hit OK" -OutputMode Multiple | ForEach-Object { Write-Output "PS> $($_.CommandLine)" Invoke-Expression $($_.CommandLine) } } </code> qnd/powershell_configruation.txt Last modified: 2021/05/21 15:05by mgupton