2017年5月16日

【PowerShell】コンソールホストに関する情報を取得する


Get-Hostにより、Windows PowerShellコンソールに関する情報を取得できます。
ホスト名、実行されているPowerShellのバージョン、現在のカルチャなどを取得できます。

PS C:\work> Get-Host


Name             : ConsoleHost
Version          : 5.1.14393.1198
InstanceId       : fe3f237c-c6cf-402c-91a5-a0366b10a851
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


スポンサーリンク