前提 PowerShellはデフォルトでは、タブ保管や履歴表示が行われない。 そのため、初期起動の際に以下の設定を読み込ますことで設定を有効化できる。 設定箇所 C:\Users\<ユーザー名>\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 設定内容 Set-PSReadLineKeyHandler -Key Tab -Function MenuComplete Set-PSReadLineOption -PredictionSource History -PredictionViewStyle ListView 事象 上記環境を設…