Skip to content

Instantly share code, notes, and snippets.

@Postrediori
Created March 30, 2026 13:37
Show Gist options
  • Select an option

  • Save Postrediori/6755d78e0b6342f32064b3846ee694ca to your computer and use it in GitHub Desktop.

Select an option

Save Postrediori/6755d78e0b6342f32064b3846ee694ca to your computer and use it in GitHub Desktop.

Fix login issue in Visual Studio 2013 and 2015

After start Visual Studio 2013 and 2015 may have login problems with the following error:

The Online service is not available. Please try again later

The reason is that web server go.microsoft.com now supports only TLS1.2 protocol.

Solution

Update connection settings for IE component so that it will use newer encryption.

Add to DWORD values to the Windows registry

[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\.NETFramework\v4.0.30319]

"SystemDefaultTlsVersions"=dword:00000001
"SchUseStrongCrypto"=dword:00000001

Sources:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment