Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio Community 2015 Services not available

The problem is that I can't sign in to my visual studio, so can't use it.

My 30 day license expired and that means that I have to sign in in order to use it. So I hit Sign in button. A white window saying "We're getting things ready" shows up and after a while labled: "Sorry, we ran into a problem", saying "The online service is not available. Please try again later.".

When I checked the service status, it said it is online.

EDIT: {

I just used Fiddler to debug the network connection.. and I found out that the program or even the system just can't establish the connection to this server: http://go.microsoft.com:443

}

Any ideas how to fix it and sign in?

like image 296
Tom Lenc Avatar asked Oct 22 '15 14:10

Tom Lenc


People also ask

Is Visual Studio 2015 still available?

As of November 8, 2021, Visual Studio 2022 is a current production-ready version, and older versions such as 2013 and 2015 are on Extended Support, and 2017 and 2019 on Mainstream Support.

Is Visual Studio Professional 2015 free?

Visual Studio Community 2015 is a free, full-featured IDE with powerful coding productivity features, cross-platform mobile development tools for Windows, iOS, and Android, tools for web and cloud development, and access to thousands of extensions.


2 Answers

Change the Visual Studio proxy settings in

C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\devenv.exe.config

to

<system.net>
    <defaultProxy useDefaultCredentials="true" enabled="true">
        <proxy usesystemdefault="True" />
    </defaultProxy>
    <settings>
        <ipv6 enabled="true"/>
    </settings>
</system.net>
like image 78
Greg Naidu Avatar answered Sep 22 '22 16:09

Greg Naidu


I suppose this is a bit of a necro, but I fixed the above problem with a simple ipconfig /release, /renew, /flushdns in the command prompt. Works just fine now.

like image 26
Gald Wulfram Avatar answered Sep 20 '22 16:09

Gald Wulfram