Functions/New-IntuneDynamicDeviceGroup.ps1

function New-IntuneDynamicDeviceGroup {
    <#
    .SYNOPSIS
        Creates a new scope tag in Intune.
 
    .DESCRIPTION
        Calls the Graph API endpoint to create a new scope tag with the given display name and description.
 
    .PARAMETER TagName
        The display name for the scope tag.
 
    .PARAMETER Description
        (Optional) A description for the scope tag.
 
    .EXAMPLE
        New-IntuneScopeTag -TagName "Finance" -Description "Scope tag for Finance devices"
    #>

    [CmdletBinding()]
    param(
        [Parameter(Mandatory = $true)]
        [string]$GroupName,

        [Parameter(Mandatory = $true)]
        [string]$Description,

        [Parameter(Mandatory = $true)]
        [string]$Query

    )

    # Check if connected to Microsoft Graph
    if (-not (Get-MgContext -ErrorAction SilentlyContinue)) {
        Write-Error "You must run Connect-IntuneGraph before calling this function."
        return
    }

    Write-Host "Create Dynamic Device Group: $GroupName" -ForegroundColor Cyan

    # Create Dynamic Device Group
    if (!(Get-MgBetaGroup -Filter "displayName eq '$GroupName'")) {
        $GroupParams = @{
            displayName                   = $GroupName
            mailEnabled                   = $false
            mailNickname                  = "2fecff89-e"
            securityEnabled               = $true
            description                   = $Description
            groupTypes                    = @(
                "DynamicMembership"
            )
            membershipRule                = "$Query"
            membershipRuleProcessingState = "On"
        }
        New-MgBetaGroup -BodyParameter $GroupParams
    }
}