Skip to content

Settings

Gil Burns edited this page Feb 1, 2026 · 1 revision

Settings

The Settings section allows you to configure global policy behavior, enable or disable device control features, and set user experience options.

Overview

Settings Overview Settings are divided into three categories:

  • Feature Settings - Enable or disable device control for specific device types
  • Global Settings - Configure default enforcement behavior
  • UX Settings - Configure user notification behavior

Accessing Settings

  1. Select Settings in the sidebar
  2. Click on Settings in the list view
  3. Configure options in the detail view

Feature Settings

Feature settings control whether device control is active for each device type.

Feature Settings

Device Types

Feature Description
Apple Device iOS devices, iPods, iPads connected via USB
Removable Media USB flash drives, external hard drives, SD cards
Bluetooth Device Bluetooth file transfer and peripherals
Portable Device MTP/PTP devices, digital cameras
Generic Device Generic device control across types

Toggle States

Each feature can be set to one of three states:

State Description
Default Uses the default (disabled)
Enabled Device control is active for this device type
Disabled Device control is inactive for this device type

Important: If a feature is disabled, rules targeting that device type will have no effect.

Recommended Configuration

For most deployments:

  • Enable Removable Media for USB drive control
  • Enable Apple Device if managing iOS device access
  • Leave Bluetooth Device and Portable Device at default unless specifically needed

Global Settings

Global settings affect the overall policy behavior.

Global Settings

Default Enforcement

Specifies what happens when a device access doesn't match any rule:

Value Description
Allow Access is permitted if no rule matches
Deny Access is blocked if no rule matches

Choosing Default Enforcement

Allow (Recommended for most cases)

  • Permissive approach - only explicitly denied access is blocked
  • Users can use devices not covered by rules
  • Easier to deploy incrementally
  • Good for: Organizations starting with device control

Deny

  • Restrictive approach - only explicitly allowed access is permitted
  • Blocks any device access not covered by a rule
  • Requires comprehensive rules for all allowed devices
  • Good for: High-security environments

UX Settings

UX (User Experience) settings control how notifications appear to users.

UX Settings

Navigation Target URL

A URL that users are directed to when they click on a device control notification. This is useful for:

  • Linking to your organization's device policy page
  • Providing instructions for requesting exceptions
  • Directing users to IT support resources

Examples:

  • https://intranet.company.com/device-policy
  • https://support.company.com/usb-request
  • https://company.sharepoint.com/IT/DevicePolicy

Note: Leave blank if you don't want notifications to be clickable.

Settings and Rule Interaction

Understanding how settings interact with rules:

Device Access Request
        │
        ▼
┌───────────────────┐
│ Feature Enabled?  │──No──► Access Allowed (no control)
└───────────────────┘
        │ Yes
        ▼
┌───────────────────┐
│ Rule Matches?     │──No──► Default Enforcement Applied
└───────────────────┘
        │ Yes
        ▼
┌───────────────────┐
│ Entry Matches?    │──No──► Next Entry / Next Rule
└───────────────────┘
        │ Yes
        ▼
   Entry Enforcement
       Applied

Common Configurations

Audit-Only Mode

Monitor device usage without blocking:

  1. Enable desired features
  2. Set Default Enforcement to Allow
  3. Create rules with Audit Allow enforcement

Block-by-Default Mode

Block all devices except explicitly allowed ones:

  1. Enable desired features
  2. Set Default Enforcement to Deny
  3. Create rules to Allow specific approved devices

Gradual Rollout

Start with monitoring, then add blocking:

Phase 1: Audit

  1. Enable features
  2. Set Default Enforcement to Allow
  3. Create rules with Audit Allow and Audit Deny
  4. Review logs to understand device usage

Phase 2: Block

  1. Update rules to use Deny enforcement
  2. Add Show Notification option for user awareness
  3. Set Navigation Target to exception request page

Tips

  • Always enable the feature before creating rules for that device type
  • Start with Allow default enforcement and audit rules
  • Set a helpful Navigation Target for user self-service
  • Test settings in a pilot group before broad deployment

Next Steps