powershellのバージョンを取得する方法をご紹介します。
以前、https://kamotora.net/system/powershell/powershell-version/で紹介した方法以外にも今回のご紹介する「Get-Host」コマンドを使う方法があります。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
PS C:\Users> Get-Host Name : ConsoleHost Version : 5.1.19041.906 InstanceId : d71183jc-aaaa-8383-aaaa-32dk38dhaa9bf UI : System.Management.Automation.Internal.Host.InternalHostUserInterface CurrentCulture : ja-JP CurrentUICulture : ja-JP PrivateData : Microsoft.PowerShell.ConsoleHost+ConsoleColorProxy DebuggerEnabled : True IsRunspacePushed : False Runspace : System.Management.Automation.Runspaces.LocalRunspace PS C:\Users> |
「Version」欄に表示されている「5.1.19041.906」がバージョンです。