How can I check what version/edition of Visual Studio is installed programmatically?

前端 未结 10 1101
萌比男神i
萌比男神i 2020-12-16 09:16

I could read registry HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\10.0. However, it doesn\'t give me any information about the edition of it - Profes

10条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-16 10:06

    You can get the VS product version by running the following command.

    "C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe" -property catalog_productDisplayVersion
    

提交回复
热议问题