diff options
| -rw-r--r-- | _site/licensing-servers-issue.html | 14 | ||||
| -rw-r--r-- | licensing-servers-issue.md | 32 |
2 files changed, 27 insertions, 19 deletions
diff --git a/_site/licensing-servers-issue.html b/_site/licensing-servers-issue.html index 3d1dd54..8f5e719 100644 --- a/_site/licensing-servers-issue.html +++ b/_site/licensing-servers-issue.html @@ -407,6 +407,8 @@ div.tocify { <div id="licensing-servers-issue" class="section level1">
<h1>Licensing Servers Issue</h1>
+<p>๐ Update: UTC 10.00 Friday, 28 July, 2023<br />
+Microsoft licensing servers are down at the moment. Please waitโฆ</p>
<hr />
<ul>
<li><p>In some cases, <strong>HWID activation</strong> may fail because
@@ -444,12 +446,12 @@ file and run it as admin.</p></li> <div id="vpn" class="section level2">
<h2>VPN</h2>
<ul>
-<li><p>You can install either of the below VPN to fix issue if script is
-showing failed to connect licensing servers.</p></li>
-<li><p>Cloudflare WARP - <a href="https://1.1.1.1/"
-class="uri">https://1.1.1.1/</a></p></li>
-<li><p>Psiphon - <a href="https://psiphon.ca/"
-class="uri">https://psiphon.ca/</a></p></li>
+<li><p>You can install below VPN to fix issue if script is showing
+failed to connect licensing servers.</p></li>
+<li><p>Freedome VPN<br />
+<a
+href="https://download.sp.f-secure.com/freedome/installer/2/Freedome.exe"
+class="uri">https://download.sp.f-secure.com/freedome/installer/2/Freedome.exe</a></p></li>
<li><p>Once done, try HWID Activation.</p></li>
</ul>
<hr />
diff --git a/licensing-servers-issue.md b/licensing-servers-issue.md index b5f5a8a..5e5be22 100644 --- a/licensing-servers-issue.md +++ b/licensing-servers-issue.md @@ -4,6 +4,9 @@ pagetitle: Licensing Servers Issue # Licensing Servers Issue
+๐ Update: UTC 10.00 Friday, 28 July, 2023\
+Microsoft licensing servers are down at the moment. Please wait...
+
------------------------------------------------------------------------
- In some cases, **HWID activation** may fail because system couldn't connect to HWID licensing servers.
@@ -35,11 +38,10 @@ pagetitle: Licensing Servers Issue ## VPN
-- You can install either of the below VPN to fix issue if script is showing failed to connect licensing servers.
-
-- Cloudflare WARP - <https://1.1.1.1/>
+- You can install below VPN to fix issue if script is showing failed to connect licensing servers.
-- Psiphon - <https://psiphon.ca/>
+- Freedome VPN\
+ <https://download.sp.f-secure.com/freedome/installer/2/Freedome.exe>
- Once done, try HWID Activation.
@@ -55,26 +57,30 @@ Around 8 Feb 2023 in China, MS licensing servers failed to properly connect and <!-- -->
- $filePath = "C:\Windows\System32\drivers\etc\hosts"
+```
+$filePath = "C:\Windows\System32\drivers\etc\hosts"
- Set-ItemProperty -Path $filePath -Name IsReadOnly -Value $false
+Set-ItemProperty -Path $filePath -Name IsReadOnly -Value $false
- Set-Content -Path $filePath -Value (Get-Content $filePath | ForEach-Object { $_ -replace "124.108.22.138 licensing.mp.microsoft.com", "" })
+Set-Content -Path $filePath -Value (Get-Content $filePath | ForEach-Object { $_ -replace "124.108.22.138 licensing.mp.microsoft.com", "" })
- Add-Content -Path $filePath -Value "124.108.22.138 licensing.mp.microsoft.com"
+Add-Content -Path $filePath -Value "124.108.22.138 licensing.mp.microsoft.com"
- Set-ItemProperty -Path $filePath -Name IsReadOnly -Value $true
+Set-ItemProperty -Path $filePath -Name IsReadOnly -Value $true
+```
- Done. Now try HWID Activation.
To restore it, run below commands.
- $filePath = "C:\Windows\System32\drivers\etc\hosts"
+```
+$filePath = "C:\Windows\System32\drivers\etc\hosts"
- Set-ItemProperty -Path $filePath -Name IsReadOnly -Value $false
+Set-ItemProperty -Path $filePath -Name IsReadOnly -Value $false
- Set-Content -Path $filePath -Value (Get-Content $filePath | ForEach-Object { $_ -replace "124.108.22.138 licensing.mp.microsoft.com", "" })
+Set-Content -Path $filePath -Value (Get-Content $filePath | ForEach-Object { $_ -replace "124.108.22.138 licensing.mp.microsoft.com", "" })
- Set-ItemProperty -Path $filePath -Name IsReadOnly -Value $true
+Set-ItemProperty -Path $filePath -Name IsReadOnly -Value $true
+```
------------------------------------------------------------------------
|
