Skip to content

Commit 1b71ac8

Browse files
order update
1 parent 3039fe8 commit 1b71ac8

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

src/content/docs/cloudflare-one/connections/connect-devices/warp/troubleshooting/common-issues.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,3 +188,7 @@ Some applications require traffic to flow either all inside or all outside of th
188188
1. Determine the IP addresses and/or domains required for your application to function. Common Internet search terms include `<app-name> split tunnel list`, `<app-name> allow list`, or `<app-name> firewall ips`.
189189
2. In [Zero Trust](https://one.dash.cloudflare.com/), go to your [Split Tunnel settings](/cloudflare-one/connections/connect-devices/warp/configure-warp/route-traffic/split-tunnels/).
190190
3. Depending on the application, either include or exclude all of the necessary IPs and/or domains. For Microsoft applications, we provide a [one-click action](/cloudflare-one/connections/connect-devices/warp/configure-warp/warp-settings/#directly-route-microsoft-365-traffic) to exclude all Microsoft 365 IPs.
191+
192+
## Troubleshooting
193+
194+
- [Troubleshooting](/cloudflare-one/faq/#troubleshooting) - Review Troubleshooting for other WARP-related troubleshooting errors and solutions.

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

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,14 @@ This configuration creates an authentication loop. Cloudflare Access tries to au
346346

347347
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.
348348

349+
To investigate, run the following command to generate installation logs:
350+
351+
```powershell
352+
msiexec /i <PATH_TO_WARP_MSI> /L*V <PATH_TO_OUTPUT_LOG>
353+
```
354+
355+
Check the logs to verify if there are any missing DLLs (for example, `netstandard2.0`), which may point to a missing or outdated version of the .NET Framework.
356+
349357
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.
350358

351359
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.
@@ -360,9 +368,3 @@ If the problem continues, try running the [.NET Repair Tool](https://www.microso
360368
```powershell
361369
Get-ChildItem -Path “HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP” -Recurse | ForEach-Object { $_.Name; Get-ItemProperty $_.PSPath; "" }
362370
```
363-
364-
If the issue still as not resolved, run:
365-
366-
```powershell
367-
msiexec /i <PATH_TO_WARP_MSI> /L*V <PATH_TO_OUTPUT_LOG>
368-
```

0 commit comments

Comments
 (0)