From aea04e5f7cd48fbb9b407b68ade75575a6064c82 Mon Sep 17 00:00:00 2001 From: undergroundwires Date: Fri, 16 Apr 2021 17:56:31 +0200 Subject: [PATCH] document chromium warning for policy changes Chromium shows "Your browser is managed" or "Your browser is managed by an organization" warnings when its behavior is manipulated using policies. This message confuses some users, so the commit marks this behavior to let users know why the box appears. Read more: - https://chromium.googlesource.com/chromium/src/+/refs/tags/92.0.4475.1/chrome/browser/ui/managed_ui.cc#67 - https://support.google.com/chrome/thread/3262871 --- src/application/collections/windows.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/application/collections/windows.yaml b/src/application/collections/windows.yaml index 7491465f..17fbe96d 100644 --- a/src/application/collections/windows.yaml +++ b/src/application/collections/windows.yaml @@ -1815,7 +1815,7 @@ actions: category: Chromium Edge settings children: - - name: Disable Edge usage and crash-related data reporting # Obselete since Microsoft Edge version 89 + name: Disable Edge usage and crash-related data reporting (shows "Your browser is managed") # Obselete since Microsoft Edge version 89 recommend: standard docs: - https://admx.help/?Category=EdgeChromium&Policy=Microsoft.Policies.Edge::MetricsReportingEnabled @@ -1823,7 +1823,7 @@ actions: code: reg add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "MetricsReportingEnabled" /t REG_DWORD /d 0 /f revertCode: reg delete "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "MetricsReportingEnabled" /f - - name: Disable sending site information # Obselete since Microsoft Edge version 89 + name: Disable sending site information (shows "Your browser is managed") # Obselete since Microsoft Edge version 89 recommend: standard docs: - https://admx.help/?Category=EdgeChromium&Policy=Microsoft.Policies.Edge::SendSiteInfoToImproveServices @@ -1921,7 +1921,7 @@ actions: category: Chrome cleanup children: - - name: Do not share scanned software data to Google + name: Do not share scanned software data to Google (shows "Your browser is managed") recommend: standard docs: - https://www.chromium.org/administrators/policy-list-3#ChromeCleanupReportingEnabled @@ -1929,7 +1929,7 @@ actions: code: reg add "HKLM\SOFTWARE\Policies\Google\Chrome" /v "ChromeCleanupReportingEnabled" /t REG_DWORD /d 0 /f revertCode: reg delete "HKLM\SOFTWARE\Policies\Google\Chrome" /v "ChromeCleanupReportingEnabled" /f - - name: Prevent Chrome from scanning the system for cleanup + name: Prevent Chrome from scanning the system for cleanup (shows "Your browser is managed") recommend: standard docs: - https://www.chromium.org/administrators/policy-list-3#ChromeCleanupEnabled @@ -1937,7 +1937,7 @@ actions: code: reg add "HKLM\SOFTWARE\Policies\Google\Chrome" /v "ChromeCleanupEnabled" /t REG_DWORD /d 0 /f revertCode: reg delete "HKLM\SOFTWARE\Policies\Google\Chrome" /v "ChromeCleanupEnabled" /f - - name: Disable Chrome metrics reporting + name: Disable Chrome metrics reporting (shows "Your browser is managed") recommend: standard docs: https://www.stigviewer.com/stig/google_chrome_v23_windows/2013-01-11/finding/V-35780 code: reg add "HKLM\SOFTWARE\Policies\Google\Chrome" /v "MetricsReportingEnabled" /t REG_DWORD /d 0 /f