Sykje yn Support

Mij stipescams. Wy sille jo nea freegje in telefoannûmer te beljen, der in sms nei ta te stjoeren of persoanlike gegevens te dielen. Meld fertochte aktiviteit mei de opsje ‘Misbrûk melde’.

Learn More

Dizze konversaasje is argivearre. Stel in nije fraach as jo help nedich hawwe.

Websitefilter_Exceptions policy via Intune OMA-URI can't figure out multiple sites

  • 1 antwurd
  • 0 hawwe dit probleem
  • 18 werjeftes
  • Lêste antwurd fan Mike Kaply

more options

I've successfully added all the admx profile settings we want for our deployment except I can't seem to get right syntax for adding multiple sites to the exception list. We've successfully blocked all urls in the block oma-uri but for the exception it only shows a single example not multiple. (https://github.com/mozilla/policy-templates#websitefilter site) OMA-URI:

./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/B_WebsiteFilter_Exceptions

Value (string):

<enabled/> <data id="WebsiteFilter" value="1*://*companyurl.com/*"/>

this works.. all internal sites are accessable. what i want to do is as well make these sites avail as well *://company.sharepoint.com/* accessable and

I've looked at https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Match_patterns but i can't seem to find proper format for multiple that doesn't cause line to either be ignored or errored out

any assistance would be appreciated

I've successfully added all the admx profile settings we want for our deployment except I can't seem to get right syntax for adding multiple sites to the exception list. We've successfully blocked all urls in the block oma-uri but for the exception it only shows a single example not multiple. (https://github.com/mozilla/policy-templates#websitefilter site) OMA-URI: ./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/B_WebsiteFilter_Exceptions Value (string): <enabled/> <data id="WebsiteFilter" value="1&#xF000;*://*companyurl.com/*"/> this works.. all internal sites are accessable. what i want to do is as well make these sites avail as well *://company.sharepoint.com/* accessable and *://login.microsoftonline.com/* I've looked at https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Match_patterns but i can't seem to find proper format for multiple that doesn't cause line to either be ignored or errored out any assistance would be appreciated
Keppele skermôfbyldingen

Alle antwurden (1)

more options

Array in Intune are quite annoying. You would do it like this:

``` <data id="WebsiteFilter" value="1*://*companyurl.com/*2*://company.sharepoint.com/*3*//login.microsoftonline.com/*"/> ```

Please let me know if that works