Install Visual Studio 2013 on Windows 7

前端 未结 5 1452
忘了有多久
忘了有多久 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:10

    Visual Studio 2013 System Requirements

    Supported Operating Systems:

    • Windows 8.1 (x86 and x64)
    • Windows 8 (x86 and x64)
    • Windows 7 SP1 (x86 and x64)
    • Windows Server 2012 R2 (x64)
    • Windows Server 2012 (x64)
    • Windows Server 2008 R2 SP1 (x64)

    Hardware requirements:

    • 1.6 GHz or faster processor
    • 1 GB of RAM (1.5 GB if running on a virtual machine)
    • 20 GB of available hard disk space
    • 5400 RPM hard disk drive
    • DirectX 9-capable video card that runs at 1024 x 768 or higher display resolution

    Additional Requirements for the laptop:

    • Internet Explorer 10
    • KB2883200 (available through Windows Update) is required

    And don't forget to reboot after updating your windows

    0 讨论(0)
  • 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"
    
    0 讨论(0)
  • 2020-11-27 05:18

    The minimum requirements are based on the Express edition you're attempting to install:

    Express for Web (Web sites and HTML5 applications) - Windows 7 SP1 (With IE 10)
    Express for Windows (Windows 8 Apps) - Windows 8.1
    Express for Windows Desktop (Windows Programs) - Windows 7 SP1 (With IE 10)
    Express for Windows Phone (Windows Phone Apps) - Windows 8
    

    It sounds like you're trying to install the "Express 2013 for Windows" edition, which is for developing Windows 8 "Modern UI" apps, or the Windows Phone edition.

    The similarly named version that is compatible with Windows 7 SP1 is "Express 2013 for Windows Desktop"

    Source

    0 讨论(0)
  • 2020-11-27 05:20

    your log files shows it is stopping on error "0x8004C000"

    From MS Website (http://social.technet.microsoft.com/wiki/contents/articles/15716.visual-studio-2012-and-the-error-code-2147205120.aspx):

    Setup Status
    Block

    Restart not required
    0x80044000 [-2147205120]

    Restart required
    0x8004C000 [-2147172352]

    Description
    If the only block to be reported is “Reboot Pending,” the returned value is the Incomplete-Reboot Required value (0x80048bc7).

    0 讨论(0)
  • 2020-11-27 05:21

    Visual Studio Express for Windows needs Windows 8.1. Having a look at the requirements page you might want to try the Web or Windows Desktop version which are able to run under Windows 7.

    0 讨论(0)
提交回复
热议问题