From c2d3e7676961455ef333934d2a93c89dbdafe9bc Mon Sep 17 00:00:00 2001
From: WindowsAddict
Date: Fri, 28 Jul 2023 15:40:04 +0530
Subject: Add info of licensing server issue
---
licensing-servers-issue.md | 32 +++++++++++++++++++-------------
1 file changed, 19 insertions(+), 13 deletions(-)
(limited to 'licensing-servers-issue.md')
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 -
+- You can install below VPN to fix issue if script is showing failed to connect licensing servers.
-- Psiphon -
+- Freedome VPN\
+
- 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
+```
------------------------------------------------------------------------
--
cgit v1.2.3