Home » Web Development » How to Check Which Version of Microsoft .NET Framework is Installed in Windows?

How to Check Which Version of Microsoft .NET Framework is Installed in Windows?

How do you know which version of .NET framework is running on your system. Simplest one. Run the following on your command line.

 wmic /namespace:\\root\cimv2 path win32_product where "name like '%%.NET%%'" get version 

via How to Check Which Version of Microsoft .NET Framework is Installed in Windows? – AskVG.

Leave a comment