Created for `customer-calabria`. Installs Cloudflare WARP and adds variables for common organization configuration options. ``` # Define variables $downloadUrl = "https://downloads.cloudflareclient.com/v1/download/windows/ga" $tempDir = $env:TEMP $installerPath = Join-Path $tempDir "Cloudflare_WARP.msi" $organization = "your-team-name" # Replace with your Cloudflare Zero Trust organization name $serviceMode = "1dot1" # Gateway with DoH mode (options: warp, 1dot1, proxy, postureonly, tunnelonly) $autoConnect = 2 # Auto-reconnect after N minutes (0 = indefinite off, 1-1440 = minutes) $displayName = "display-name" # Organization display name in WARP GUI $onboarding = $false # Show privacy policy screens on first launch $switchLocked = $true # Prevent users from manually disabling WARP ```
Solutions
Best Practices
General
- Name the file what the profile does.
- For example, instead of
googlePlayProtectVerifyApps.json(the name of the Android policy for this control), describe what it does:enforce-google-play-protect.json.
- For example, instead of
- Use kebab case in file names, with all letters in lowercase.
- Instead of
passwordPolicy.json, usepassword-policy.json.
- Instead of
- Be sure to end files with an empty newline.
symlinks
If a solution is applicable to multiple platforms, keep the original in the main platform directory and symlink it to the other platforms. For example, if an Apple configuration profile can be used on both macOS and iOS, use macOS as the source, and create a symlink in the iOS directory.
cd docs/solutions/ios-ipados/configuration-profiles/- Note that this is the destination that we want the symlink to be in.
ln -s ../../macos/configuration-profiles/my-profile.mobileconfig .- The
.here at the end means the current directory, and will use the same file name as the original (which is what we want).
- The
git add profile.mobileconfiggit commit