Skip to content
rasta26 edited this page Aug 1, 2024 · 3 revisions

Welcome to the -sam-app wiki!

Ring Rollout of Applications and Virtual PCs using Intune and Azure AD Attributes

Objectives

  1. Identify and segment devices and users into different deployment rings.
  2. Deploy applications and virtual PCs progressively across these rings.
  3. Ensure scalability and manage potential pitfalls.

Step-by-Step Solution

1. Define Deployment Rings

Define your deployment rings:

  • Ring 0 - IT Team
  • Ring 1 - Early Adopters
  • Ring 2 - General Population

2. Utilize Azure AD Attributes

Tag devices and users with Azure AD attributes to identify their rings:

  • extensionAttribute1 = "Ring 0"
  • extensionAttribute1 = "Ring 1"
  • extensionAttribute1 = "Ring 2"

3. Create Azure AD Groups

Create dynamic Azure AD groups based on the custom attributes for each ring.

Example Dynamic Group Rule:

(extensionAttribute1 -eq "Ring 0")


# Ring Rollout Flow with Automated Attribute Setting