Revision history of "How to check .NET version using PowerShell"

From DevOps Notebook

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 09:23, 19 October 2020MilosZ talk contribs 244 bytes +244 Created page with "<syntaxhighlight lang="PowerShell"> Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP' -Recurse | Get-ItemProperty -Name version -EA 0 | Where { $_.PSChildName -..."