Post

How to find .Net-Framework version ?

PS:

gci 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP' -recurse | gp -name Version -EA 0 | where { $_.PSChildName -match '^(?!S)\p{L}'} | select PSChildName, Version

CMD:

reg query "HKEY_Local_Machine\Software\Microsoft\NET Framework Setup\NDP
dir /b /ad /o-n %systemroot%\Microsoft.NET\Framework\v?.*

.NET Framework Yükleme-Kaldırma , Aktif etme - Framework Installation-Uninstallation, Activation

Faydalı olması dileğiyle. – Hope it’s useful.

This post is licensed under CC BY 4.0 by the author.