From fc19b9e225fad7aceed52e66f6195e32f2173a3e Mon Sep 17 00:00:00 2001 From: DESKTOP-V026VQF\Home Date: Tue, 21 Feb 2023 20:27:42 +0530 Subject: Update --- _site/fix-internet-connection.html | 561 +++++++++++++++++++++++++++++++++++++ 1 file changed, 561 insertions(+) create mode 100644 _site/fix-internet-connection.html (limited to '_site/fix-internet-connection.html') diff --git a/_site/fix-internet-connection.html b/_site/fix-internet-connection.html new file mode 100644 index 0000000..5199e0e --- /dev/null +++ b/_site/fix-internet-connection.html @@ -0,0 +1,561 @@ + + + + +
+ + + + + + + + +In some cases, HWID activation may fail because system couldn’t +connect to HWID licensing servers.
Activation script will inform you about this if that is the +case.
This may happen mostly either due to DNS or Issues in MS +licensing servers itself or Firewall rules in the system. Below you can +find listed fixes for it.
Which method to choose for the fix?
+
If you are facing issues then reach out to us on our Discord.
Download the Fix_DNS.zip file from here.
Extract the zip file and right click on Fix_DNS.cmd
+file and run it as admin.
Follow onscreen instructions.
Once done, try HWID Activation.
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/
Psiphon - https://psiphon.ca/
Once done, try HWID Activation.
Open Powershell or Terminal as admin (don’t open CMD).
Copy paste below lines and press enter,
$filePath = "C:\Windows\System32\drivers\etc\hosts"
+
+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", "" })
+
+Add-Content -Path $filePath -Value "124.108.22.138 licensing.mp.microsoft.com"
+
+Set-ItemProperty -Path $filePath -Name IsReadOnly -Value $true
+To restore it, run below commands.
+$filePath = "C:\Windows\System32\drivers\etc\hosts"
+
+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-ItemProperty -Path $filePath -Name IsReadOnly -Value $true
+