SOLVED

How to turn of safe search for chrome via intune

Steel Contributor

Hi all,

 

How do I turn on safe search for google chrome through intune? 

 

Thanks in advance

2 Replies
best response confirmed by AB21805 (Steel Contributor)
Solution

I 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>

Hi Rudy

Thank you just trying this now!
1 best response

Accepted Solutions
best response confirmed by AB21805 (Steel Contributor)
Solution

I 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>

View solution in original post