-
Notifications
You must be signed in to change notification settings - Fork 10k
[CF1] .NET troubleshooting update #22164
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
746864e
3039fe8
1b71ac8
575baec
c40bcf9
515cb4c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -340,4 +340,29 @@ To resolve this error, review the following options: | |
|
|
||
| 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. | ||
|
|
||
| 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. | ||
| 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. | ||
|
|
||
| ## When installing WARP on Windows, the Setup Wizard ends prematurely. | ||
|
|
||
| This error can occur for several reasons, including missing dependencies, like the appropriate .NET Framework version or other Dynamic Link Libraries (DLLs) such as `netstandard2.0`, required during installation. | ||
deadlypants1973 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| One common cause is a missing or outdated version of the [.NET Framework Runtime](https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/download-warp/#windows:~:text=NET%20Framework%20version-,4.7.2%20or%20later,-HD%20space). Cloudflare WARP requires a .NET Framework version of `4.7.2` or later. | ||
deadlypants1973 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| Some legacy Windows systems (such as Windows 10 Enterprise 1607 LTSB, which is bundled with .NET `4.6`) do not include this runtime by default and may fail during installation with a `Setup Wizard ended prematurely` error. More recent Windows versions include .NET `4.7.2` or later by default and do not encounter this error. | ||
|
|
||
| To fix this: | ||
|
|
||
| 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). | ||
| 2. Re-run the WARP installer. | ||
|
|
||
| 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: | ||
|
|
||
| ```powershell | ||
| Get-ChildItem -Path “HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP” -Recurse | ForEach-Object { $_.Name; Get-ItemProperty $_.PSPath; "" } | ||
deadlypants1973 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ``` | ||
|
|
||
| If the issue still as not resolved, run: | ||
|
||
|
|
||
| ```powershell | ||
| msiexec /i <PATH_TO_WARP_MSI> /L*V <PATH_TO_OUTPUT_LOG> | ||
| ``` | ||
Uh oh!
There was an error while loading. Please reload this page.