You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$tip.Title = 'Use $PSVersionTable to get PowerShell session info'
$tip.TipText = @'
The $PSVersionTable automatic variable contains information about the current PowerShell session, including the PowerShell version, operating system, and more.
'@
$tip.Example = @'
Write-Output "The PowerShell version being used is $($PSVersionTable.PSVersion)"
Write-Output "Below is the full contents of the `$PSVersionTable variable:"