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
WinFetch shows the PowerShell-Version as Shell.
But is it possible, to add additional the .NET Version?
.NET 5.x have the version in $PSVersionTable under CLRVersion.
And .NET Core and .NET 6.x+ can adding it to $PSVersionTable, if it is not a preview version, with
$PSVersionTable.CLRVersion = [System.Runtime.InteropServices.RuntimeInformation]::FrameworkDescription -split '\s' | select -Last 1
The text was updated successfully, but these errors were encountered:
WinFetch shows the PowerShell-Version as Shell.
But is it possible, to add additional the .NET Version?
.NET 5.x have the version in $PSVersionTable under CLRVersion.
And .NET Core and .NET 6.x+ can adding it to $PSVersionTable, if it is not a preview version, with
$PSVersionTable.CLRVersion = [System.Runtime.InteropServices.RuntimeInformation]::FrameworkDescription -split '\s' | select -Last 1
The text was updated successfully, but these errors were encountered: