Skip to content

Commit 7daae5a

Browse files
committed
fix: Fix Default urlWhitelist value
1 parent 293eff4 commit 7daae5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

enterprise/Deploy-Windows-Chrome-and-Edge.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ $cippServerUrl = "" # This will set the "CIPP Server URL" option in the extensio
2121
$cippTenantId = "" # This will set the "Tenant ID/Domain" option in the extension settings; default is blank; if you set $enableCippReporting to 1, you must set this to a valid Tenant ID.
2222
$customRulesUrl = "" # This will set the "Config URL" option in the Detection Configuration settings; default is blank.
2323
$updateInterval = 24 # This will set the "Update Interval" option in the Detection Configuration settings; default is 24 (hours). Range: 1-168 hours (1 hour to 1 week).
24-
$urlWhitelist = [] # This will set the "URL Whitelist" option in the Detection Configuration settings; default is blank; if you want to add multiple URLs, add them as a comma-separated list within the brackets (e.g., @("https://example1.com", "https://example2.com")). Supports simple URLs with * wildcard (e.g., https://*.example.com) or advanced regex patterns (e.g., ^https:\/\/(www\.)?example\.com\/.*$).
24+
$urlWhitelist = @() # This will set the "URL Whitelist" option in the Detection Configuration settings; default is blank; if you want to add multiple URLs, add them as a comma-separated list within the brackets (e.g., @("https://example1.com", "https://example2.com")). Supports simple URLs with * wildcard (e.g., https://*.example.com) or advanced regex patterns (e.g., ^https:\/\/(www\.)?example\.com\/.*$).
2525
$enableDebugLogging = 0 # 0 = Unchecked, 1 = Checked (Enabled); default is 0; This will set the "Enable Debug Logging" option in the Activity Log settings.
2626

2727
# Custom Branding Settings

0 commit comments

Comments
 (0)