Visual Studio 2013 released to web!
Top things web developers should know about the Visual Studio 2013 release
System Requirements:
Supported operating systems
Windows 7 SP1 (x86 and x64)
Windows 8 (x86 and x64)
Windows 8.1 (x86 and x64)
Windows Server 2008 R2 SP1 (x64)
Windows Server 2012 (x64)
Windows Server 2012 R2 (x64)
Required components
Internet Explorer 10
Hardware requirements
1.6 GHz or faster processor
1 GB of RAM (1.5 GB if running on a virtual machine)
10 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
Source: Microsoft Visual Studio Ultimate 2013
I'm trying to install VS 2013 Ultimate on top of VS 2013 RC and the following error messages are preventing the installation.
The form specified for the subject is not one supported or known by the specified trust provider.
The failed components are:
Microsoft Visual Studio 2013 VsGraphics Helper
Microsoft Visual C++ 2013 Core Libraries
Microsoft Visual C++ 2013 x86 Libraries
Microsoft Visual C++ 2013 x64 Libraries
Microsoft Visual C++ 2013 ARM Libraries
Microsoft Team Foundation Server 2013 Preview Object Model (x64)
Microsoft Team Foundation Server 2013 Preview Object Model Language Pack (x64) - ENU
Microsoft .NET Framework 4.5.1 Preview Multi-Targeting Pack (ENU)
Microsoft .NET Framework 4.5.1 Preview Multi-Targeting Pack for Windows Store Apps (ENU)
Microsoft .NET Framework 4.5.1 Preview Multi-Targeting Pack Language Pack - enu
This error means that Windows does not recognize the input file as something it is able to affix a digital signature on.
Possible workaround
Using SetReg.exe Set Registry Tool to disable Certificate Revocation List checking.
setreg 3 FALSE
setreg 9 FALSE
Reference: Another Possible Workaround
I can try the workaround above to sort the problem, but i was in belief that VS 2013 RC can be easily updated?
VS 2013 can be installed side by side with previous versions of Visual Studio or, if you have a VS 2013 pre-release, it can be installed straight over top of the pre-release.
Source: Visual Studio 2013 RTM Available
UPDATE
I've tried using web installer or downloading ISO image again, with no success, as possible solutions in related sources.
RELATED
"HKEY_USER\[UNIQUE USER SID VALUE]\Software\Microsoft\Windows\CurrentVersion\WinTrust\Trust Providers\Software Publishing"
. Then modify value of"State"
eg. add flag WTPF_IGNOREREVOKATION would change 0x00023C00 -> 0x00023e00 (same assetreg -q 3 FALSE
). – Zimba