Install Visual Studio 2013 on Windows 7

前端 未结 5 1570
忘了有多久
忘了有多久 2020-11-27 04:25

I would like to install Visual Studio 2013 on Windows 7 64-bit.

For some reason, the installer says \"Setup Blocked\" with an error \"This version of Visual Studio r

5条回答
  •  旧巷少年郎
    2020-11-27 05:17

    Fake IE10 to install Visual Studio 2013

    Visual Studio 2013 requires Internet Explorer 10. If you try to install it on Windows 7 with IE8 you get the following error This version of Visual Studio requires Internet Explorer 10”. The value that the VS 2013 installer checks is svcVersion in the HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorerkey on 32-bit Windows and HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer on 64-bit Windows. Any value >= 10.0.0.0 makes the installer happy.

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer]
    "svcVersion"="10.0.0.0"
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer]
    "svcVersion"="10.0.0.0"
    

提交回复
热议问题