massgrave.dev/bypass-russian-geoblock.md

72 lines
2.8 KiB
Markdown
Raw Normal View History

2023-04-24 22:21:01 +02:00
---
pagetitle: Bypass Russian Geoblock
---
# Bypass Russian Geoblock
------------------------------------------------------------------------
2023-05-29 11:05:06 +02:00
In this page, methods to bypass Russian geoblock imposed by **Microsoft** will be discussed.
------------------------------------------------------------------------
## Windows Download
Russian users face an error when they try to download Windows ISO's from [Official Microsoft page](https://www.microsoft.com/software-download).
### Error
```
We are unable to complete your request at this time. Some users, entities and locations are banned from using this service. For this reason, leveraging anonymous or location hiding technologies when connecting to this service is not generally allowed. If you believe that you encountered this problem in error, please try again. If the problem persists you may contact Microsoft Support Contact Us page for assistance. Refer to message code 715-123130 and d37047d7-7ce8-4a29-a5a2-2c882e106817.
```
### Solution
2023-06-27 14:18:35 +02:00
[MSDL](/msdl/)
2023-05-29 11:05:06 +02:00
2023-10-24 15:46:54 +02:00
It uses shared sessions/proxy to generate official download links in Russia and all other blocked places.
2023-04-24 22:21:01 +02:00
------------------------------------------------------------------------
## Office Download
2023-10-24 15:46:54 +02:00
Russian users face an error when they try to [download](genuine-installation-media.html) Office C2R with the online installer or ODT.
2023-04-24 22:21:01 +02:00
### Error
2023-05-29 11:05:06 +02:00
```
Command not supported
We're sorry, we can't continue because we weren't able to download a required file. Please make sure you're connected to the internet or connect to a different network, then try again.
```
2023-04-24 22:21:01 +02:00
![](https://lookimg.com/images/2023/03/24/QTAO3s.png)
2023-10-24 15:46:54 +02:00
#### How is Microsoft blocking it?
2023-04-24 22:21:01 +02:00
2023-10-24 15:46:54 +02:00
Primarily, it checks for Russian IP addresses, and based on that, the above error is shown to users. However that's not the end of it. Once it find out that Russian IP is used, the installer creates the registry key below to remember it. After that, even if you use a VPN, the installer will still keep showing the error.
2023-04-24 22:21:01 +02:00
2023-05-29 11:05:06 +02:00
```
[HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Common\ExperimentConfigs\Ecs]
"CountryCode"="std::wstring|RU"
```
2023-04-24 22:21:01 +02:00
2024-01-24 02:12:44 +01:00
### Solution 1
2023-04-24 22:21:01 +02:00
2024-01-24 02:12:44 +01:00
- Open command prompt as admin and enter,
2023-04-24 22:21:01 +02:00
2023-05-29 11:05:06 +02:00
```
reg add "HKCU\Software\Microsoft\Office\16.0\Common\ExperimentConfigs\Ecs" /v "CountryCode" /t REG_SZ /d "std::wstring|US" /f
```
2023-04-24 22:21:01 +02:00
2023-10-24 15:46:54 +02:00
After that, the office installer won't show any related errors. You can apply this before or after running the Office installer and you can download Office without any VPN with your Russian IP address.
2023-04-24 22:21:01 +02:00
2024-01-24 02:12:44 +01:00
**Or**
### Solution 2
- Use the [Offline installer file](#0) to install Office.
2023-10-16 04:49:36 +02:00
2023-04-24 22:21:01 +02:00
------------------------------------------------------------------------
Please let us [know](contactus.html) if you face any issues or have any suggestions.