Skip to content

Commit 746864e

Browse files
[CF1] .NET troubleshooting update
1 parent 119771a commit 746864e

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

src/content/docs/cloudflare-one/faq/troubleshooting.mdx

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,4 +340,23 @@ To resolve this error, review the following options:
340340

341341
When you put your Google Workspace behind Access, users will not be able to log in using Google or Google Workspace as an identity provider.
342342

343-
This configuration creates an authentication loop. Cloudflare Access tries to authenticate the user via Google, but Google itself treats Cloudflare as its identity provider and requires authentication from Cloudflare. Since each system depends on the other to complete login first, the user is caught in an infinite redirect cycle and can never successfully authenticate.
343+
This configuration creates an authentication loop. Cloudflare Access tries to authenticate the user via Google, but Google itself treats Cloudflare as its identity provider and requires authentication from Cloudflare. Since each system depends on the other to complete login first, the user is caught in an infinite redirect cycle and can never successfully authenticate.
344+
345+
## When installing WARP on Windows, the Setup Wizard ends prematurely.
346+
347+
This issue can occur if the system is missing the [required version](https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/download-warp/#windows:~:text=NET%20Framework%20version-,4.7.2%20or%20later,-HD%20space) of the .NET Framework.
348+
349+
Cloudflare WARP requires at least **.NET Framework Runtime 4.7.2**. Some older versions of Windows do not include this runtime by default, which causes the installer to fail with a `Setup Wizard ended prematurely` error.
350+
351+
This problem typically only affects legacy versions of Windows (such as, Windows 10 Enterprise 1607 LTSB, which is bundled with .NET `4.6`.) More recent Windows versions include .NET `4.7.2` or later by default and do not encounter this error.
352+
353+
To fix this:
354+
355+
1. Download and install the [.NET Framework 4.7.2 Runtime](https://dotnet.microsoft.com/en-us/download/dotnet-framework/net472) (make sure to install the **Runtime**, not the Developer Pack).
356+
2. Re-run the WARP installer.
357+
358+
If the problem continues, try running the [.NET Repair Tool](https://www.microsoft.com/en-ca/download/details.aspx?id=30135), or check which .NET versions are installed by running the following command in PowerShell:
359+
360+
```powershell
361+
Get-ChildItem -Path “HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP” -Recurse | ForEach-Object { $_.Name; Get-ItemProperty $_.PSPath; "" }
362+
```

0 commit comments

Comments
 (0)