How do I detect what .NET Framework versions and service packs are installed?

后端 未结 13 1752
滥情空心
滥情空心 2020-11-22 01:31

A similar question was asked here, but it was specific to .NET 3.5. Specifically, I\'m looking for the following:

  1. What is the correct way to determine which .N
13条回答
  •  渐次进展
    2020-11-22 02:04

    In Windows 7 (it should work for Windows 8 also, but I haven't tested it):

    Go to a command prompt

    Steps to go to a command prompt:

    1. Click Start Menu
    2. In Search Box, type "cmd" (without quotes)
    3. Open cmd.exe

    In cmd, type this command

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

    This gives the latest version of NET Framework installed.

    One can also try Raymond.cc Utilties for the same.

提交回复
热议问题