
Microsoft translates the texts of its documentations by machines - and often this unfortunately still ends in total gibberish.
But especially for developer documentations an understandable way of technical expression is very important - which is why many developers from all over the world simply want to read the English documentation instead of a bad local translation.
For a while there was a possibility that the Microsoft Docs would always show the english version - but unfortunately this was removed. And so there is currently a state that there is no possibility that always the English version is displayed. A real mess.
The only possibility is to use the US-Slug in the URL.
https://docs.microsoft.com/ de-de/aspnet/identity/overview/getting-started/introduction-to-aspnet-identity
manual change to
https://docs.microsoft.com/ en-us/aspnet/identity/overview/getting-started/introduction-to-aspnet-identity
…but who wants to adjust the URL manually all the time?
Redirector
Thank god other developers were already annoyed by manual redirects and wrote browser plugins that do this automatically.
One of them is suitable for Google Chrome and Microsoft Edge: Redirector
.
Automatic redirects can be configured using Regex.
Description: Microsoft Docs English Example URL: https://docs.microsoft.com/de-de/aspnet Pattern: https://docs.microsoft.com/ \w\w-\w\w/(.*) https://docs.microsoft.com/en-us/$1
This pattern always redirects to the US English variant.
Related articles

Mar 17, 2026 · 15 min read
GitHub Copilot - Custom Agents for Full-Stack Teams: A Practical Operating Model for .NET, React and Azure
GitHub Copilot custom agents allow teams to define specialized AI assistants, each with its own role, tool access and behavioral boundaries. …

Mar 10, 2026 · 15 min read
.NET NuGet Trusted Publishing with GitHub Actions
Publishing NuGet packages has traditionally required one uncomfortable compromise: a long-lived API key had to exist somewhere in the …

Mar 09, 2026 · 7 min read
C# 15 Unions: Unions are finally in .NET
After many years of workarounds, design discussions and library-level substitutes, unions are finally becoming a first-class part of C#. The …
Let's Work Together
Looking for an experienced Platform Architect or Engineer for your next project? Whether it's cloud migration, platform modernization or building new solutions from scratch - I'm here to help you succeed.


Comments