Nov 22 2021 03:10 AM
Hi all,
How do I turn on safe search for google chrome through intune?
Thanks in advance
Nov 22 2021 05:15 AM - edited Nov 22 2021 05:16 AM
SolutionI would guess ingesting the admx and then something like this
./Device/Vendor/MSFT/Policy/Config/Chrome~Policy~googlechrome/ForceGoogleSafeSearch
Data type: String
Value: <enabled/>
When looking at the admx
<policy class="Both" displayName="$(string.ForceGoogleSafeSearch)" explainText="$(string.ForceGoogleSafeSearch_Explain)" key="Software\Policies\Google\Chrome" name="ForceGoogleSafeSearch" presentation="$(presentation.ForceGoogleSafeSearch)" valueName="ForceGoogleSafeSearch">
<parentCategory ref="googlechrome"/>
<supportedOn ref="SUPPORTED_WIN7"/>
<enabledValue>
<decimal value="1"/>
</enabledValue>
<disabledValue>
<decimal value="0"/>
</disabledValue>
</policy>
Nov 22 2021 06:24 AM