windows management framework version

hello

i want ot check the version of Windows management Framework version and .net version

is it $psversiontable.WSManStackVersion. ?

thank you

March 13th, 2014 4:59am

Just leave out the .WSManStackVersion:

$PSVersionTable

PSVersion: Version of PowerShell you are running.

CLRVersion: .Net version used in this PowerShell instance

Free Windows Admin Tool Kit Click here and download it now
March 13th, 2014 9:32am

In addition, by running below command we should be able to get the installed .Net feature.

Get-WindowsFeature | where {($_.installed -eq $true) -and ($_.name -like "*NET*")}

Regards,

Yan Li

March 14th, 2014 3:17am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics