From 0cd58c235cd1e7ae278e1e7e4b30322855bc9906 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Wed, 22 Jul 2026 13:38:22 -0700 Subject: [PATCH 01/17] revert 790 --- scripts/GenerateMarkDown.ps1 | 177 +++++++---------------------------- 1 file changed, 33 insertions(+), 144 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 52498f065e01d..d7fd5d244a5ea 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -13,36 +13,6 @@ function Get-GraphMapping { $graphMapping.Add("beta", "graph-powershell-beta") return $graphMapping } - -function Get-NormalizedContent { - param ( - [ValidateNotNullOrEmpty()] - [string] $FilePath - ) - $content = Get-Content $FilePath -Raw - # Normalize line endings to LF and trim trailing whitespace - $content = $content -replace "`r`n", "`n" - $content = $content.TrimEnd() - # Strip ms.date line so date-only changes are ignored during comparison - $content = $content -replace '(?m)^ms\.date: .+$', '' - return $content -} - -function Get-DeterministicGuid { - param ( - [ValidateNotNullOrEmpty()] - [string] $InputString - ) - $bytes = [System.Text.Encoding]::UTF8.GetBytes($InputString) - $sha256 = [System.Security.Cryptography.SHA256]::Create() - try { - $hash = $sha256.ComputeHash($bytes) - return [guid]::new([byte[]]$hash[0..15]).ToString() - } finally { - $sha256.Dispose() - } -} - function Set-Help { param ( [ValidateNotNullOrEmpty()] @@ -86,11 +56,10 @@ function Start-GraphHelp { $ModulePrefix = "Microsoft.Graph" $AuthPath = "$ModulePrefix.Authentication" $AuthDestination = Join-Path $WorkLoadDocsPath "graph-powershell-1.0" $AuthPath + Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } Import-Module Microsoft.Graph.Authentication -Global $GraphMapping = Get-GraphMapping - $TempAuthDir = Join-Path ([System.IO.Path]::GetTempPath()) "GraphDocsTempAuth_$([guid]::NewGuid().ToString('N'))" - New-Item -Path $TempAuthDir -ItemType Directory -Force | Out-Null $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ $profilePath = "graph-powershell-1.0" @@ -98,34 +67,10 @@ function Start-GraphHelp { $profilePath = "graph-powershell-beta" } - # Generate all auth module docs to temp directory using module-level generation - Set-Help -ModuleDocsPath $TempAuthDir -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" - - # Compare and copy all generated auth files - $TempAuthModuleDir = Join-Path $TempAuthDir $AuthPath - if (Test-Path $TempAuthModuleDir) { - if (-not (Test-Path $AuthDestination)) { - New-Item -Path $AuthDestination -ItemType Directory -Force | Out-Null - } - Get-ChildItem -Path $TempAuthModuleDir -Filter "*.md" -File | ForEach-Object { - $tempFile = $_.FullName - $existingFile = Join-Path $AuthDestination $_.Name - if (Test-Path $existingFile) { - $existingContent = Get-NormalizedContent -FilePath $existingFile - $newContent = Get-NormalizedContent -FilePath $tempFile - if ($existingContent -ne $newContent) { - Copy-Item -Path $tempFile -Destination $existingFile -Force - Write-Host "Updated auth doc: $($_.BaseName)" - } - } else { - Copy-Item -Path $tempFile -Destination $existingFile -Force - Write-Host "Added auth doc: $($_.BaseName)" - } - } - } + $AuthenticationDocsPath = Join-Path $PSScriptRoot "..\microsoftgraph\graph-powershell-1.0" + Set-Help -ModuleDocsPath $AuthenticationDocsPath -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" Get-FolderByProfile -GraphProfile $graphProfile -GraphProfilePath $profilePath -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - Remove-Item -Path $TempAuthDir -Recurse -Force -ErrorAction SilentlyContinue git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . @@ -144,11 +89,7 @@ function Get-FolderByProfile { $ModulesToGenerate = @() ) $CommandMetadataContent = Get-Content $CmdletMetadataPath | ConvertFrom-Json - - # Create a single temp directory for this profile's generation - $TempOutputDir = Join-Path ([System.IO.Path]::GetTempPath()) "GraphDocsTemp_$([guid]::NewGuid().ToString('N'))" - New-Item -Path $TempOutputDir -ItemType Directory -Force | Out-Null - + $ModulesToGenerate | ForEach-Object { $ModuleName = $_ Write-Host $ModuleName @@ -163,104 +104,52 @@ function Get-FolderByProfile { if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } - + + Get-ChildItem -Path $Destination * -File -Recurse | foreach { $_.Delete() } $CmdletCount = 0 - $MetadataCommands = @{} - - # Generate table of contents for each module using a deterministic GUID + # Generate table of contents for each module $TocFileName = "$Path.md" - $ModuleGuid = Get-DeterministicGuid -InputString $Path + $ModuleGuid = [guid]::NewGuid().ToString() $LinkProfile = $GraphProfile.Replace("v", "") $LinkModuleName = $Path.ToLower() $HelpVersion = "1.0.0.0" $HelpLocale = "en-US" - $DownloadLink = "https://learn.microsoft.com/en-us/powershell/module/$LinkModuleName/?view=graph-powershell-$LinkProfile" - - # Build TOC content in memory to compare before writing - $TocContent = @() - $TocContent += "---" - $TocContent += "Module Name: $Path" - $TocContent += "Module Guid: $ModuleGuid" - $TocContent += "Download Help Link: $DownloadLink" - $TocContent += "Help Version: $HelpVersion" - $TocContent += "Locale: $HelpLocale" - $TocContent += "---" - $TocContent += "" - $TocContent += "# $Path Module" - $TocContent += "## Description" - $TocContent += "Microsoft Graph PowerShell Cmdlets" - $TocContent += "" - $TocContent += "## $Path Cmdlets" - + $DownloadLink = "https://learn.microsoft.com/en-us/powershell/module/$LinkModuleName/?view=graph-powershell-$LinkProfile" + New-Item -Path $Destination -Name $TocFileName -ItemType File -Force + Add-Content -Path $Destination\$TocFileName -Value "---" + Add-Content -Path $Destination\$TocFileName -Value "Module Name: $Path" + Add-Content -Path $Destination\$TocFileName -Value "Module Guid: $ModuleGuid" + Add-Content -Path $Destination\$TocFileName -Value "Download Help Link: $DownloadLink" + Add-Content -Path $Destination\$TocFileName -Value "Help Version: $HelpVersion" + Add-Content -Path $Destination\$TocFileName -Value "Locale: $HelpLocale" + Add-Content -Path $Destination\$TocFileName -Value "---" + Add-Content -Path $Destination\$TocFileName -Value "" + Add-Content -Path $Destination\$TocFileName -Value "# $Path Module" + Add-Content -Path $Destination\$TocFileName -Value "## Description" + Add-Content -Path $Destination\$TocFileName -Value "Microsoft Graph PowerShell Cmdlets" + Add-Content -Path $Destination\$TocFileName -Value "" + Add-Content -Path $Destination\$TocFileName -Value "## $Path Cmdlets" $CommandMetadataContent | Where-Object { $_.Module -eq $ModName -and $_.ApiVersion -eq $GraphProfile } | ForEach-Object { $Command = $_.Command - $MetadataCommands[$Command] = $true $CmdletDocsPath = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path "$Command.md" - - # Generate to temp directory and compare with existing - if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { - Set-Help -ModuleDocsPath $TempOutputDir -Command $Command -Module $Path - $TempFilePath = Join-Path $TempOutputDir $Path "$Command.md" - if (Test-Path $TempFilePath) { - if (Test-Path $CmdletDocsPath) { - $existingContent = Get-NormalizedContent -FilePath $CmdletDocsPath - $newContent = Get-NormalizedContent -FilePath $TempFilePath - if ($existingContent -ne $newContent) { - Copy-Item -Path $TempFilePath -Destination $CmdletDocsPath -Force - Write-Host "Updated: $Command" - } - } else { - Copy-Item -Path $TempFilePath -Destination $CmdletDocsPath -Force - Write-Host "Added: $Command" - } + if (-not(Test-Path $CmdletDocsPath)) { + if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { + Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path + } else { + Write-Warning "Cmdlet $Command is not available." } - } elseif (-not (Test-Path $CmdletDocsPath)) { - Write-Warning "Cmdlet $Command is not available." + } - - $TocContent += "### [$Command]($Command.md)" - $TocContent += "" + Add-Content -Path $Destination\$TocFileName -Value "### [$Command]($Command.md)" + Add-Content -Path $Destination\$TocFileName -Value "" $CmdletCount++ } - - if ($CmdletCount -eq 0) { + if($CmdletCount -eq 0){ Remove-Item -LiteralPath $Destination -Force -Recurse - } else { - # Only write TOC if content has changed - $TocFilePath = Join-Path $Destination $TocFileName - $newTocText = ($TocContent -join "`r`n") + "`r`n" - if (Test-Path $TocFilePath) { - $existingTocText = Get-Content $TocFilePath -Raw - # Normalize both to LF for comparison - $existingNormalized = $existingTocText -replace "`r`n", "`n" - $newNormalized = $newTocText -replace "`r`n", "`n" - if ($existingNormalized.TrimEnd() -ne $newNormalized.TrimEnd()) { - $newTocText | Out-File $TocFilePath -Encoding UTF8 -NoNewline - Write-Host "Updated TOC: $TocFileName" - } - } else { - $newTocText | Out-File $TocFilePath -Encoding UTF8 -NoNewline - Write-Host "Added TOC: $TocFileName" - } - - # Remove orphaned docs — files for commands no longer in metadata - Get-ChildItem -Path $Destination -Filter "*.md" -File | Where-Object { - $cmdName = $_.BaseName - -not $MetadataCommands.ContainsKey($cmdName) -and $_.Name -ne $TocFileName - } | ForEach-Object { - Write-Host "Removing orphaned doc: $($_.Name)" - Remove-Item $_.FullName -Force - } } - # Clean up temp module folder for this iteration - $TempModuleDir = Join-Path $TempOutputDir $Path - if (Test-Path $TempModuleDir) { - Remove-Item -Path $TempModuleDir -Recurse -Force -ErrorAction SilentlyContinue - } } - - Remove-Item -Path $TempOutputDir -Recurse -Force -ErrorAction SilentlyContinue + } # Install PlatyPS Install-Module -Name Microsoft.PowerShell.PlatyPS -Force From e6db7aca807cfefd0501cd38834b6fa3f6728b39 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Wed, 22 Jul 2026 13:43:12 -0700 Subject: [PATCH 02/17] remove stabilize msdate from pipeline --- azure-pipelines/powershell-docs.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/azure-pipelines/powershell-docs.yml b/azure-pipelines/powershell-docs.yml index c0304ad79ada1..603004858ab45 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -158,14 +158,6 @@ extends: targetType: 'filePath' pwsh: true filePath: scripts/CorrectRelatedLinks-AllFiles.ps1 - - task: PowerShell@2 - displayName: 'Stabilize ms.date values' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/StabilizeMsDate.ps1 - errorActionPreference: 'stop' - task: AzureKeyVault@2 displayName: "Azure Key Vault: Get GitHub App secrets" inputs: From 73a8c601468325d6a6906f1c357449e9cc7d5eba Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 24 Jul 2026 02:01:17 -0700 Subject: [PATCH 03/17] Prevent mass doc deletion when Graph modules fail to load Guard GenerateMarkDown.ps1 so a module's docs are only deleted when the module is available to regenerate them. Skip-and-preserve per workload module, and abort if Authentication is unavailable, avoiding refresh PRs that delete thousands of docs after a failed module install. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/GenerateMarkDown.ps1 | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index d7fd5d244a5ea..8c4b03f16ddf8 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -56,9 +56,15 @@ function Start-GraphHelp { $ModulePrefix = "Microsoft.Graph" $AuthPath = "$ModulePrefix.Authentication" $AuthDestination = Join-Path $WorkLoadDocsPath "graph-powershell-1.0" $AuthPath + + # Guard against catastrophic deletions: never remove existing docs unless the module + # is available to regenerate them. Authentication is required for every run, so abort + # if it failed to install rather than wiping committed documentation. + if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable -ErrorAction SilentlyContinue)) { + throw "Microsoft.Graph.Authentication module is not available. Aborting generation to avoid deleting existing documentation." + } + Import-Module Microsoft.Graph.Authentication -Force -Global Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } - - Import-Module Microsoft.Graph.Authentication -Global $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ @@ -101,6 +107,16 @@ function Get-FolderByProfile { } $Destination = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path $DocsDestination = Join-Path $WorkLoadDocsPath $GraphProfilePath + + # Guard against catastrophic deletions: if the module failed to install/import, + # skip it entirely so its committed docs are preserved instead of being deleted + # and never regenerated (which is what produced the mass-deletion refresh PRs). + if (-not (Get-Module -Name $Path -ListAvailable -ErrorAction SilentlyContinue)) { + Write-Warning "Module $Path is not available; skipping to preserve existing documentation." + return + } + Import-Module $Path -Force -Global -ErrorAction SilentlyContinue + if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } From 07657def287d803ad342c41d6f0061804d49781b Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 24 Jul 2026 02:09:19 -0700 Subject: [PATCH 04/17] Normalize generated-commit author to Graph DevX Tooling bot EscapeDisallowedHtmlTags.ps1 and RemoveInvalidFullStops.ps1 hardcoded a personal git identity, so their stage commits in the weekly refresh PRs were attributed to an individual instead of the tooling bot. Align both with the other generation scripts. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/EscapeDisallowedHtmlTags.ps1 | 4 ++-- scripts/RemoveInvalidFullStops.ps1 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/EscapeDisallowedHtmlTags.ps1 b/scripts/EscapeDisallowedHtmlTags.ps1 index 7f2d4079ff9da..597d7a5633f81 100644 --- a/scripts/EscapeDisallowedHtmlTags.ps1 +++ b/scripts/EscapeDisallowedHtmlTags.ps1 @@ -23,8 +23,8 @@ function EscapeDisallowedHtmlTags { Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - git config --global user.email "timwamalwa@gmail.com" - git config --global user.name "Timothy Wamalwa" + git config --global user.email "GraphTooling@service.microsoft.com" + git config --global user.name "Microsoft Graph DevX Tooling" git add . git commit -m "Escaped disallowed html tags" } diff --git a/scripts/RemoveInvalidFullStops.ps1 b/scripts/RemoveInvalidFullStops.ps1 index 37be47e7c73df..db34789d58025 100644 --- a/scripts/RemoveInvalidFullStops.ps1 +++ b/scripts/RemoveInvalidFullStops.ps1 @@ -23,8 +23,8 @@ function Remove-InvalidFullStops { Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - git config --global user.email "timwamalwa@gmail.com" - git config --global user.name "Timothy Wamalwa" + git config --global user.email "GraphTooling@service.microsoft.com" + git config --global user.name "Microsoft Graph DevX Tooling" git add . git commit -m "Removed invalid full stops from the beginning of lines" } From 29c4a42a5ee11cabad11dfec978623090f64c623 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Tue, 28 Jul 2026 11:36:40 -0700 Subject: [PATCH 05/17] Fix duplicated doc enrichment blocks and BOM churn in generation - UpdateLinks.ps1: only insert the beta/v1 '[!NOTE]' link when it is not already present, so weekly runs stop stacking duplicate note blocks. - GeneratePermissionsTable.ps1: skip files that already contain a '**Permissions**' table instead of prepending another copy each run. - GenerateMarkDown.ps1: write PlatyPS output as UTF-8 without BOM so every regenerated file no longer diffs on a leading BOM. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/GenerateMarkDown.ps1 | 4 ++-- scripts/GeneratePermissionsTable.ps1 | 7 ++++++- scripts/UpdateLinks.ps1 | 6 +++++- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 8c4b03f16ddf8..3aaae05dc9f8d 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -27,7 +27,7 @@ function Set-Help { Command = (Get-Command $Command) OutputFolder = $ModuleDocsPath Force = $true - Encoding = [System.Text.Encoding]::UTF8 + Encoding = [System.Text.UTF8Encoding]::new($false) } if ($Module -eq "Microsoft.Graph.Authentication") { @@ -35,7 +35,7 @@ function Set-Help { Module = (Get-Module $Module) OutputFolder = $ModuleDocsPath WithModulePage = $true - Encoding = [System.Text.Encoding]::UTF8 + Encoding = [System.Text.UTF8Encoding]::new($false) } Import-Module $Module -Force -Global } diff --git a/scripts/GeneratePermissionsTable.ps1 b/scripts/GeneratePermissionsTable.ps1 index aeca973f7f228..47e90ae3698f8 100644 --- a/scripts/GeneratePermissionsTable.ps1 +++ b/scripts/GeneratePermissionsTable.ps1 @@ -136,7 +136,12 @@ function New-ReferenceTable { "@; - if ((Get-Content -Raw -Path $File) -match '(## DESCRIPTION)[\s\S]*## EXAMPLES') { + if ((Get-Content -Raw -Path $File) -match '\*\*Permissions\*\*') { + # A permissions table has already been inserted on a previous run. + # Skip to avoid prepending a duplicate '**Permissions**' block. + Write-Host "Skipping $CommandName as it already has a permissions table"; + } + elseif ((Get-Content -Raw -Path $File) -match '(## DESCRIPTION)[\s\S]*## EXAMPLES') { $Link = "**Permissions**`r`n`n$markdownTable`r`n`n## EXAMPLES" (Get-Content $File) | Foreach-Object { $_ -replace '## EXAMPLES', $Link } | diff --git a/scripts/UpdateLinks.ps1 b/scripts/UpdateLinks.ps1 index f7edf3e93bcd6..fcc8d8e2253b2 100644 --- a/scripts/UpdateLinks.ps1 +++ b/scripts/UpdateLinks.ps1 @@ -175,7 +175,11 @@ function Add-Link { $Folder = $View.Split("=")[1] $ConfirmFile = Join-Path $WorkLoadDocsPath "$Folder" "$ModuleName" "$CommandRename.md" $ConfirmCommandAvailability = Find-MgGraphCommand -Command $CommandRename - if ($ConfirmCommandAvailability -and (Test-Path $ConfirmFile)) { + # Only insert the note if it isn't already present, otherwise every run + # prepends another copy of the same '[!NOTE]' block before '## SYNTAX'. + $NoteMarker = "$LinkTitle [$CommandRename]($BaseUrl/$FullModuleName$View)" + $AlreadyLinked = (Get-Content -Raw -Path $File) -match [regex]::Escape($NoteMarker) + if ($ConfirmCommandAvailability -and (Test-Path $ConfirmFile) -and -not $AlreadyLinked) { (Get-Content $File) | Foreach-Object { $_ -replace '## SYNTAX', $Link } | Out-File $File From a94085a9f3a84c441f3ed86dc5714407d8654618 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Tue, 28 Jul 2026 12:15:46 -0700 Subject: [PATCH 06/17] Force LF line endings for generated markdown docs Add '*.md text eol=lf' to .gitattributes so PlatyPS/transform scripts, which run on Windows and emit CRLF, no longer produce line-ending churn in the weekly refresh PRs. Index blobs are already LF, so this only pins the working-tree checkout and future writes to LF. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- .gitattributes | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitattributes b/.gitattributes index 9fb85ec49f011..ff067eed84e37 100644 --- a/.gitattributes +++ b/.gitattributes @@ -9,6 +9,10 @@ # Declare files that will always have CRLF line endings on checkout. *.sln text eol=crlf +# Reference docs are generated by PlatyPS/transform scripts on Windows. +# Force LF so regenerated markdown never churns the diff with CRLF endings. +*.md text eol=lf + # Denote all files that are truly binary and should not be modified. *.png binary *.jpg binary \ No newline at end of file From 19a3a1a450a7ffe97d24ef506837f842c15293e7 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Wed, 29 Jul 2026 11:57:43 -0700 Subject: [PATCH 07/17] Prevent mass doc deletion by overwriting in place and removing only orphans Bulk-deleting a module's docs before regenerating meant any transient import failure (installed but unimportable module, e.g. Authentication version conflict) wiped docs that were never regenerated, producing refresh PRs with thousands of missing files. Now: verify the module truly imports and exposes commands before processing (skip-and-preserve otherwise), overwrite each doc in place, and remove only genuine orphans whose command is no longer in the metadata. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/GenerateMarkDown.ps1 | 56 +++++++++++++++++++++++++----------- 1 file changed, 40 insertions(+), 16 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 3aaae05dc9f8d..0d5a062bef429 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -63,7 +63,7 @@ function Start-GraphHelp { if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable -ErrorAction SilentlyContinue)) { throw "Microsoft.Graph.Authentication module is not available. Aborting generation to avoid deleting existing documentation." } - Import-Module Microsoft.Graph.Authentication -Force -Global + Import-Module Microsoft.Graph.Authentication -Force -Global -ErrorAction Stop Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { @@ -108,21 +108,37 @@ function Get-FolderByProfile { $Destination = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path $DocsDestination = Join-Path $WorkLoadDocsPath $GraphProfilePath - # Guard against catastrophic deletions: if the module failed to install/import, - # skip it entirely so its committed docs are preserved instead of being deleted + # Guard against catastrophic deletions. A module can be installed yet fail to + # import (e.g. an Authentication version conflict), and ListAvailable alone does + # not catch that. Verify the module actually imports AND exposes commands; if it + # does not, skip it so its committed docs are preserved instead of being wiped # and never regenerated (which is what produced the mass-deletion refresh PRs). - if (-not (Get-Module -Name $Path -ListAvailable -ErrorAction SilentlyContinue)) { - Write-Warning "Module $Path is not available; skipping to preserve existing documentation." + $ModuleUsable = $false + if (Get-Module -Name $Path -ListAvailable -ErrorAction SilentlyContinue) { + try { + Import-Module $Path -Force -Global -ErrorAction Stop + if (Get-Command -Module $Path -ErrorAction SilentlyContinue) { + $ModuleUsable = $true + } + } catch { + Write-Warning "Module $Path failed to import: $($_.Exception.Message)" + } + } + if (-not $ModuleUsable) { + Write-Warning "Module $Path is not usable; skipping to preserve existing documentation." return } - Import-Module $Path -Force -Global -ErrorAction SilentlyContinue if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } - - Get-ChildItem -Path $Destination * -File -Recurse | foreach { $_.Delete() } + + # NOTE: docs are intentionally NOT bulk-deleted here. Each doc is overwritten in + # place as it is regenerated, and only genuine orphans (commands no longer in the + # metadata) are removed afterwards. This guarantees that a transient generation + # failure can never wipe a module's documentation. $CmdletCount = 0 + $MetadataCommands = @{} # Generate table of contents for each module $TocFileName = "$Path.md" $ModuleGuid = [guid]::NewGuid().ToString() @@ -147,19 +163,27 @@ function Get-FolderByProfile { Add-Content -Path $Destination\$TocFileName -Value "## $Path Cmdlets" $CommandMetadataContent | Where-Object { $_.Module -eq $ModName -and $_.ApiVersion -eq $GraphProfile } | ForEach-Object { $Command = $_.Command - $CmdletDocsPath = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path "$Command.md" - if (-not(Test-Path $CmdletDocsPath)) { - if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { - Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path - } else { - Write-Warning "Cmdlet $Command is not available." - } - + $MetadataCommands[$Command] = $true + if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { + Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path + } else { + Write-Warning "Cmdlet $Command is not available." } Add-Content -Path $Destination\$TocFileName -Value "### [$Command]($Command.md)" Add-Content -Path $Destination\$TocFileName -Value "" $CmdletCount++ } + + # Remove only genuine orphans: docs whose command is no longer in the metadata. + # Docs for commands still in metadata are preserved even if this run failed to + # regenerate them, so a bad run cannot delete valid documentation. + Get-ChildItem -Path $Destination -Filter "*.md" -File | Where-Object { + $_.Name -ne $TocFileName -and -not $MetadataCommands.ContainsKey($_.BaseName) + } | ForEach-Object { + Write-Host "Removing orphaned doc: $($_.Name)" + Remove-Item $_.FullName -Force + } + if($CmdletCount -eq 0){ Remove-Item -LiteralPath $Destination -Force -Recurse } From 00db04466cdc97b8fcbf4298c23497504bb7fd81 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Thu, 30 Jul 2026 17:20:46 -0700 Subject: [PATCH 08/17] Refactor weekly docs pipeline into isolated per-module stages Each Graph workload module now generates in its own Azure DevOps stage per SDK profile (~86 independent stages), giving every module a fresh agent and a clean assembly-load context. This structurally eliminates the "assembly with same name is already loaded" collisions that produced mass-deletion / no-op refresh PRs. - GenerateMarkDown.ps1: add -GraphProfileFilter and -ModuleFilter scoping; in scoped runs do a complete delete + full regen of the single module, throw before any deletion on import failure (fail-safe), and emit a ModuleGenerated signal only on success. - 9 post-processing scripts: add matching profile/module scoping and empty-commit guards so each touches only the target module folder. - update-template.yml: parameterized install (InstallProfile/Module) that installs only Authentication + the single workload submodule for isolated runs; install failures warn instead of failing. - New common-templates/generate-module-docs-steps.yml: full single-module sequence (install -> generate -> post-process -> push -> PR). Generate step is continueOnError and every later step is gated on ModuleGenerated, so a failing module deletes nothing, opens no PR, and never fails the overall pipeline. - New common-templates/module-stages.yml: emits one dependsOn:[] stage per module. - powershell-docs.yml: invoke module-stages.yml for v1.0 (incl. Authentication) and beta; each stage opens its own pull request. ms.date changes every run (StabilizeMsDate is intentionally not run) for reviewable PRs. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- .../generate-module-docs-steps.yml | 219 ++++++++++++++++ .../common-templates/module-stages.yml | 50 ++++ azure-pipelines/powershell-docs.yml | 248 ++++++++---------- azure-pipelines/update-template.yml | 60 ++++- scripts/CorrectRelatedLinks-AllFiles.ps1 | 10 +- scripts/EscapeDisallowedHtmlTags.ps1 | 16 +- scripts/GenerateAliasedDocs.ps1 | 11 +- scripts/GenerateMarkDown.ps1 | 93 +++++-- scripts/GeneratePermissionsTable.ps1 | 15 +- scripts/MsSubserviceUpdate.ps1 | 7 +- scripts/RemoveBoilerPlateCode.ps1 | 34 ++- scripts/RemoveInvalidFullStops.ps1 | 16 +- .../RepairExamplesDescriptionsAndTitle.ps1 | 14 +- scripts/UpdateLinks.ps1 | 9 +- 14 files changed, 600 insertions(+), 202 deletions(-) create mode 100644 azure-pipelines/common-templates/generate-module-docs-steps.yml create mode 100644 azure-pipelines/common-templates/module-stages.yml diff --git a/azure-pipelines/common-templates/generate-module-docs-steps.yml b/azure-pipelines/common-templates/generate-module-docs-steps.yml new file mode 100644 index 0000000000000..290ee79651d59 --- /dev/null +++ b/azure-pipelines/common-templates/generate-module-docs-steps.yml @@ -0,0 +1,219 @@ +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. +# +# Reusable steps that generate and post-process documentation for a SINGLE module in a SINGLE +# SDK profile, then open a dedicated pull request for it. Designed to run inside an isolated +# per-module stage so an import/assembly conflict for one module can never affect another. +# +# Failure containment: the generate step runs with continueOnError, and every step after it is +# gated on the ModuleGenerated variable (set only when generation actually succeeds). If the +# module fails to import, nothing is deleted, no PR is opened, and the stage is marked +# partially-succeeded WITHOUT failing the overall pipeline or any other module's stage. + +parameters: + - name: Module + type: string + - name: GraphProfileFilter + type: string + - name: BranchPrefix + type: string + default: WeeklyDocs + - name: BaseBranch + type: string + default: main + +steps: + - template: ../update-template.yml + parameters: + InstallProfile: ${{ parameters.GraphProfileFilter }} + Module: ${{ parameters.Module }} + + - task: PowerShell@2 + name: ComputeBranch + displayName: 'Compute branch name' + inputs: + targetType: 'inline' + pwsh: true + script: | + git submodule update --init --recursive + $branch = "{0}-{1}-{2}_{3}" -f "${{ parameters.BranchPrefix }}", "${{ parameters.GraphProfileFilter }}", "${{ parameters.Module }}", (Get-Date -Format yyyyMMddHHmm) + Write-Host "Compute branch: $branch" + Write-Host "##vso[task.setvariable variable=ModuleBranch;isOutput=true]$branch" + + - task: Bash@3 + displayName: 'Create module refresh branch' + inputs: + targetType: inline + script: | + git status + git branch $(ComputeBranch.ModuleBranch) + git checkout $(ComputeBranch.ModuleBranch) + git status + + - task: PowerShell@2 + displayName: 'Create missing external docs folder' + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/CreateExternalDocsFolder.ps1 + + - task: PowerShell@2 + name: GenerateDocs + displayName: 'Generate markdown (${{ parameters.Module }} / ${{ parameters.GraphProfileFilter }})' + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/GenerateMarkDown.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Escape disallowed html tags' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/EscapeDisallowedHtmlTags.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Update metadata header' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/MsSubserviceUpdate.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Generate permissions table' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/GeneratePermissionsTable.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Update Links' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/UpdateLinks.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Repair Examples and Descriptions and Title' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/RepairExamplesDescriptionsAndTitle.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Remove boiler plate code' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/RemoveBoilerPlateCode.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Remove invalid fullstops' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/RemoveInvalidFullStops.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Generate missing docs for aliased cmdlets' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/GenerateAliasedDocs.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Correct related links section' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/CorrectRelatedLinks-AllFiles.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: AzureKeyVault@2 + displayName: "Azure Key Vault: Get GitHub App secrets" + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + inputs: + azureSubscription: "Federated AKV Managed Identity Connection" + KeyVaultName: akv-prod-eastus + SecretsFilter: "microsoft-graph-devx-bot-appid,microsoft-graph-devx-bot-privatekey" + + - task: PowerShell@2 + displayName: 'Push ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }}) branch' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + env: + GhAppId: $(microsoft-graph-devx-bot-appid) + GhAppKey: $(microsoft-graph-devx-bot-privatekey) + inputs: + targetType: inline + pwsh: true + script: | + git config --global user.email "GraphTooling@service.microsoft.com" + git config --global user.name "Microsoft Graph DevX Tooling" + git config --system core.longpaths true + # The microsoft-graph-devx-bot GitHub App must have contents:write on this repo. + $token = & "$(Build.SourcesDirectory)/scripts/Generate-Github-Token.ps1" -AppClientId $env:GhAppId -AppPrivateKeyContents $env:GhAppKey -Repository "MicrosoftDocs/microsoftgraph-docs-powershell" + if ([string]::IsNullOrWhiteSpace($token)) { throw "Failed to generate GitHub App installation token." } + # Mask the token so it is never surfaced in pipeline logs. + Write-Host "##vso[task.setsecret]$token" + git status + git add . + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Updating reference docs for ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }})" + } + else { + $global:LASTEXITCODE = 0 + } + git push --set-upstream "https://x-access-token:$token@github.com/MicrosoftDocs/microsoftgraph-docs-powershell.git" $(ComputeBranch.ModuleBranch) + git status + + - task: PowerShell@2 + displayName: 'Create PR for ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }})' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + env: + GhAppId: $(microsoft-graph-devx-bot-appid) + GhAppKey: $(microsoft-graph-devx-bot-privatekey) + inputs: + targetType: inline + pwsh: true + script: | + $BaseBranchName = "${{ parameters.BaseBranch }}" + $Head = "MicrosoftDocs:$(ComputeBranch.ModuleBranch)" + $Title = "Weekly Docs Refresh: ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }})" + $Body = "This pull request was automatically created by Azure Pipelines for the ``${{ parameters.Module }}`` module (``${{ parameters.GraphProfileFilter }}`` profile). **Important** Check for unexpected deletions or changes in this PR." + # The microsoft-graph-devx-bot GitHub App must have pull_requests:write on this repo. + $env:GITHUB_TOKEN = & "$(Build.SourcesDirectory)/scripts/Generate-Github-Token.ps1" -AppClientId $env:GhAppId -AppPrivateKeyContents $env:GhAppKey -Repository "MicrosoftDocs/microsoftgraph-docs-powershell" + if ([string]::IsNullOrWhiteSpace($env:GITHUB_TOKEN)) { throw "Failed to generate GitHub App installation token." } + # Mask the token so it is never surfaced in pipeline logs. + Write-Host "##vso[task.setsecret]$env:GITHUB_TOKEN" + gh pr create -t $Title -b $Body -B $BaseBranchName -H $Head diff --git a/azure-pipelines/common-templates/module-stages.yml b/azure-pipelines/common-templates/module-stages.yml new file mode 100644 index 0000000000000..f8a1f19f2cfc1 --- /dev/null +++ b/azure-pipelines/common-templates/module-stages.yml @@ -0,0 +1,50 @@ +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. +# +# Emits one fully independent stage per module for a given SDK profile. Each stage runs on its +# own agent (clean assembly-load context), generates + post-processes docs for that single +# module, and opens its own pull request. All stages have dependsOn: [] so they run in +# parallel and one module can never block or fail another. + +parameters: + - name: GraphProfileFilter + type: string + # Short label used in stage names (stage names cannot contain '.'), e.g. "v1" or "beta". + - name: ProfileLabel + type: string + - name: Modules + type: object + default: [] + - name: BranchPrefix + type: string + default: WeeklyDocs + - name: BaseBranch + type: string + default: main + - name: PipelineTimeout + type: number + default: 120 + +stages: + - ${{ each module in parameters.Modules }}: + - stage: "Gen_${{ parameters.ProfileLabel }}_${{ replace(module, '.', '_') }}" + displayName: '${{ parameters.GraphProfileFilter }} - ${{ module }}' + dependsOn: [] + jobs: + - job: GenerateModuleDocs + timeoutInMinutes: ${{ parameters.PipelineTimeout }} + templateContext: + outputs: + - output: pipelineArtifact + displayName: 'Publish missing external docs' + targetPath: missingexternaldocsurl + artifactName: "MissingExternalDocs-${{ parameters.ProfileLabel }}-${{ replace(module, '.', '-') }}" + publishLocation: 'Container' + condition: succeededOrFailed() + steps: + - template: generate-module-docs-steps.yml + parameters: + Module: ${{ module }} + GraphProfileFilter: ${{ parameters.GraphProfileFilter }} + BranchPrefix: ${{ parameters.BranchPrefix }} + BaseBranch: ${{ parameters.BaseBranch }} diff --git a/azure-pipelines/powershell-docs.yml b/azure-pipelines/powershell-docs.yml index 603004858ab45..b6dc5b22f8b9b 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -47,148 +47,106 @@ extends: customBuildTags: - ES365AIMigrationTooling stages: - - stage: stage - jobs: - - job: PowerShellDocsUpdate - timeoutInMinutes: ${{ parameters.PipelineTimeout }} - templateContext: - outputs: - - output: pipelineArtifact - displayName: 'Publish Examples to be reviewed as artifact' - targetPath: missingexternaldocsurl - artifactName: 'MissingExternalDocs' - publishLocation: 'Container' - steps: - - template: azure-pipelines/update-template.yml@self - - task : PowerShell@2 - name: "ComputeBranch" - displayName: 'Compute Branch Name' - inputs: - targetType: 'inline' - script: | - git submodule update --init --recursive - $branch = "{0}_{1}" -f "WeeklyReferenceDocsUpdate", (Get-Date -Format yyyyMMddHHmm) - Write-Host "Compute branch: $branch" - Write-Host "##vso[task.setvariable variable=WeeklyReferenceDocsBranch;isOutput=true]$branch" - - task: Bash@3 - displayName: "Create weekly refresh branch" - inputs: - targetType: inline - script: | - git status - git branch $(ComputeBranch.WeeklyReferenceDocsBranch) - git checkout $(ComputeBranch.WeeklyReferenceDocsBranch) - git status - - task: PowerShell@2 - displayName: 'Create missing external docs folder' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/CreateExternalDocsFolder.ps1 - - - task: PowerShell@2 - displayName: 'Generate markdown files from PowerShell help files' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/GenerateMarkDown.ps1 - - task: PowerShell@2 - displayName: 'Escape disallowed html tags' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/EscapeDisallowedHtmlTags.ps1 - - task: PowerShell@2 - displayName: 'Update metadata header' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/MsSubserviceUpdate.ps1 - - task: PowerShell@2 - displayName: 'Generate permissions table' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/GeneratePermissionsTable.ps1 - - task: PowerShell@2 - displayName: 'Update Links' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/UpdateLinks.ps1 - errorActionPreference: 'stop' - - task: PowerShell@2 - displayName: 'Repair Examples and Descriptions and Title' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/RepairExamplesDescriptionsAndTitle.ps1 - - task: PowerShell@2 - displayName: 'Remove boiler plate code' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/RemoveBoilerPlateCode.ps1 - - task: PowerShell@2 - displayName: 'Remove invalid fullstops' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/RemoveInvalidFullStops.ps1 - - task: PowerShell@2 - displayName: 'Generate missing docs for aliased cmdlets' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/GenerateAliasedDocs.ps1 - - task: PowerShell@2 - displayName: 'Correct related links section' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/CorrectRelatedLinks-AllFiles.ps1 - - task: AzureKeyVault@2 - displayName: "Azure Key Vault: Get GitHub App secrets" - inputs: - azureSubscription: "Federated AKV Managed Identity Connection" - KeyVaultName: akv-prod-eastus - SecretsFilter: "microsoft-graph-devx-bot-appid,microsoft-graph-devx-bot-privatekey" - - task: PowerShell@2 - displayName: Pushing to github - env: - GhAppId: $(microsoft-graph-devx-bot-appid) - GhAppKey: $(microsoft-graph-devx-bot-privatekey) - inputs: - targetType: inline - pwsh: true - script: | - git config --global user.email "GraphTooling@service.microsoft.com" - git config --global user.name "Microsoft Graph DevX Tooling" - git config --system core.longpaths true - # The microsoft-graph-devx-bot GitHub App must have contents:write on this repo. - $token = & "$(Build.SourcesDirectory)/scripts/Generate-Github-Token.ps1" -AppClientId $env:GhAppId -AppPrivateKeyContents $env:GhAppKey -Repository "MicrosoftDocs/microsoftgraph-docs-powershell" - if ([string]::IsNullOrWhiteSpace($token)) { throw "Failed to generate GitHub App installation token." } - # Mask the token so it is never surfaced in pipeline logs. - Write-Host "##vso[task.setsecret]$token" - git status - git add . - git commit -m "Updating reference docs" - git push --set-upstream "https://x-access-token:$token@github.com/MicrosoftDocs/microsoftgraph-docs-powershell.git" $(ComputeBranch.WeeklyReferenceDocsBranch) - git status - - template: azure-pipelines/common-templates/create-pr.yml@self - parameters: - BaseBranch: "main" - TargetBranch: $(ComputeBranch.WeeklyReferenceDocsBranch) - Title: "Weekly PowerShell Microsoft Graph Reference Docs Refresh" - Body: "This pull request was automatically created by Azure Pipelines. **Important** Check for unexpected deletions or changes in this PR." \ No newline at end of file + - template: azure-pipelines/common-templates/module-stages.yml@self + parameters: + GraphProfileFilter: "v1.0" + ProfileLabel: "v1" + BranchPrefix: "WeeklyDocs" + BaseBranch: "main" + PipelineTimeout: ${{ parameters.PipelineTimeout }} + Modules: + - Authentication + - Applications + - Bookings + - BusinessScenario + - BackupRestore + - Calendar + - ChangeNotifications + - CloudCommunications + - Compliance + - CrossDeviceExperiences + - Devices.CloudPrint + - Devices.CorporateManagement + - Devices.ServiceAnnouncement + - DeviceManagement + - DeviceManagement.Administration + - DeviceManagement.Enrollment + - DeviceManagement.Actions + - DeviceManagement.Functions + - DirectoryObjects + - Education + - Files + - Financials + - Groups + - Identity.DirectoryManagement + - Identity.Governance + - Identity.SignIns + - Identity.Partner + - Mail + - ManagedTenants + - NetworkAccess + - Notes + - People + - PersonalContacts + - Planner + - Reports + - SchemaExtensions + - Search + - Security + - Sites + - Teams + - Users + - Users.Actions + - Users.Functions + - WindowsUpdates + - template: azure-pipelines/common-templates/module-stages.yml@self + parameters: + GraphProfileFilter: "beta" + ProfileLabel: "beta" + BranchPrefix: "WeeklyDocs" + BaseBranch: "main" + PipelineTimeout: ${{ parameters.PipelineTimeout }} + Modules: + - Applications + - Bookings + - BusinessScenario + - BackupRestore + - Calendar + - ChangeNotifications + - CloudCommunications + - Compliance + - CrossDeviceExperiences + - Devices.CloudPrint + - Devices.CorporateManagement + - Devices.ServiceAnnouncement + - DeviceManagement + - DeviceManagement.Administration + - DeviceManagement.Enrollment + - DeviceManagement.Actions + - DeviceManagement.Functions + - DirectoryObjects + - Education + - Files + - Financials + - Groups + - Identity.DirectoryManagement + - Identity.Governance + - Identity.SignIns + - Identity.Partner + - Mail + - ManagedTenants + - NetworkAccess + - Notes + - People + - PersonalContacts + - Planner + - Reports + - SchemaExtensions + - Search + - Security + - Sites + - Teams + - Users + - Users.Actions + - Users.Functions + - WindowsUpdates diff --git a/azure-pipelines/update-template.yml b/azure-pipelines/update-template.yml index cd0ec7be60216..8884e887a9aae 100644 --- a/azure-pipelines/update-template.yml +++ b/azure-pipelines/update-template.yml @@ -1,3 +1,16 @@ +parameters: + # Which SDK profile to install for. "both" preserves the original full-run behaviour and + # installs the Microsoft.Graph and Microsoft.Graph.Beta meta modules. + - name: InstallProfile + type: string + default: both + # When set, only the single workload submodule for that module (plus Authentication) is + # installed instead of the whole SDK. This keeps each isolated per-module stage fast and + # guarantees only one workload module is ever present in the session. + - name: Module + type: string + default: "" + steps: - task: PowerShell@2 displayName: Install Required Modules @@ -12,25 +25,44 @@ steps: if (-not (Get-PSRepository -Name PowerShell_V2_Build -ErrorAction SilentlyContinue)) { Register-PSRepository -Name PowerShell_V2_Build -SourceLocation $feedUrl -InstallationPolicy Trusted -Credential $cred } - try{ - # Try to update the V1 module first. - Install-Module Microsoft.Graph.Beta -Repository PowerShell_V2_Build -Credential $cred -Scope AllUsers -AcceptLicense -SkipPublisherCheck -Force -AllowClobber - }catch{ - # If the module is not installed, install it. - echo "Error when installing Beta" + + $installProfile = "${{ parameters.InstallProfile }}" + $module = "${{ parameters.Module }}" + + # Build the list of modules to install. + $toInstall = @() + if ([string]::IsNullOrWhiteSpace($module)) { + # Full-run behaviour: install the meta module(s) for the requested profile(s). + if ($installProfile -ne 'v1.0') { $toInstall += 'Microsoft.Graph.Beta' } + if ($installProfile -ne 'beta') { $toInstall += 'Microsoft.Graph' } } - try{ - # Try to update the beta module first. - Install-Module Microsoft.Graph -Repository PowerShell_V2_Build -Credential $cred -Scope AllUsers -AcceptLicense -SkipPublisherCheck -Force -AllowClobber - }catch{ - # If the module is not installed, install it. - echo "Error when installing V1" + else { + # Isolated per-module run: install only Authentication + the single workload + # submodule for the target profile. + $toInstall += 'Microsoft.Graph.Authentication' + if ($installProfile -eq 'beta') { + $toInstall += "Microsoft.Graph.Beta.$module" + } + else { + $toInstall += "Microsoft.Graph.$module" + } + } + + foreach ($m in $toInstall) { + try { + Install-Module $m -Repository PowerShell_V2_Build -Credential $cred -Scope AllUsers -AcceptLicense -SkipPublisherCheck -Force -AllowClobber + } + catch { + # Do not fail the install step; a missing/failed module surfaces later as a + # fail-safe (no deletion, no PR) in the isolated generation stage. + Write-Host "##vso[task.logissue type=warning]Failed to install $m : $($_.Exception.Message)" + } } - $modules = Get-Module -Name Microsoft.Graph -ListAvailable + $modules = Get-Module -Name Microsoft.Graph* -ListAvailable foreach($r in $modules) { - echo $r.Version + echo "$($r.Name) $($r.Version)" } env: SYSTEM_ACCESSTOKEN: $(System.AccessToken) diff --git a/scripts/CorrectRelatedLinks-AllFiles.ps1 b/scripts/CorrectRelatedLinks-AllFiles.ps1 index 3f6a71383b9e6..be414538528a7 100644 --- a/scripts/CorrectRelatedLinks-AllFiles.ps1 +++ b/scripts/CorrectRelatedLinks-AllFiles.ps1 @@ -19,7 +19,11 @@ param( [Parameter(Mandatory = $false)] [ValidateSet("v1.0", "beta", "both")] - [string]$GraphProfile = "both" + [Alias("GraphProfileFilter")] + [string]$GraphProfile = "both", + + [Parameter(Mandatory = $false)] + [string]$ModuleFilter = "" ) function Get-GraphMapping { @@ -217,6 +221,10 @@ if ($ModulesToGenerate.Count -eq 0) { } } +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} + # Main execution Write-Host "=== Related Links Correction Script ===" -ForegroundColor Blue Write-Host "Working directory: $WorkLoadDocsPath" -ForegroundColor Blue diff --git a/scripts/EscapeDisallowedHtmlTags.ps1 b/scripts/EscapeDisallowedHtmlTags.ps1 index 597d7a5633f81..0039a05b33500 100644 --- a/scripts/EscapeDisallowedHtmlTags.ps1 +++ b/scripts/EscapeDisallowedHtmlTags.ps1 @@ -2,7 +2,10 @@ # Licensed under the MIT License. Param( $ModulesToGenerate = @(), - [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc") + [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -20,13 +23,19 @@ function EscapeDisallowedHtmlTags { $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $graphProfile -ne $GraphProfileFilter) { return } Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Escaped disallowed html tags" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Escaped disallowed html tags" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FilesByProfile { Param( @@ -322,5 +331,8 @@ function CleanupFile { } Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} EscapeDisallowedHtmlTags -ModulesToGenerate $ModulesToGenerate Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file diff --git a/scripts/GenerateAliasedDocs.ps1 b/scripts/GenerateAliasedDocs.ps1 index 97eba9685354d..c7ba9bec1d19c 100644 --- a/scripts/GenerateAliasedDocs.ps1 +++ b/scripts/GenerateAliasedDocs.ps1 @@ -6,12 +6,18 @@ See related PR for more information. #> +Param( + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" +) + function Start-GenerateAliasedDocs { $BreakingChangeReportV1Report = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/docs/PowerShellBreakingChanges-V1.0.csv") $BreakingChangeReportBetaReport = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/docs/PowerShellBreakingChanges-beta.csv") $Reports = @() - $Reports += $BreakingChangeReportV1Report - $Reports += $BreakingChangeReportBetaReport + if ($GraphProfileFilter -ne "beta") { $Reports += $BreakingChangeReportV1Report } + if ($GraphProfileFilter -ne "v1.0") { $Reports += $BreakingChangeReportBetaReport } foreach ($BreakingChangeReport in $Reports) { Import-Csv $BreakingChangeReport | ForEach-Object { $Command = $_."NewCmdlet" @@ -39,6 +45,7 @@ function Copy-Files { if($CmdDetails){ $Module = $CmdDetails.Module $Module = $Module.Replace("Beta.", "") + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $Module -ne $ModuleFilter) { return } $Module = "$ModulePrefix.$Module" $NewDoc = (Join-Path $PSScriptRoot "../microsoftgraph" $GraphProfilePath $Module "$Command.md") if(Test-Path $NewDoc) { diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 0d5a062bef429..ed6c85dcdb009 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -5,7 +5,16 @@ Param( $ModulesToGenerate = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config\ModulesMapping.jsonc"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $CmdletMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json") + [string] $CmdletMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"), + # Restrict generation to a single SDK profile ("v1.0" or "beta"); "both" keeps the + # original full-run behaviour. + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + # Restrict generation to a single module (e.g. "Applications" or "Authentication"). Empty + # means all modules. When set, the run is "scoped": the module's folder is completely + # cleared and regenerated, and an import failure aborts THIS run (fail-safe, no deletion) + # instead of silently skipping. + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -51,36 +60,55 @@ function Start-GraphHelp { Param( $ModulesToGenerate = @() ) - - #Generate for auth module first + $ModulePrefix = "Microsoft.Graph" $AuthPath = "$ModulePrefix.Authentication" $AuthDestination = Join-Path $WorkLoadDocsPath "graph-powershell-1.0" $AuthPath - # Guard against catastrophic deletions: never remove existing docs unless the module - # is available to regenerate them. Authentication is required for every run, so abort - # if it failed to install rather than wiping committed documentation. - if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable -ErrorAction SilentlyContinue)) { - throw "Microsoft.Graph.Authentication module is not available. Aborting generation to avoid deleting existing documentation." + # Determine which profiles this run covers. + $GraphMapping = Get-GraphMapping + $profilesToProcess = @($GraphMapping.Keys) + if ($GraphProfileFilter -ne "both") { + $profilesToProcess = @($GraphProfileFilter) } - Import-Module Microsoft.Graph.Authentication -Force -Global -ErrorAction Stop - Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } - $GraphMapping = Get-GraphMapping - $GraphMapping.Keys | ForEach-Object { - $graphProfile = $_ - $profilePath = "graph-powershell-1.0" - if ($graphProfile -eq "beta") { - $profilePath = "graph-powershell-beta" - } + # Authentication docs live under graph-powershell-1.0 and are only generated on a full run + # or when Authentication is the explicitly targeted module. + $generateAuth = ([string]::IsNullOrWhiteSpace($ModuleFilter) -or $ModuleFilter -eq "Authentication") + if ($generateAuth -and ($profilesToProcess -contains "v1.0")) { + # Guard against catastrophic deletions: never remove existing docs unless the module + # is available to regenerate them. Authentication is required for every run, so abort + # if it failed to install rather than wiping committed documentation. + if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable -ErrorAction SilentlyContinue)) { + throw "Microsoft.Graph.Authentication module is not available. Aborting generation to avoid deleting existing documentation." + } + Import-Module Microsoft.Graph.Authentication -Force -Global -ErrorAction Stop + Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } $AuthenticationDocsPath = Join-Path $PSScriptRoot "..\microsoftgraph\graph-powershell-1.0" - Set-Help -ModuleDocsPath $AuthenticationDocsPath -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" - Get-FolderByProfile -GraphProfile $graphProfile -GraphProfilePath $profilePath -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate + Set-Help -ModuleDocsPath $AuthenticationDocsPath -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" + } + + # Workload modules. Skip entirely when Authentication is the explicit single target. + if ($ModuleFilter -ne "Authentication") { + $profilesToProcess | ForEach-Object { + $graphProfile = $_ + $profilePath = "graph-powershell-1.0" + if ($graphProfile -eq "beta") { + $profilePath = "graph-powershell-beta" + } + Get-FolderByProfile -GraphProfile $graphProfile -GraphProfilePath $profilePath -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate + } } + git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Updated markdown help" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Updated markdown help" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FolderByProfile { @@ -95,6 +123,14 @@ function Get-FolderByProfile { $ModulesToGenerate = @() ) $CommandMetadataContent = Get-Content $CmdletMetadataPath | ConvertFrom-Json + + # In scoped (single-module) runs, restrict to the requested module and enable + # complete-delete + regenerate for it (safe because the module is verified to import + # below before anything is removed). + $Scoped = -not [string]::IsNullOrWhiteSpace($ModuleFilter) + if ($Scoped) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) + } $ModulesToGenerate | ForEach-Object { $ModuleName = $_ @@ -125,6 +161,12 @@ function Get-FolderByProfile { } } if (-not $ModuleUsable) { + if ($Scoped) { + # Isolated single-module run: fail fast WITHOUT deleting anything so the + # module's committed docs are preserved. The pipeline job contains this + # failure (continueOnError) so it never fails the whole run or other modules. + throw "Module $Path is not usable in isolated generation; aborting this module without deleting its documentation." + } Write-Warning "Module $Path is not usable; skipping to preserve existing documentation." return } @@ -132,6 +174,13 @@ function Get-FolderByProfile { if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } + elseif ($Scoped) { + # Complete deletion + regeneration for this single module. Safe here because the + # module imported successfully above, so regeneration repopulates the folder. + Get-ChildItem -Path $Destination -Filter "*.md" -File | ForEach-Object { + Remove-Item $_.FullName -Force + } + } # NOTE: docs are intentionally NOT bulk-deleted here. Each doc is overwritten in # place as it is regenerated, and only genuine orphans (commands no longer in the @@ -209,4 +258,8 @@ if ($ModulesToGenerate.Count -eq 0) { } Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" Start-GraphHelp -ModulesToGenerate $ModulesToGenerate +# Signal successful generation so downstream pipeline steps (post-processing, push, PR) only +# run when this module actually generated. On an import failure the script throws before this +# line, the variable is never set, and the isolated stage opens no PR and deletes nothing. +Write-Host "##vso[task.setvariable variable=ModuleGenerated]true" Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file diff --git a/scripts/GeneratePermissionsTable.ps1 b/scripts/GeneratePermissionsTable.ps1 index 47e90ae3698f8..d854d62458c62 100644 --- a/scripts/GeneratePermissionsTable.ps1 +++ b/scripts/GeneratePermissionsTable.ps1 @@ -1,6 +1,9 @@ param( [string]$MgCommandMetadatJsonFile = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"), - [string[]]$CmdList = @() + [string[]]$CmdList = @(), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Start-Generator { @@ -11,6 +14,9 @@ function Start-Generator { $CommandName = $_.Command; $ApiVersion = $_.ApiVersion $Module = $_.Module; + if ($GraphProfileFilter -ne "both" -and $ApiVersion -ne $GraphProfileFilter) { return } + $normalizedModule = $Module -replace "^Beta\.", "" + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $normalizedModule -ne $ModuleFilter) { return } #Array for DelegatedWork Permissions $DelegatedWorkPermissions = @(); #Array for Application Permissions @@ -70,7 +76,12 @@ function Start-Generator { git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Inserted permissions Table" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Inserted permissions Table" + } else { + $global:LASTEXITCODE = 0 + } } catch { Write-Host "Error in $_"; diff --git a/scripts/MsSubserviceUpdate.ps1 b/scripts/MsSubserviceUpdate.ps1 index d9bbd826afe67..54ce3c003d8ca 100644 --- a/scripts/MsSubserviceUpdate.ps1 +++ b/scripts/MsSubserviceUpdate.ps1 @@ -5,7 +5,10 @@ Param( [string] $SDKDocsPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src"), [string] $SDKOpenApiPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $MissingMsSubserviceHeaderPath = (Join-Path $PSScriptRoot "../missingexternaldocsurl") + [string] $MissingMsSubserviceHeaderPath = (Join-Path $PSScriptRoot "../missingexternaldocsurl"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Start-Generator { if (Test-Path $CommandMetadataPath) { @@ -22,6 +25,8 @@ function Start-Generator { $ModulePrefix = "Microsoft.Graph.Beta" $ModuleName = $ModuleName.Replace("Beta.", "") } + if ($GraphProfileFilter -ne "both" -and $GraphProfile -ne $GraphProfileFilter) { return } + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $ModuleName -ne $ModuleFilter) { return } $Path = "$ModulePrefix.$ModuleName" $DestinationFile = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path "$Command.md" try { diff --git a/scripts/RemoveBoilerPlateCode.ps1 b/scripts/RemoveBoilerPlateCode.ps1 index 246e79ba3febe..8158654b106a1 100644 --- a/scripts/RemoveBoilerPlateCode.ps1 +++ b/scripts/RemoveBoilerPlateCode.ps1 @@ -4,7 +4,10 @@ Param( $ModulesToGenerate = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $AuthLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Authentication") + [string] $AuthLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Authentication"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -19,19 +22,22 @@ function Start-Repair { $ModulesToGenerate = @() ) - #Cleanup Authentication Module first - $files = Get-ChildItem -Path $AuthLoadDocsPath -Filter *.md -Recurse - foreach ($file in $files) { - $content = Get-Content -Path $file.FullName - # Remove lines that contain '{{ Fill in the Description }}' or '### This' or '### *' or '### have' or '### certain' or '### the' - $cleanedContent = $content | Where-Object { $_ -notmatch '^\s*{{ Fill in the Description }}|^\s*### This|^\s*### \*|^\s*### have|^\s*### certain|^\s*### the' } - # Write the cleaned content back to the file - $cleanedContent | Set-Content -Path $file.FullName + #Cleanup Authentication Module first (only on a full run or the Authentication stage). + if ([string]::IsNullOrWhiteSpace($ModuleFilter) -or $ModuleFilter -eq "Authentication") { + $files = Get-ChildItem -Path $AuthLoadDocsPath -Filter *.md -Recurse + foreach ($file in $files) { + $content = Get-Content -Path $file.FullName + # Remove lines that contain '{{ Fill in the Description }}' or '### This' or '### *' or '### have' or '### certain' or '### the' + $cleanedContent = $content | Where-Object { $_ -notmatch '^\s*{{ Fill in the Description }}|^\s*### This|^\s*### \*|^\s*### have|^\s*### certain|^\s*### the' } + # Write the cleaned content back to the file + $cleanedContent | Set-Content -Path $file.FullName + } } $ModulePrefix = "Microsoft.Graph" $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $graphProfile -ne $GraphProfileFilter) { return } $profilePath = "graph-powershell-1.0" if ($graphProfile -eq "beta") { $profilePath = "graph-powershell-beta" @@ -41,7 +47,12 @@ function Start-Repair { git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Remove boiler plate code injected by Autorest" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Remove boiler plate code injected by Autorest" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FilesByProfile { Param( @@ -118,5 +129,8 @@ if ($ModulesToGenerate.Count -eq 0) { } Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} Start-Repair -ModulesToGenerate $ModulesToGenerate Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file diff --git a/scripts/RemoveInvalidFullStops.ps1 b/scripts/RemoveInvalidFullStops.ps1 index db34789d58025..21cfad73afe51 100644 --- a/scripts/RemoveInvalidFullStops.ps1 +++ b/scripts/RemoveInvalidFullStops.ps1 @@ -2,7 +2,10 @@ # Licensed under the MIT License. Param( $ModulesToGenerate = @(), - [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc") + [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -20,13 +23,19 @@ function Remove-InvalidFullStops { $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $graphProfile -ne $GraphProfileFilter) { return } Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Removed invalid full stops from the beginning of lines" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Removed invalid full stops from the beginning of lines" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FilesByProfile { Param( @@ -88,6 +97,9 @@ if ($ModulesToGenerate.Count -eq 0) { [HashTable] $ModuleMapping = Get-Content $ModuleMappingConfigPath | ConvertFrom-Json -AsHashTable $ModulesToGenerate = $ModuleMapping.Keys } +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} Remove-InvalidFullStops -ModulesToGenerate $ModulesToGenerate diff --git a/scripts/RepairExamplesDescriptionsAndTitle.ps1 b/scripts/RepairExamplesDescriptionsAndTitle.ps1 index c8e3c74074799..e1fd1d5a8f172 100644 --- a/scripts/RepairExamplesDescriptionsAndTitle.ps1 +++ b/scripts/RepairExamplesDescriptionsAndTitle.ps1 @@ -4,7 +4,10 @@ Param( $ModulesToGenerate = @(), [string] $SDKDocsPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $CommandMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json") + [string] $CommandMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Start-Copy { @@ -22,6 +25,8 @@ function Start-Copy { $ModulePrefix = "Microsoft.Graph.Beta" $ModuleName = $ModuleName.Replace("Beta.", "") } + if ($GraphProfileFilter -ne "both" -and $GraphProfile -ne $GraphProfileFilter) { return } + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $ModuleName -ne $ModuleFilter) { return } $DocPath = Join-Path $SDKDocsPath $ModuleName $GraphProfile "examples" "$Command.md" try { @@ -38,7 +43,12 @@ function Start-Copy { git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Repaired examples and descriptions" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Repaired examples and descriptions" + } else { + $global:LASTEXITCODE = 0 + } } diff --git a/scripts/UpdateLinks.ps1 b/scripts/UpdateLinks.ps1 index fcc8d8e2253b2..1ba011281aa6a 100644 --- a/scripts/UpdateLinks.ps1 +++ b/scripts/UpdateLinks.ps1 @@ -4,7 +4,10 @@ Param( $ModulesToGenerate = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), [string] $SDKDocsPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src"), - [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph") + [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -22,6 +25,7 @@ function Start-Update { $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $GraphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $GraphProfile -ne $GraphProfileFilter) { return } $profilePath = "graph-powershell-1.0" if ($GraphProfile -eq "beta") { $ProfilePath = "graph-powershell-beta" @@ -205,5 +209,8 @@ if ($ModulesToGenerate.Count -eq 0) { Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} Start-Update -ModulesToGenerate $ModulesToGenerate Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file From 5202fe4d4c7f28cceeacc3451143fda9366e18b0 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 11:11:08 -0700 Subject: [PATCH 09/17] Fix template path resolution in powershell-docs.yml Azure DevOps resolves template references relative to the directory of the referencing file. powershell-docs.yml lives in azure-pipelines/, so the "azure-pipelines/common-templates/module-stages.yml@self" path resolved to azure-pipelines/azure-pipelines/common-templates/module-stages.yml and failed with "Not Found". Use a path relative to the file's own directory instead. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- azure-pipelines/powershell-docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines/powershell-docs.yml b/azure-pipelines/powershell-docs.yml index b6dc5b22f8b9b..71679bf595944 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -47,7 +47,7 @@ extends: customBuildTags: - ES365AIMigrationTooling stages: - - template: azure-pipelines/common-templates/module-stages.yml@self + - template: common-templates/module-stages.yml@self parameters: GraphProfileFilter: "v1.0" ProfileLabel: "v1" @@ -99,7 +99,7 @@ extends: - Users.Actions - Users.Functions - WindowsUpdates - - template: azure-pipelines/common-templates/module-stages.yml@self + - template: common-templates/module-stages.yml@self parameters: GraphProfileFilter: "beta" ProfileLabel: "beta" From 33e3a29e1366fb10e32ab3bbaf3da80705d35e69 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:15:21 +0000 Subject: [PATCH 10/17] Updated markdown help --- ...eviceManagementConditionalAccessSetting.md | 46 ++------------ ...ManagementDeviceEnrollmentConfiguration.md | 52 +++------------- ...DeviceEnrollmentConfigurationAssignment.md | 52 +++------------- ...eEnrollmentConfigurationAssignmentCount.md | 50 ++++----------- ...ementDeviceEnrollmentConfigurationCount.md | 46 ++++---------- ...tImportedWindowsAutopilotDeviceIdentity.md | 52 +++------------- ...rtedWindowsAutopilotDeviceIdentityCount.md | 46 ++++---------- ...anagementWindowsAutopilotDeviceIdentity.md | 52 +++------------- ...mentWindowsAutopilotDeviceIdentityCount.md | 46 ++++---------- .../Get-MgRoleManagement.md | 46 ++++---------- ...tImportedWindowsAutopilotDeviceIdentity.md | 53 +++------------- ...wsAutopilotDeviceIdentityUserFromDevice.md | 48 ++------------ ...osoft.Graph.DeviceManagement.Enrollment.md | 21 +------ ...ManagementDeviceEnrollmentConfiguration.md | 49 ++------------- ...DeviceEnrollmentConfigurationAssignment.md | 54 +++------------- ...tImportedWindowsAutopilotDeviceIdentity.md | 51 ++------------- ...anagementWindowsAutopilotDeviceIdentity.md | 49 ++------------- ...eviceManagementConditionalAccessSetting.md | 41 ++++-------- ...ManagementDeviceEnrollmentConfiguration.md | 48 ++------------ ...DeviceEnrollmentConfigurationAssignment.md | 48 ++------------ ...tImportedWindowsAutopilotDeviceIdentity.md | 48 ++------------ ...anagementWindowsAutopilotDeviceIdentity.md | 48 ++------------ ...ManagementDeviceEnrollmentConfiguration.md | 56 +++++------------ ...ntDeviceEnrollmentConfigurationPriority.md | 56 +++++------------ ...dowsAutopilotDeviceIdentityUserToDevice.md | 58 +++-------------- ...eviceManagementConditionalAccessSetting.md | 48 ++------------ ...ManagementDeviceEnrollmentConfiguration.md | 54 +++------------- ...DeviceEnrollmentConfigurationAssignment.md | 54 +++------------- ...tImportedWindowsAutopilotDeviceIdentity.md | 52 +++++----------- ...wsAutopilotDeviceIdentityDeviceProperty.md | 62 +++---------------- .../Update-MgRoleManagement.md | 52 ++++------------ 31 files changed, 246 insertions(+), 1292 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md index 84b336330200b..5d473e524a903 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementconditionalaccesssetting Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementConditionalAccessSetting --- @@ -16,9 +16,6 @@ title: Get-MgDeviceManagementConditionalAccessSetting The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementConditionalAccessSetting](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaDeviceManagementConditionalAccessSetting?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ On premises conditional access will require devices to be both enrolled and comp Get-MgDeviceManagementConditionalAccessSetting [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -40,27 +37,14 @@ This cmdlet has the following aliases, The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment Get-MgDeviceManagementConditionalAccessSetting -``` -This example shows how to use the Get-MgDeviceManagementConditionalAccessSetting Cmdlet. - - ## PARAMETERS ### -Break @@ -299,26 +283,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementConditionalAccessSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementconditionalaccesssetting) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementconditionalaccesssetting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md index 1d0cf3865e2b2..50355bba6d8db 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfiguration Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceEnrollmentConfiguration --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceEnrollmentConfiguration The list of device enrollment configurations -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceEnrollmentConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaDeviceManagementDeviceEnrollmentConfiguration?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementDeviceEnrollmentConfiguration [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementDeviceEnrollmentConfiguration -DeviceEnrollmentConfigurati [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementDeviceEnrollmentConfiguration -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, The list of device enrollment configurations -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment Get-MgDeviceManagementDeviceEnrollmentConfiguration -``` -This example shows how to use the Get-MgDeviceManagementDeviceEnrollmentConfiguration Cmdlet. - - ## PARAMETERS ### -All @@ -541,7 +525,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -550,26 +534,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceEnrollmentConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfiguration) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index 8eaf4173e8427..8ab65b67dfe82 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfigurationassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment The list of group assignments for the device configuration profile -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,27 +59,14 @@ This cmdlet has the following aliases, The list of group assignments for the device configuration profile -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment -DeviceEnrollmentConfigurationId $deviceEnrollmentConfigurationId -``` -This example shows how to use the Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment Cmdlet. - - ## PARAMETERS ### -All @@ -570,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -579,26 +563,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfigurationassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfigurationassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md index 271ad098fda93..08fa2a8946dd0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfigurationassignmentcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignmentCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignmentCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount -DeviceEnrollmentConfigurationId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | +{{ Add code here }} ## PARAMETERS @@ -343,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -352,27 +351,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfigurationassignmentcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfigurationassignmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md index 7f52958d1f52f..f54ad42f6d3d2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfigurationcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementDeviceEnrollmentConfigurationCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementDeviceEnrollmentConfigurationCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementDeviceEnrollmentConfigurationCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,13 +35,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementDeviceEnrollmentConfigurationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfigurationcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfigurationcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 48685eb46c3f2..0c9b35b9d44ee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementimportedwindowsautopilotdeviceidentity Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity Collection of imported Windows autopilot devices. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity -ImportedWindowsAutopilotDeviceIdentityId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, Collection of imported Windows autopilot devices. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity -``` -This example shows how to use the Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity Cmdlet. - - ## PARAMETERS ### -All @@ -541,7 +525,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -550,26 +534,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementimportedwindowsautopilotdeviceidentity) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementimportedwindowsautopilotdeviceidentity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md index a90bf322fa78b..dd95d39897449 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementimportedwindowsautopilotdeviceidentitycount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentityCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentityCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,13 +35,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementimportedwindowsautopilotdeviceidentitycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementimportedwindowsautopilotdeviceidentitycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md index d69fc5cdc1a24..e4cd0b60554dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementwindowsautopilotdeviceidentity Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementWindowsAutopilotDeviceIdentity --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementWindowsAutopilotDeviceIdentity The Windows autopilot device identities contained collection. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementWindowsAutopilotDeviceIdentity [-ExpandProperty [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementWindowsAutopilotDeviceIdentity -WindowsAutopilotDeviceIden [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementWindowsAutopilotDeviceIdentity -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, The Windows autopilot device identities contained collection. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment Get-MgDeviceManagementWindowsAutopilotDeviceIdentity -``` -This example shows how to use the Get-MgDeviceManagementWindowsAutopilotDeviceIdentity Cmdlet. - - ## PARAMETERS ### -All @@ -541,7 +525,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -550,26 +534,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementWindowsAutopilotDeviceIdentity](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementwindowsautopilotdeviceidentity) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementwindowsautopilotdeviceidentity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md index 5d7c53697e6d5..1b320839ade9d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementwindowsautopilotdeviceidentitycount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,13 +35,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementwindowsautopilotdeviceidentitycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementwindowsautopilotdeviceidentitycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md index 4283be317a197..2077a3c06d5b0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgrolemanagement Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgRoleManagement --- @@ -15,9 +15,6 @@ title: Get-MgRoleManagement Get roleManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaRoleManagement](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaRoleManagement?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get roleManagement Get-MgRoleManagement [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,13 +35,15 @@ This cmdlet has the following aliases, Get roleManagement -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementConfiguration.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -284,27 +283,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgRoleManagement](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgrolemanagement) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgrolemanagement) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 779d3d4bff9b7..40cae5b49c1f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/import-mgdevicemanagementimportedwindowsautopilotdeviceidentity Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity --- @@ -15,9 +15,6 @@ title: Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity Invoke action import -> [!NOTE] -> To view the beta release of this cmdlet, view [Import-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Import-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity?view=graph-powershell-beta) - ## SYNTAX ### ImportExpanded (Default) @@ -28,7 +25,7 @@ Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity [-ResponseHeader [-ImportedWindowsAutopilotDeviceIdentities ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Import @@ -39,7 +36,6 @@ Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,18 +47,9 @@ This cmdlet has the following aliases, Invoke action import -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -90,10 +77,6 @@ $params = @{ Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity -BodyParameter $params -``` -This example shows how to use the Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -119,7 +102,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -247,7 +230,7 @@ HelpMessage: '' ### -ImportedWindowsAutopilotDeviceIdentities - +. To construct, see NOTES section for IMPORTEDWINDOWSAUTOPILOTDEVICEIDENTITIES properties and create a hash table. ```yaml @@ -404,7 +387,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ImportedWindowsAutopilotDeviceIdentities ]: [Id ]: The unique identifier for an entity. @@ -441,26 +424,4 @@ Read-only. ## RELATED LINKS -- [Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/import-mgdevicemanagementimportedwindowsautopilotdeviceidentity) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/import-mgdevicemanagementimportedwindowsautopilotdeviceidentity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md index b5201b178b253..3c01c9bbd486c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/invoke-mgunassigndevicemanagementwindowsautopilotdeviceidentityuserfromdevice Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice --- @@ -15,9 +15,6 @@ title: Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDe Unassigns the user from an Autopilot device. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Invoke-MgBetaUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice?view=graph-powershell-beta) - ## SYNTAX ### Unassign (Default) @@ -28,7 +25,6 @@ Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UnassignViaIdentity @@ -39,7 +35,6 @@ Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Unassigns the user from an Autopilot device. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice -WindowsAutopilotDeviceIdentityId $windowsAutopilotDeviceIdentityId -``` -This example shows how to use the Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice Cmdlet. - - ## PARAMETERS ### -Break @@ -381,7 +363,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -390,26 +372,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/invoke-mgunassigndevicemanagementwindowsautopilotdeviceidentityuserfromdevice) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/invoke-mgunassigndevicemanagementwindowsautopilotdeviceidentityuserfromdevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Microsoft.Graph.DeviceManagement.Enrollment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Microsoft.Graph.DeviceManagement.Enrollment.md index f61c99fc59a42..1a6b27002b41b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Microsoft.Graph.DeviceManagement.Enrollment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Microsoft.Graph.DeviceManagement.Enrollment.md @@ -1,6 +1,6 @@ --- Module Name: Microsoft.Graph.DeviceManagement.Enrollment -Module Guid: a38be27a-44de-4a89-aa72-21d1307bd3c8 +Module Guid: 3ce31cd7-ee7d-4e6e-8bbb-4b6bf6377a9d Download Help Link: https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.devicemanagement.enrollment/?view=graph-powershell-1.0 Help Version: 1.0.0.0 Locale: en-US @@ -79,22 +79,3 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgRoleManagement](Update-MgRoleManagement.md) - - - - - - - - - - - - - - - - - - - diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md index b5855d2fc606e..5d7152ef9e830 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementdeviceenrollmentconfiguration Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementDeviceEnrollmentConfiguration --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementDeviceEnrollmentConfiguration Create new navigation property to deviceEnrollmentConfigurations for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceEnrollmentConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/New-MgBetaDeviceManagementDeviceEnrollmentConfiguration?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,6 @@ New-MgDeviceManagementDeviceEnrollmentConfiguration [-ResponseHeadersVariable ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +36,7 @@ New-MgDeviceManagementDeviceEnrollmentConfiguration -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -52,18 +48,9 @@ This cmdlet has the following aliases, Create new navigation property to deviceEnrollmentConfigurations for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -89,10 +76,6 @@ $params = @{ New-MgDeviceManagementDeviceEnrollmentConfiguration -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementDeviceEnrollmentConfiguration Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -558,7 +541,7 @@ Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER ``: The Base Class of Device Enrollment Configuration +BODYPARAMETER : The Base Class of Device Enrollment Configuration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -578,26 +561,4 @@ Users are subject only to the configuration with the lowest priority value. ## RELATED LINKS -- [New-MgDeviceManagementDeviceEnrollmentConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementdeviceenrollmentconfiguration) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementdeviceenrollmentconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index a7142e624c10b..bfbc6a65b1983 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementdeviceenrollmentconfigurationassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment Create new navigation property to assignments for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/New-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,7 @@ New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,6 @@ New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -51,7 +47,7 @@ New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +59,6 @@ New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +70,9 @@ This cmdlet has the following aliases, Create new navigation property to assignments for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -100,10 +86,6 @@ $params = @{ New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment -DeviceEnrollmentConfigurationId $deviceEnrollmentConfigurationId -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -518,14 +500,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: Enrollment Configuration Assignment +BODYPARAMETER : Enrollment Configuration Assignment [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -534,26 +516,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementdeviceenrollmentconfigurationassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementdeviceenrollmentconfigurationassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 998972651d335..a7c79720ee211 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementimportedwindowsautopilotdeviceidentity Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity Create new navigation property to importedWindowsAutopilotDeviceIdentities for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/New-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,7 @@ New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity [-ResponseHeadersVa [-SerialNumber ] [-State ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,6 @@ New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,18 +48,9 @@ This cmdlet has the following aliases, Create new navigation property to importedWindowsAutopilotDeviceIdentities for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -86,10 +73,6 @@ $params = @{ New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -548,7 +531,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: Imported windows autopilot devices. +BODYPARAMETER : Imported windows autopilot devices. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -565,7 +548,7 @@ Read-only. [DeviceImportStatus ]: importedWindowsAutopilotDeviceIdentityImportStatus [DeviceRegistrationId ]: Device Registration ID for successfully added device reported by Device Directory Service(DDS). -STATE ``: importedWindowsAutopilotDeviceIdentityState +STATE : importedWindowsAutopilotDeviceIdentityState [(Any) ]: This indicates any property can be added to this object. [DeviceErrorCode ]: Device error code reported by Device Directory Service(DDS). [DeviceErrorName ]: Device error name reported by Device Directory Service(DDS). @@ -575,26 +558,4 @@ STATE ``: importedWi ## RELATED LINKS -- [New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementimportedwindowsautopilotdeviceidentity) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementimportedwindowsautopilotdeviceidentity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md index 4c44af0d63bd6..03ec4e0466140 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementwindowsautopilotdeviceidentity Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementWindowsAutopilotDeviceIdentity --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementWindowsAutopilotDeviceIdentity Create new navigation property to windowsAutopilotDeviceIdentities for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/New-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -33,7 +30,6 @@ New-MgDeviceManagementWindowsAutopilotDeviceIdentity [-ResponseHeadersVariable < [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -43,7 +39,7 @@ New-MgDeviceManagementWindowsAutopilotDeviceIdentity -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -55,18 +51,9 @@ This cmdlet has the following aliases, Create new navigation property to windowsAutopilotDeviceIdentities for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -92,10 +79,6 @@ $params = @{ New-MgDeviceManagementWindowsAutopilotDeviceIdentity -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementWindowsAutopilotDeviceIdentity Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -742,7 +725,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: The windowsAutopilotDeviceIdentity resource represents a Windows Autopilot Device. +BODYPARAMETER : The windowsAutopilotDeviceIdentity resource represents a Windows Autopilot Device. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -766,26 +749,4 @@ Read-only. ## RELATED LINKS -- [New-MgDeviceManagementWindowsAutopilotDeviceIdentity](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementwindowsautopilotdeviceidentity) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementwindowsautopilotdeviceidentity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md index 16577e6cc397d..c87a0a9fb27de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementconditionalaccesssetting Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementConditionalAccessSetting --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementConditionalAccessSetting Delete navigation property conditionalAccessSettings for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementConditionalAccessSetting](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Remove-MgBetaDeviceManagementConditionalAccessSetting?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementConditionalAccessSetting [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -39,6 +35,16 @@ This cmdlet has the following aliases, Delete navigation property conditionalAccessSettings for deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -319,27 +325,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Remove-MgDeviceManagementConditionalAccessSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementconditionalaccesssetting) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementconditionalaccesssetting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md index 5b5177bc0c999..f474c83724295 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementdeviceenrollmentconfiguration Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceEnrollmentConfiguration --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceEnrollmentConfiguration Delete navigation property deviceEnrollmentConfigurations for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceEnrollmentConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Remove-MgBetaDeviceManagementDeviceEnrollmentConfiguration?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementDeviceEnrollmentConfiguration -DeviceEnrollmentConfigur [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementDeviceEnrollmentConfiguration [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,27 +45,14 @@ This cmdlet has the following aliases, Delete navigation property deviceEnrollmentConfigurations for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment Remove-MgDeviceManagementDeviceEnrollmentConfiguration -DeviceEnrollmentConfigurationId $deviceEnrollmentConfigurationId -``` -This example shows how to use the Remove-MgDeviceManagementDeviceEnrollmentConfiguration Cmdlet. - - ## PARAMETERS ### -Break @@ -401,7 +383,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -410,26 +392,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceEnrollmentConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementdeviceenrollmentconfiguration) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementdeviceenrollmentconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index 49aa17ca841c8..b24d6868f4523 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementdeviceenrollmentconfigurationassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment Delete navigation property assignments for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Remove-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Delete navigation property assignments for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment -DeviceEnrollmentConfigurationId $deviceEnrollmentConfigurationId -EnrollmentConfigurationAssignmentId $enrollmentConfigurationAssignmentId -``` -This example shows how to use the Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment Cmdlet. - - ## PARAMETERS ### -Break @@ -423,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -432,26 +414,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementdeviceenrollmentconfigurationassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementdeviceenrollmentconfigurationassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 9fe7398211403..8ce315cbe2754 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementimportedwindowsautopilotdeviceidentity Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity Delete navigation property importedWindowsAutopilotDeviceIdentities for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Remove-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,27 +46,14 @@ This cmdlet has the following aliases, Delete navigation property importedWindowsAutopilotDeviceIdentities for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity -ImportedWindowsAutopilotDeviceIdentityId $importedWindowsAutopilotDeviceIdentityId -``` -This example shows how to use the Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity Cmdlet. - - ## PARAMETERS ### -Break @@ -402,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -411,26 +393,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementimportedwindowsautopilotdeviceidentity) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementimportedwindowsautopilotdeviceidentity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md index 89bc745e286fd..9a1a00a172a5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementwindowsautopilotdeviceidentity Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity Delete navigation property windowsAutopilotDeviceIdentities for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Remove-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity -WindowsAutopilotDeviceI [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,27 +45,14 @@ This cmdlet has the following aliases, Delete navigation property windowsAutopilotDeviceIdentities for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity -WindowsAutopilotDeviceIdentityId $windowsAutopilotDeviceIdentityId -``` -This example shows how to use the Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity Cmdlet. - - ## PARAMETERS ### -Break @@ -401,7 +383,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -410,26 +392,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementwindowsautopilotdeviceidentity) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementwindowsautopilotdeviceidentity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md index b26960be1c072..338f7dc52bfe3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/set-mgdevicemanagementdeviceenrollmentconfiguration Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgDeviceManagementDeviceEnrollmentConfiguration --- @@ -15,9 +15,6 @@ title: Set-MgDeviceManagementDeviceEnrollmentConfiguration Invoke action assign -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaDeviceManagementDeviceEnrollmentConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Set-MgBetaDeviceManagementDeviceEnrollmentConfiguration?view=graph-powershell-beta) - ## SYNTAX ### AssignExpanded (Default) @@ -29,7 +26,6 @@ Set-MgDeviceManagementDeviceEnrollmentConfiguration -DeviceEnrollmentConfigurati [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Assign @@ -40,7 +36,6 @@ Set-MgDeviceManagementDeviceEnrollmentConfiguration -DeviceEnrollmentConfigurati [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AssignViaIdentityExpanded @@ -53,7 +48,6 @@ Set-MgDeviceManagementDeviceEnrollmentConfiguration [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AssignViaIdentity @@ -65,7 +59,6 @@ Set-MgDeviceManagementDeviceEnrollmentConfiguration [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,13 +70,15 @@ This cmdlet has the following aliases, Invoke action assign -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -116,7 +111,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -214,7 +209,7 @@ HelpMessage: '' ### -EnrollmentConfigurationAssignments - +. To construct, see NOTES section for ENROLLMENTCONFIGURATIONASSIGNMENTS properties and create a hash table. ```yaml @@ -493,7 +488,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [EnrollmentConfigurationAssignments ]: [Id ]: The unique identifier for an entity. @@ -507,7 +502,7 @@ Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -516,27 +511,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgDeviceManagementDeviceEnrollmentConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/set-mgdevicemanagementdeviceenrollmentconfiguration) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/set-mgdevicemanagementdeviceenrollmentconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md index 7fc29adba8280..6805cfc176e00 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/set-mgdevicemanagementdeviceenrollmentconfigurationpriority Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority --- @@ -15,9 +15,6 @@ title: Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority Invoke action setPriority -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaDeviceManagementDeviceEnrollmentConfigurationPriority](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Set-MgBetaDeviceManagementDeviceEnrollmentConfigurationPriority?view=graph-powershell-beta) - ## SYNTAX ### SetExpanded (Default) @@ -28,7 +25,6 @@ Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority [-AdditionalProperties ] [-Priority ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Set @@ -40,7 +36,6 @@ Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentityExpanded @@ -51,7 +46,6 @@ Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority [-AdditionalProperties ] [-Priority ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SetViaIdentity @@ -63,7 +57,6 @@ Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,13 +68,15 @@ This cmdlet has the following aliases, Invoke action setPriority -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -114,7 +109,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -324,7 +319,7 @@ HelpMessage: '' ### -Priority - +. ```yaml Type: System.Int32 @@ -490,11 +485,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Priority ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -503,27 +498,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/set-mgdevicemanagementdeviceenrollmentconfigurationpriority) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/set-mgdevicemanagementdeviceenrollmentconfigurationpriority) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md index d658e54d4312d..ddb3f4521854e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/set-mgdevicemanagementwindowsautopilotdeviceidentityusertodevice Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice --- @@ -15,9 +15,6 @@ title: Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice Assigns user to Autopilot devices. -> [!NOTE] -> To view the beta release of this cmdlet, view [Set-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Set-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice?view=graph-powershell-beta) - ## SYNTAX ### AssignExpanded (Default) @@ -29,7 +26,6 @@ Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Assign @@ -41,7 +37,6 @@ Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AssignViaIdentityExpanded @@ -53,7 +48,6 @@ Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AssignViaIdentity @@ -65,7 +59,6 @@ Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,18 +70,9 @@ This cmdlet has the following aliases, Assigns user to Autopilot devices. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -99,10 +83,6 @@ $params = @{ Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice -WindowsAutopilotDeviceIdentityId $windowsAutopilotDeviceIdentityId -BodyParameter $params -``` -This example shows how to use the Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -134,7 +114,7 @@ HelpMessage: '' ### -AddressableUserName - +. ```yaml Type: System.String @@ -161,7 +141,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -429,7 +409,7 @@ HelpMessage: '' ### -UserPrincipalName - +. ```yaml Type: System.String @@ -537,12 +517,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [AddressableUserName ]: [UserPrincipalName ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -551,26 +531,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/set-mgdevicemanagementwindowsautopilotdeviceidentityusertodevice) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/set-mgdevicemanagementwindowsautopilotdeviceidentityusertodevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md index eeeeea19d76eb..f15861220c658 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementconditionalaccesssetting Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementConditionalAccessSetting --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementConditionalAccessSetting Update the navigation property conditionalAccessSettings in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementConditionalAccessSetting](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Update-MgBetaDeviceManagementConditionalAccessSetting?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgDeviceManagementConditionalAccessSetting [-ResponseHeadersVariable ] [-OverrideDefaultRule] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -39,7 +35,6 @@ Update-MgDeviceManagementConditionalAccessSetting [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,18 +46,9 @@ This cmdlet has the following aliases, Update the navigation property conditionalAccessSettings in deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -80,10 +66,6 @@ overrideDefaultRule = $true Update-MgDeviceManagementConditionalAccessSetting -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementConditionalAccessSetting Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -480,7 +462,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: Singleton entity which represents the Exchange OnPremises Conditional Access Settings for a tenant. +BODYPARAMETER : Singleton entity which represents the Exchange OnPremises Conditional Access Settings for a tenant. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -494,26 +476,4 @@ All users in these groups will be required to have mobile device managed and com ## RELATED LINKS -- [Update-MgDeviceManagementConditionalAccessSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementconditionalaccesssetting) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementconditionalaccesssetting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md index efd51f63ba71b..3477c2f2b2cdc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementdeviceenrollmentconfiguration Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceEnrollmentConfiguration --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceEnrollmentConfiguration Update the navigation property deviceEnrollmentConfigurations in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceEnrollmentConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Update-MgBetaDeviceManagementDeviceEnrollmentConfiguration?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,6 @@ Update-MgDeviceManagementDeviceEnrollmentConfiguration -DeviceEnrollmentConfigur [-Priority ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -40,7 +36,7 @@ Update-MgDeviceManagementDeviceEnrollmentConfiguration -DeviceEnrollmentConfigur -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -54,7 +50,6 @@ Update-MgDeviceManagementDeviceEnrollmentConfiguration [-Priority ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +60,7 @@ Update-MgDeviceManagementDeviceEnrollmentConfiguration -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,18 +72,9 @@ This cmdlet has the following aliases, Update the navigation property deviceEnrollmentConfigurations in deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -137,10 +123,6 @@ $params = @{ Update-MgDeviceManagementDeviceEnrollmentConfiguration -DeviceEnrollmentConfigurationId $deviceEnrollmentConfigurationId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceEnrollmentConfiguration Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -725,7 +707,7 @@ Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER ``: The Base Class of Device Enrollment Configuration +BODYPARAMETER : The Base Class of Device Enrollment Configuration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -742,7 +724,7 @@ Read-only. Users are subject only to the configuration with the lowest priority value. [Version ]: The version of the device enrollment configuration -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -751,26 +733,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementDeviceEnrollmentConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementdeviceenrollmentconfiguration) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementdeviceenrollmentconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index 643f43fe52942..edd2af51fcd01 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementdeviceenrollmentconfigurationassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment Update the navigation property assignments in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Update-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,7 @@ Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,6 @@ Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -51,7 +47,7 @@ Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +59,6 @@ Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +70,9 @@ This cmdlet has the following aliases, Update the navigation property assignments in deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -100,10 +86,6 @@ $params = @{ Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment -DeviceEnrollmentConfigurationId $deviceEnrollmentConfigurationId -EnrollmentConfigurationAssignmentId $enrollmentConfigurationAssignmentId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -545,14 +527,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: Enrollment Configuration Assignment +BODYPARAMETER : Enrollment Configuration Assignment [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -561,26 +543,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementdeviceenrollmentconfigurationassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementdeviceenrollmentconfigurationassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index f3a4deedf9193..95341cb06ad76 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementimportedwindowsautopilotdeviceidentity Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity Update the navigation property importedWindowsAutopilotDeviceIdentities in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Update-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,7 @@ Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity [-SerialNumber ] [-State ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +39,6 @@ Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -55,7 +51,7 @@ Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity [-SerialNumber ] [-State ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -67,7 +63,6 @@ Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,6 +74,16 @@ This cmdlet has the following aliases, Update the navigation property importedWindowsAutopilotDeviceIdentities in deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -656,7 +661,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: Imported windows autopilot devices. +BODYPARAMETER : Imported windows autopilot devices. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -673,13 +678,13 @@ Read-only. [DeviceImportStatus ]: importedWindowsAutopilotDeviceIdentityImportStatus [DeviceRegistrationId ]: Device Registration ID for successfully added device reported by Device Directory Service(DDS). -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity [WindowsAutopilotDeviceIdentityId ]: The unique identifier of windowsAutopilotDeviceIdentity -STATE ``: importedWindowsAutopilotDeviceIdentityState +STATE : importedWindowsAutopilotDeviceIdentityState [(Any) ]: This indicates any property can be added to this object. [DeviceErrorCode ]: Device error code reported by Device Directory Service(DDS). [DeviceErrorName ]: Device error name reported by Device Directory Service(DDS). @@ -689,27 +694,4 @@ STATE ``: importedWi ## RELATED LINKS -- [Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementimportedwindowsautopilotdeviceidentity) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementimportedwindowsautopilotdeviceidentity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md index 653adc5c80c66..d054342f4d5e4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementwindowsautopilotdeviceidentitydeviceproperty Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty Updates properties on Autopilot devices. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Update-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,6 @@ Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty [-GroupTag ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +37,6 @@ Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -53,7 +48,6 @@ Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty [-GroupTag ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +59,6 @@ Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,18 +70,9 @@ This cmdlet has the following aliases, Updates properties on Autopilot devices. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -101,10 +85,6 @@ $params = @{ Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty -WindowsAutopilotDeviceIdentityId $windowsAutopilotDeviceIdentityId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -136,7 +116,7 @@ HelpMessage: '' ### -AddressableUserName - +. ```yaml Type: System.String @@ -163,7 +143,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -234,7 +214,7 @@ HelpMessage: '' ### -DisplayName - +. ```yaml Type: System.String @@ -261,7 +241,7 @@ HelpMessage: '' ### -GroupTag - +. ```yaml Type: System.String @@ -485,7 +465,7 @@ HelpMessage: '' ### -UserPrincipalName - +. ```yaml Type: System.String @@ -593,14 +573,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [AddressableUserName ]: [DisplayName ]: [GroupTag ]: [UserPrincipalName ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -609,26 +589,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementwindowsautopilotdeviceidentitydeviceproperty) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementwindowsautopilotdeviceidentitydeviceproperty) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md index 0df358a9ba833..af0d18a178f23 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Enrollment-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgrolemanagement Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Enrollment -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgRoleManagement --- @@ -15,9 +15,6 @@ title: Update-MgRoleManagement Update roleManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaRoleManagement](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Update-MgBetaRoleManagement?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgRoleManagement [-ResponseHeadersVariable ] [-AdditionalProperti [-EntitlementManagement ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +34,6 @@ Update-MgRoleManagement -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,13 +45,15 @@ This cmdlet has the following aliases, Update roleManagement -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -390,7 +387,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: roleManagement +BODYPARAMETER : roleManagement [(Any) ]: This indicates any property can be added to this object. [Directory ]: rbacApplication [(Any) ]: This indicates any property can be added to this object. @@ -748,7 +745,7 @@ Supports $filter (eq, ne). [RoleEligibilitySchedules ]: Schedules for role eligibility operations. [EntitlementManagement ]: rbacApplication -DIRECTORY ``: rbacApplication +DIRECTORY : rbacApplication [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1103,7 +1100,7 @@ Supports $filter (eq, ne). [TicketInfo ]: ticketInfo [RoleEligibilitySchedules ]: Schedules for role eligibility operations. -ENTITLEMENTMANAGEMENT ``: rbacApplication +ENTITLEMENTMANAGEMENT : rbacApplication [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1461,27 +1458,4 @@ Supports $filter (eq, ne). ## RELATED LINKS -- [Update-MgRoleManagement](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgrolemanagement) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgrolemanagement) From 4d89873140aed669908d087710794c4631ede089 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:15:27 +0000 Subject: [PATCH 11/17] Escaped disallowed html tags --- ...eviceManagementConditionalAccessSetting.md | 22 +++++++++++++++ ...ManagementDeviceEnrollmentConfiguration.md | 24 +++++++++++++++- ...DeviceEnrollmentConfigurationAssignment.md | 24 +++++++++++++++- ...eEnrollmentConfigurationAssignmentCount.md | 24 +++++++++++++++- ...ementDeviceEnrollmentConfigurationCount.md | 22 +++++++++++++++ ...tImportedWindowsAutopilotDeviceIdentity.md | 24 +++++++++++++++- ...rtedWindowsAutopilotDeviceIdentityCount.md | 22 +++++++++++++++ ...anagementWindowsAutopilotDeviceIdentity.md | 24 +++++++++++++++- ...mentWindowsAutopilotDeviceIdentityCount.md | 22 +++++++++++++++ .../Get-MgRoleManagement.md | 22 +++++++++++++++ ...tImportedWindowsAutopilotDeviceIdentity.md | 24 +++++++++++++++- ...wsAutopilotDeviceIdentityUserFromDevice.md | 24 +++++++++++++++- ...osoft.Graph.DeviceManagement.Enrollment.md | 19 +++++++++++++ ...ManagementDeviceEnrollmentConfiguration.md | 24 +++++++++++++++- ...DeviceEnrollmentConfigurationAssignment.md | 26 +++++++++++++++-- ...tImportedWindowsAutopilotDeviceIdentity.md | 26 +++++++++++++++-- ...anagementWindowsAutopilotDeviceIdentity.md | 24 +++++++++++++++- ...eviceManagementConditionalAccessSetting.md | 22 +++++++++++++++ ...ManagementDeviceEnrollmentConfiguration.md | 24 +++++++++++++++- ...DeviceEnrollmentConfigurationAssignment.md | 24 +++++++++++++++- ...tImportedWindowsAutopilotDeviceIdentity.md | 24 +++++++++++++++- ...anagementWindowsAutopilotDeviceIdentity.md | 24 +++++++++++++++- ...ManagementDeviceEnrollmentConfiguration.md | 26 +++++++++++++++-- ...ntDeviceEnrollmentConfigurationPriority.md | 26 +++++++++++++++-- ...dowsAutopilotDeviceIdentityUserToDevice.md | 26 +++++++++++++++-- ...eviceManagementConditionalAccessSetting.md | 24 +++++++++++++++- ...ManagementDeviceEnrollmentConfiguration.md | 26 +++++++++++++++-- ...DeviceEnrollmentConfigurationAssignment.md | 26 +++++++++++++++-- ...tImportedWindowsAutopilotDeviceIdentity.md | 28 +++++++++++++++++-- ...wsAutopilotDeviceIdentityDeviceProperty.md | 26 +++++++++++++++-- .../Update-MgRoleManagement.md | 28 +++++++++++++++++-- 31 files changed, 715 insertions(+), 36 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md index 5d473e524a903..d8d8be1cfcd17 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md @@ -284,3 +284,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementconditionalaccesssetting) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md index 50355bba6d8db..4a07354e2ae39 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -525,7 +525,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -535,3 +535,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfiguration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index 8ab65b67dfe82..91dd539c27120 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -554,7 +554,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -564,3 +564,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfigurationassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md index 08fa2a8946dd0..f48bb76974068 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -352,3 +352,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfigurationassignmentcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md index f54ad42f6d3d2..c75332195fb0b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfigurationcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 0c9b35b9d44ee..ebb80022b48c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -525,7 +525,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -535,3 +535,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementimportedwindowsautopilotdeviceidentity) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md index dd95d39897449..0da60f610cecb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementimportedwindowsautopilotdeviceidentitycount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md index e4cd0b60554dd..bd5068f6b2c05 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md @@ -525,7 +525,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -535,3 +535,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementwindowsautopilotdeviceidentity) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md index 1b320839ade9d..4c6923a3d4857 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementwindowsautopilotdeviceidentitycount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md index 2077a3c06d5b0..ede90cae308aa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md @@ -284,3 +284,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgrolemanagement) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 40cae5b49c1f1..1057e7eb60cc5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -387,7 +387,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ImportedWindowsAutopilotDeviceIdentities ]: [Id ]: The unique identifier for an entity. @@ -425,3 +425,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/import-mgdevicemanagementimportedwindowsautopilotdeviceidentity) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md index 3c01c9bbd486c..40fa319f41f27 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md @@ -363,7 +363,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -373,3 +373,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/invoke-mgunassigndevicemanagementwindowsautopilotdeviceidentityuserfromdevice) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Microsoft.Graph.DeviceManagement.Enrollment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Microsoft.Graph.DeviceManagement.Enrollment.md index 1a6b27002b41b..7c24da2b220c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Microsoft.Graph.DeviceManagement.Enrollment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Microsoft.Graph.DeviceManagement.Enrollment.md @@ -79,3 +79,22 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgRoleManagement](Update-MgRoleManagement.md) + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md index 5d7152ef9e830..2e42e89814bac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -541,7 +541,7 @@ Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER : The Base Class of Device Enrollment Configuration +BODYPARAMETER ``: The Base Class of Device Enrollment Configuration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -562,3 +562,25 @@ Users are subject only to the configuration with the lowest priority value. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementdeviceenrollmentconfiguration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index bfbc6a65b1983..32238d1543adb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -500,14 +500,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : Enrollment Configuration Assignment +BODYPARAMETER ``: Enrollment Configuration Assignment [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -517,3 +517,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementdeviceenrollmentconfigurationassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index a7c79720ee211..6b6773fbac697 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -531,7 +531,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : Imported windows autopilot devices. +BODYPARAMETER ``: Imported windows autopilot devices. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -548,7 +548,7 @@ Read-only. [DeviceImportStatus ]: importedWindowsAutopilotDeviceIdentityImportStatus [DeviceRegistrationId ]: Device Registration ID for successfully added device reported by Device Directory Service(DDS). -STATE : importedWindowsAutopilotDeviceIdentityState +STATE ``: importedWindowsAutopilotDeviceIdentityState [(Any) ]: This indicates any property can be added to this object. [DeviceErrorCode ]: Device error code reported by Device Directory Service(DDS). [DeviceErrorName ]: Device error name reported by Device Directory Service(DDS). @@ -559,3 +559,25 @@ STATE : importedWind ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementimportedwindowsautopilotdeviceidentity) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md index 03ec4e0466140..39ac784aa6744 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md @@ -725,7 +725,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : The windowsAutopilotDeviceIdentity resource represents a Windows Autopilot Device. +BODYPARAMETER ``: The windowsAutopilotDeviceIdentity resource represents a Windows Autopilot Device. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -750,3 +750,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementwindowsautopilotdeviceidentity) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md index c87a0a9fb27de..ff41066d226be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md @@ -326,3 +326,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementconditionalaccesssetting) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md index f474c83724295..0e6e05fcac265 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -383,7 +383,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -393,3 +393,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementdeviceenrollmentconfiguration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index b24d6868f4523..8a464c718339e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -405,7 +405,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -415,3 +415,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementdeviceenrollmentconfigurationassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 8ce315cbe2754..4cd668e2428a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -394,3 +394,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementimportedwindowsautopilotdeviceidentity) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md index 9a1a00a172a5b..b07afb2459b53 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md @@ -383,7 +383,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -393,3 +393,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementwindowsautopilotdeviceidentity) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md index 338f7dc52bfe3..5fb30201cdd45 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -488,7 +488,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [EnrollmentConfigurationAssignments ]: [Id ]: The unique identifier for an entity. @@ -502,7 +502,7 @@ Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -512,3 +512,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/set-mgdevicemanagementdeviceenrollmentconfiguration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md index 6805cfc176e00..cfacf1894fdb4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md @@ -485,11 +485,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Priority ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -499,3 +499,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/set-mgdevicemanagementdeviceenrollmentconfigurationpriority) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md index ddb3f4521854e..65f635bafa414 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md @@ -517,12 +517,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [AddressableUserName ]: [UserPrincipalName ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -532,3 +532,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/set-mgdevicemanagementwindowsautopilotdeviceidentityusertodevice) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md index f15861220c658..13929c195fd80 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md @@ -462,7 +462,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : Singleton entity which represents the Exchange OnPremises Conditional Access Settings for a tenant. +BODYPARAMETER ``: Singleton entity which represents the Exchange OnPremises Conditional Access Settings for a tenant. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -477,3 +477,25 @@ All users in these groups will be required to have mobile device managed and com ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementconditionalaccesssetting) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md index 3477c2f2b2cdc..4101cbe1502fd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -707,7 +707,7 @@ Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER : The Base Class of Device Enrollment Configuration +BODYPARAMETER ``: The Base Class of Device Enrollment Configuration [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -724,7 +724,7 @@ Read-only. Users are subject only to the configuration with the lowest priority value. [Version ]: The version of the device enrollment configuration -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -734,3 +734,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementdeviceenrollmentconfiguration) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index edd2af51fcd01..12b2e115360f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -527,14 +527,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : Enrollment Configuration Assignment +BODYPARAMETER ``: Enrollment Configuration Assignment [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -544,3 +544,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementdeviceenrollmentconfigurationassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 95341cb06ad76..7b77b3a6abf17 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -661,7 +661,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : Imported windows autopilot devices. +BODYPARAMETER ``: Imported windows autopilot devices. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -678,13 +678,13 @@ Read-only. [DeviceImportStatus ]: importedWindowsAutopilotDeviceIdentityImportStatus [DeviceRegistrationId ]: Device Registration ID for successfully added device reported by Device Directory Service(DDS). -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity [WindowsAutopilotDeviceIdentityId ]: The unique identifier of windowsAutopilotDeviceIdentity -STATE : importedWindowsAutopilotDeviceIdentityState +STATE ``: importedWindowsAutopilotDeviceIdentityState [(Any) ]: This indicates any property can be added to this object. [DeviceErrorCode ]: Device error code reported by Device Directory Service(DDS). [DeviceErrorName ]: Device error name reported by Device Directory Service(DDS). @@ -695,3 +695,25 @@ STATE : importedWind ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementimportedwindowsautopilotdeviceidentity) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md index d054342f4d5e4..13af1a4dc7c0b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md @@ -573,14 +573,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [AddressableUserName ]: [DisplayName ]: [GroupTag ]: [UserPrincipalName ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [DeviceEnrollmentConfigurationId ]: The unique identifier of deviceEnrollmentConfiguration [EnrollmentConfigurationAssignmentId ]: The unique identifier of enrollmentConfigurationAssignment [ImportedWindowsAutopilotDeviceIdentityId ]: The unique identifier of importedWindowsAutopilotDeviceIdentity @@ -590,3 +590,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementwindowsautopilotdeviceidentitydeviceproperty) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md index af0d18a178f23..7153aa26c5e71 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md @@ -387,7 +387,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : roleManagement +BODYPARAMETER ``: roleManagement [(Any) ]: This indicates any property can be added to this object. [Directory ]: rbacApplication [(Any) ]: This indicates any property can be added to this object. @@ -745,7 +745,7 @@ Supports $filter (eq, ne). [RoleEligibilitySchedules ]: Schedules for role eligibility operations. [EntitlementManagement ]: rbacApplication -DIRECTORY : rbacApplication +DIRECTORY ``: rbacApplication [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1100,7 +1100,7 @@ Supports $filter (eq, ne). [TicketInfo ]: ticketInfo [RoleEligibilitySchedules ]: Schedules for role eligibility operations. -ENTITLEMENTMANAGEMENT : rbacApplication +ENTITLEMENTMANAGEMENT ``: rbacApplication [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1459,3 +1459,25 @@ Supports $filter (eq, ne). ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgrolemanagement) + + + + + + + + + + + + + + + + + + + + + + From 0cca260d009644992e861ffbabc029b7741d99b3 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:28:20 +0000 Subject: [PATCH 12/17] Inserted permissions Table --- .../Get-MgDeviceManagementConditionalAccessSetting.md | 8 ++++++++ ...Get-MgDeviceManagementDeviceEnrollmentConfiguration.md | 8 ++++++++ ...ceManagementDeviceEnrollmentConfigurationAssignment.md | 8 ++++++++ ...agementDeviceEnrollmentConfigurationAssignmentCount.md | 8 ++++++++ ...gDeviceManagementDeviceEnrollmentConfigurationCount.md | 8 ++++++++ ...iceManagementImportedWindowsAutopilotDeviceIdentity.md | 8 ++++++++ ...nagementImportedWindowsAutopilotDeviceIdentityCount.md | 8 ++++++++ ...et-MgDeviceManagementWindowsAutopilotDeviceIdentity.md | 8 ++++++++ ...DeviceManagementWindowsAutopilotDeviceIdentityCount.md | 8 ++++++++ .../Get-MgRoleManagement.md | 8 ++++++++ ...iceManagementImportedWindowsAutopilotDeviceIdentity.md | 8 ++++++++ ...agementWindowsAutopilotDeviceIdentityUserFromDevice.md | 8 ++++++++ ...New-MgDeviceManagementDeviceEnrollmentConfiguration.md | 8 ++++++++ ...ceManagementDeviceEnrollmentConfigurationAssignment.md | 8 ++++++++ ...iceManagementImportedWindowsAutopilotDeviceIdentity.md | 8 ++++++++ ...ew-MgDeviceManagementWindowsAutopilotDeviceIdentity.md | 8 ++++++++ ...ove-MgDeviceManagementDeviceEnrollmentConfiguration.md | 8 ++++++++ ...ceManagementDeviceEnrollmentConfigurationAssignment.md | 8 ++++++++ ...iceManagementImportedWindowsAutopilotDeviceIdentity.md | 8 ++++++++ ...ve-MgDeviceManagementWindowsAutopilotDeviceIdentity.md | 8 ++++++++ ...Set-MgDeviceManagementDeviceEnrollmentConfiguration.md | 8 ++++++++ ...viceManagementDeviceEnrollmentConfigurationPriority.md | 8 ++++++++ ...anagementWindowsAutopilotDeviceIdentityUserToDevice.md | 8 ++++++++ .../Update-MgDeviceManagementConditionalAccessSetting.md | 8 ++++++++ ...ate-MgDeviceManagementDeviceEnrollmentConfiguration.md | 8 ++++++++ ...ceManagementDeviceEnrollmentConfigurationAssignment.md | 8 ++++++++ ...agementWindowsAutopilotDeviceIdentityDeviceProperty.md | 8 ++++++++ .../Update-MgRoleManagement.md | 8 ++++++++ 28 files changed, 224 insertions(+) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md index d8d8be1cfcd17..3160787df3b14 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md @@ -37,6 +37,14 @@ This cmdlet has the following aliases, The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md index 4a07354e2ae39..9a4da7016bda3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The list of device enrollment configurations +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index 91dd539c27120..e30e58210219d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -59,6 +59,14 @@ This cmdlet has the following aliases, The list of group assignments for the device configuration profile +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md index f48bb76974068..face2e6cf96b9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md index c75332195fb0b..9b40f927447c5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md @@ -35,6 +35,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index ebb80022b48c2..77c7c1d4c031e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Collection of imported Windows autopilot devices. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md index 0da60f610cecb..505c053b1c628 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md @@ -35,6 +35,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md index bd5068f6b2c05..9a560cef92355 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The Windows autopilot device identities contained collection. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md index 4c6923a3d4857..7f6ff8e93f254 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md @@ -35,6 +35,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md index ede90cae308aa..260d1e02c3671 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md @@ -35,6 +35,14 @@ This cmdlet has the following aliases, Get roleManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 1057e7eb60cc5..c89ab05472d5e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -47,6 +47,14 @@ This cmdlet has the following aliases, Invoke action import +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md index 40fa319f41f27..adf1c8610331f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Unassigns the user from an Autopilot device. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md index 2e42e89814bac..416a0956b844b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -48,6 +48,14 @@ This cmdlet has the following aliases, Create new navigation property to deviceEnrollmentConfigurations for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index 32238d1543adb..630a753c5f91c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -70,6 +70,14 @@ This cmdlet has the following aliases, Create new navigation property to assignments for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 6b6773fbac697..fa35ddbd65d3d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -48,6 +48,14 @@ This cmdlet has the following aliases, Create new navigation property to importedWindowsAutopilotDeviceIdentities for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md index 39ac784aa6744..584e75b176c43 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md @@ -51,6 +51,14 @@ This cmdlet has the following aliases, Create new navigation property to windowsAutopilotDeviceIdentities for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md index 0e6e05fcac265..59daafe912991 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Delete navigation property deviceEnrollmentConfigurations for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index 8a464c718339e..8a18ba0baa8ac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete navigation property assignments for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 4cd668e2428a1..82886ae45df01 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete navigation property importedWindowsAutopilotDeviceIdentities for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md index b07afb2459b53..79968aa69957f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Delete navigation property windowsAutopilotDeviceIdentities for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md index 5fb30201cdd45..255beeb09d701 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -70,6 +70,14 @@ This cmdlet has the following aliases, Invoke action assign +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md index cfacf1894fdb4..ae79aff088a19 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Invoke action setPriority +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md index 65f635bafa414..616fd13e4bf8f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md @@ -70,6 +70,14 @@ This cmdlet has the following aliases, Assigns user to Autopilot devices. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md index 13929c195fd80..58fa4463827bc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Update the navigation property conditionalAccessSettings in deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md index 4101cbe1502fd..efb8befc4c07d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -72,6 +72,14 @@ This cmdlet has the following aliases, Update the navigation property deviceEnrollmentConfigurations in deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index 12b2e115360f2..a2d2bf3cfc84d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -70,6 +70,14 @@ This cmdlet has the following aliases, Update the navigation property assignments in deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md index 13af1a4dc7c0b..4239b21277c9f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md @@ -70,6 +70,14 @@ This cmdlet has the following aliases, Updates properties on Autopilot devices. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md index 7153aa26c5e71..465ee1f48ca6c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Update roleManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 From a6c70f67608907db4b7ba2f6c23824cea4d84d7b Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:28:33 +0000 Subject: [PATCH 13/17] Updated metadata parameters --- .../Get-MgDeviceManagementConditionalAccessSetting.md | 3 +++ .../Get-MgDeviceManagementDeviceEnrollmentConfiguration.md | 3 +++ ...gDeviceManagementDeviceEnrollmentConfigurationAssignment.md | 3 +++ ...ceManagementDeviceEnrollmentConfigurationAssignmentCount.md | 3 +++ ...Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md | 3 +++ ...MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md | 3 +++ ...iceManagementImportedWindowsAutopilotDeviceIdentityCount.md | 3 +++ .../Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md | 3 +++ ...et-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md | 3 +++ .../Get-MgRoleManagement.md | 3 +++ ...MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md | 3 +++ ...ceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md | 3 +++ .../New-MgDeviceManagementDeviceEnrollmentConfiguration.md | 3 +++ ...gDeviceManagementDeviceEnrollmentConfigurationAssignment.md | 3 +++ ...MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md | 3 +++ .../New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md | 3 +++ .../Remove-MgDeviceManagementConditionalAccessSetting.md | 3 +++ .../Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md | 3 +++ ...gDeviceManagementDeviceEnrollmentConfigurationAssignment.md | 3 +++ ...MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md | 3 +++ .../Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md | 3 +++ .../Set-MgDeviceManagementDeviceEnrollmentConfiguration.md | 3 +++ ...-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md | 3 +++ ...viceManagementWindowsAutopilotDeviceIdentityUserToDevice.md | 3 +++ .../Update-MgDeviceManagementConditionalAccessSetting.md | 3 +++ .../Update-MgDeviceManagementDeviceEnrollmentConfiguration.md | 3 +++ ...gDeviceManagementDeviceEnrollmentConfigurationAssignment.md | 3 +++ ...MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md | 3 +++ ...ceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md | 3 +++ .../Update-MgRoleManagement.md | 3 +++ 30 files changed, 90 insertions(+) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md index 3160787df3b14..0dd84e5d781a6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md @@ -16,6 +16,9 @@ title: Get-MgDeviceManagementConditionalAccessSetting The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementConditionalAccessSetting](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaDeviceManagementConditionalAccessSetting?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md index 9a4da7016bda3..e280a725c241f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceEnrollmentConfiguration The list of device enrollment configurations +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceEnrollmentConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaDeviceManagementDeviceEnrollmentConfiguration?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index e30e58210219d..e6ed78a5f4a63 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment The list of group assignments for the device configuration profile +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md index face2e6cf96b9..e4dee1c23c901 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignmentCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignmentCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md index 9b40f927447c5..595c7af53801c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementDeviceEnrollmentConfigurationCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 77c7c1d4c031e..71910cdbbe7f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity Collection of imported Windows autopilot devices. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md index 505c053b1c628..23899669748ea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentityCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentityCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md index 9a560cef92355..2f87afca4f793 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementWindowsAutopilotDeviceIdentity The Windows autopilot device identities contained collection. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md index 7f6ff8e93f254..f9d581fb1b474 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md index 260d1e02c3671..7173814b11a5d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md @@ -15,6 +15,9 @@ title: Get-MgRoleManagement Get roleManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaRoleManagement](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Get-MgBetaRoleManagement?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index c89ab05472d5e..1087c5a11b909 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -15,6 +15,9 @@ title: Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity Invoke action import +> [!NOTE] +> To view the beta release of this cmdlet, view [Import-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Import-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity?view=graph-powershell-beta) + ## SYNTAX ### ImportExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md index adf1c8610331f..ca4c56a110992 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md @@ -15,6 +15,9 @@ title: Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDe Unassigns the user from an Autopilot device. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Invoke-MgBetaUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice?view=graph-powershell-beta) + ## SYNTAX ### Unassign (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md index 416a0956b844b..e70fcfab936c0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementDeviceEnrollmentConfiguration Create new navigation property to deviceEnrollmentConfigurations for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceEnrollmentConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/New-MgBetaDeviceManagementDeviceEnrollmentConfiguration?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index 630a753c5f91c..3f1f063d99f80 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment Create new navigation property to assignments for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/New-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index fa35ddbd65d3d..ed0b151660dc4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity Create new navigation property to importedWindowsAutopilotDeviceIdentities for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/New-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md index 584e75b176c43..844380900649e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementWindowsAutopilotDeviceIdentity Create new navigation property to windowsAutopilotDeviceIdentities for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/New-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md index ff41066d226be..8a63122a3d221 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementConditionalAccessSetting Delete navigation property conditionalAccessSettings for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementConditionalAccessSetting](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Remove-MgBetaDeviceManagementConditionalAccessSetting?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md index 59daafe912991..cd65758766ce9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceEnrollmentConfiguration Delete navigation property deviceEnrollmentConfigurations for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceEnrollmentConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Remove-MgBetaDeviceManagementDeviceEnrollmentConfiguration?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index 8a18ba0baa8ac..4fc0056379e0c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment Delete navigation property assignments for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Remove-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 82886ae45df01..20e77e7a48988 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity Delete navigation property importedWindowsAutopilotDeviceIdentities for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Remove-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md index 79968aa69957f..674b59ea9df73 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity Delete navigation property windowsAutopilotDeviceIdentities for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Remove-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md index 255beeb09d701..5832b2ff450e6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -15,6 +15,9 @@ title: Set-MgDeviceManagementDeviceEnrollmentConfiguration Invoke action assign +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaDeviceManagementDeviceEnrollmentConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Set-MgBetaDeviceManagementDeviceEnrollmentConfiguration?view=graph-powershell-beta) + ## SYNTAX ### AssignExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md index ae79aff088a19..5e8572094df28 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md @@ -15,6 +15,9 @@ title: Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority Invoke action setPriority +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaDeviceManagementDeviceEnrollmentConfigurationPriority](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Set-MgBetaDeviceManagementDeviceEnrollmentConfigurationPriority?view=graph-powershell-beta) + ## SYNTAX ### SetExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md index 616fd13e4bf8f..27f0c7a397a68 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md @@ -15,6 +15,9 @@ title: Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice Assigns user to Autopilot devices. +> [!NOTE] +> To view the beta release of this cmdlet, view [Set-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Set-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice?view=graph-powershell-beta) + ## SYNTAX ### AssignExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md index 58fa4463827bc..aa99f4939a5df 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementConditionalAccessSetting Update the navigation property conditionalAccessSettings in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementConditionalAccessSetting](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Update-MgBetaDeviceManagementConditionalAccessSetting?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md index efb8befc4c07d..79fd9935af952 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceEnrollmentConfiguration Update the navigation property deviceEnrollmentConfigurations in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceEnrollmentConfiguration](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Update-MgBetaDeviceManagementDeviceEnrollmentConfiguration?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index a2d2bf3cfc84d..e6ccb26cbcc91 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment Update the navigation property assignments in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Update-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 7b77b3a6abf17..ada4eab771993 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity Update the navigation property importedWindowsAutopilotDeviceIdentities in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Update-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md index 4239b21277c9f..0463db3b1c38e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty Updates properties on Autopilot devices. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Update-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md index 465ee1f48ca6c..16fcbc4841464 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md @@ -15,6 +15,9 @@ title: Update-MgRoleManagement Update roleManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaRoleManagement](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Enrollment/Update-MgBetaRoleManagement?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) From 9435d04961c2ffce8a0a97ec7601583795b43337 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:28:39 +0000 Subject: [PATCH 14/17] Repaired examples and descriptions --- .../Get-MgDeviceManagementConditionalAccessSetting.md | 7 ++++++- .../Get-MgDeviceManagementDeviceEnrollmentConfiguration.md | 7 ++++++- ...iceManagementDeviceEnrollmentConfigurationAssignment.md | 7 ++++++- ...viceManagementImportedWindowsAutopilotDeviceIdentity.md | 7 ++++++- ...Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md | 7 ++++++- ...viceManagementImportedWindowsAutopilotDeviceIdentity.md | 7 ++++++- ...nagementWindowsAutopilotDeviceIdentityUserFromDevice.md | 7 ++++++- .../New-MgDeviceManagementDeviceEnrollmentConfiguration.md | 7 ++++++- ...iceManagementDeviceEnrollmentConfigurationAssignment.md | 7 ++++++- ...viceManagementImportedWindowsAutopilotDeviceIdentity.md | 7 ++++++- ...New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md | 7 ++++++- ...move-MgDeviceManagementDeviceEnrollmentConfiguration.md | 7 ++++++- ...iceManagementDeviceEnrollmentConfigurationAssignment.md | 7 ++++++- ...viceManagementImportedWindowsAutopilotDeviceIdentity.md | 7 ++++++- ...ove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md | 7 ++++++- ...ManagementWindowsAutopilotDeviceIdentityUserToDevice.md | 7 ++++++- .../Update-MgDeviceManagementConditionalAccessSetting.md | 7 ++++++- ...date-MgDeviceManagementDeviceEnrollmentConfiguration.md | 7 ++++++- ...iceManagementDeviceEnrollmentConfigurationAssignment.md | 7 ++++++- ...nagementWindowsAutopilotDeviceIdentityDeviceProperty.md | 7 ++++++- 20 files changed, 120 insertions(+), 20 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md index 0dd84e5d781a6..fe186813bce61 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md @@ -49,13 +49,18 @@ On premises conditional access will require devices to be both enrolled and comp | Application | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment Get-MgDeviceManagementConditionalAccessSetting +``` +This example shows how to use the Get-MgDeviceManagementConditionalAccessSetting Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md index e280a725c241f..fc65c0ee3e4c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -69,13 +69,18 @@ The list of device enrollment configurations | Application | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment Get-MgDeviceManagementDeviceEnrollmentConfiguration +``` +This example shows how to use the Get-MgDeviceManagementDeviceEnrollmentConfiguration Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index e6ed78a5f4a63..5f437702caf71 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -71,13 +71,18 @@ The list of group assignments for the device configuration profile | Application | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment -DeviceEnrollmentConfigurationId $deviceEnrollmentConfigurationId +``` +This example shows how to use the Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 71910cdbbe7f0..e04aee47e7957 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -69,13 +69,18 @@ Collection of imported Windows autopilot devices. | Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity +``` +This example shows how to use the Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md index 2f87afca4f793..b26b0504c62aa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md @@ -69,13 +69,18 @@ The Windows autopilot device identities contained collection. | Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment Get-MgDeviceManagementWindowsAutopilotDeviceIdentity +``` +This example shows how to use the Get-MgDeviceManagementWindowsAutopilotDeviceIdentity Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 1087c5a11b909..6406a546ea92d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -59,8 +59,9 @@ Invoke action import | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -88,6 +89,10 @@ $params = @{ Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity -BodyParameter $params +``` +This example shows how to use the Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md index ca4c56a110992..645c88c4fba35 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md @@ -58,13 +58,18 @@ Unassigns the user from an Autopilot device. | Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice -WindowsAutopilotDeviceIdentityId $windowsAutopilotDeviceIdentityId +``` +This example shows how to use the Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md index e70fcfab936c0..b872594525a28 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -60,8 +60,9 @@ Create new navigation property to deviceEnrollmentConfigurations for deviceManag | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -87,6 +88,10 @@ $params = @{ New-MgDeviceManagementDeviceEnrollmentConfiguration -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementDeviceEnrollmentConfiguration Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index 3f1f063d99f80..d882c40b107a3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -82,8 +82,9 @@ Create new navigation property to assignments for deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -97,6 +98,10 @@ $params = @{ New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment -DeviceEnrollmentConfigurationId $deviceEnrollmentConfigurationId -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index ed0b151660dc4..77a3c922762c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -60,8 +60,9 @@ Create new navigation property to importedWindowsAutopilotDeviceIdentities for d | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -84,6 +85,10 @@ $params = @{ New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md index 844380900649e..8839ff13f5e7c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md @@ -63,8 +63,9 @@ Create new navigation property to windowsAutopilotDeviceIdentities for deviceMan | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -90,6 +91,10 @@ $params = @{ New-MgDeviceManagementWindowsAutopilotDeviceIdentity -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementWindowsAutopilotDeviceIdentity Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md index cd65758766ce9..92600422b8a11 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -57,13 +57,18 @@ Delete navigation property deviceEnrollmentConfigurations for deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment Remove-MgDeviceManagementDeviceEnrollmentConfiguration -DeviceEnrollmentConfigurationId $deviceEnrollmentConfigurationId +``` +This example shows how to use the Remove-MgDeviceManagementDeviceEnrollmentConfiguration Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index 4fc0056379e0c..90b237ad79468 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -58,13 +58,18 @@ Delete navigation property assignments for deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment -DeviceEnrollmentConfigurationId $deviceEnrollmentConfigurationId -EnrollmentConfigurationAssignmentId $enrollmentConfigurationAssignmentId +``` +This example shows how to use the Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 20e77e7a48988..999165166ae1d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -58,13 +58,18 @@ Delete navigation property importedWindowsAutopilotDeviceIdentities for deviceMa | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity -ImportedWindowsAutopilotDeviceIdentityId $importedWindowsAutopilotDeviceIdentityId +``` +This example shows how to use the Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md index 674b59ea9df73..bdb9afc83ca25 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md @@ -57,13 +57,18 @@ Delete navigation property windowsAutopilotDeviceIdentities for deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity -WindowsAutopilotDeviceIdentityId $windowsAutopilotDeviceIdentityId +``` +This example shows how to use the Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md index 27f0c7a397a68..2f2182cc9b007 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md @@ -82,8 +82,9 @@ Assigns user to Autopilot devices. | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -94,6 +95,10 @@ $params = @{ Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice -WindowsAutopilotDeviceIdentityId $windowsAutopilotDeviceIdentityId -BodyParameter $params +``` +This example shows how to use the Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md index aa99f4939a5df..26e4cff5f6217 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md @@ -58,8 +58,9 @@ Update the navigation property conditionalAccessSettings in deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -77,6 +78,10 @@ overrideDefaultRule = $true Update-MgDeviceManagementConditionalAccessSetting -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementConditionalAccessSetting Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md index 79fd9935af952..9c90414d66872 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -84,8 +84,9 @@ Update the navigation property deviceEnrollmentConfigurations in deviceManagemen | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -134,6 +135,10 @@ $params = @{ Update-MgDeviceManagementDeviceEnrollmentConfiguration -DeviceEnrollmentConfigurationId $deviceEnrollmentConfigurationId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceEnrollmentConfiguration Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index e6ccb26cbcc91..baf240f117453 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -82,8 +82,9 @@ Update the navigation property assignments in deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -97,6 +98,10 @@ $params = @{ Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment -DeviceEnrollmentConfigurationId $deviceEnrollmentConfigurationId -EnrollmentConfigurationAssignmentId $enrollmentConfigurationAssignmentId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md index 0463db3b1c38e..72ad7f92e9f9e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md @@ -82,8 +82,9 @@ Updates properties on Autopilot devices. | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Enrollment @@ -96,6 +97,10 @@ $params = @{ Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty -WindowsAutopilotDeviceIdentityId $windowsAutopilotDeviceIdentityId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty Cmdlet. + + ## PARAMETERS ### -AdditionalProperties From f77b4e603cfdc1687de53f465c1774ae70b9f827 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:28:42 +0000 Subject: [PATCH 15/17] Remove boiler plate code injected by Autorest --- ...entDeviceEnrollmentConfigurationAssignmentCount.md | 11 +---------- ...iceManagementDeviceEnrollmentConfigurationCount.md | 11 +---------- ...mentImportedWindowsAutopilotDeviceIdentityCount.md | 11 +---------- ...ceManagementWindowsAutopilotDeviceIdentityCount.md | 11 +---------- .../Get-MgRoleManagement.md | 11 +---------- ...move-MgDeviceManagementConditionalAccessSetting.md | 11 +---------- ...MgDeviceManagementDeviceEnrollmentConfiguration.md | 11 +---------- ...ManagementDeviceEnrollmentConfigurationPriority.md | 11 +---------- ...anagementImportedWindowsAutopilotDeviceIdentity.md | 11 +---------- .../Update-MgRoleManagement.md | 11 +---------- 10 files changed, 10 insertions(+), 100 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md index e4dee1c23c901..7ee060615b6ab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -383,5 +373,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md index 595c7af53801c..965b78534c33b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementServiceConfig.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -313,5 +303,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md index 23899669748ea..32e5f493eab2b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -313,5 +303,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md index f9d581fb1b474..0bf5d7cffd147 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -313,5 +303,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md index 7173814b11a5d..df9dd678d5521 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md @@ -46,16 +46,6 @@ Get roleManagement | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -315,5 +305,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md index 8a63122a3d221..20b6116227f2c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Delete navigation property conditionalAccessSettings for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -349,5 +339,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md index 5832b2ff450e6..bf32ed8d163a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -81,16 +81,6 @@ Invoke action assign | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -543,5 +533,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md index 5e8572094df28..4f1fe9d203474 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md @@ -79,16 +79,6 @@ Invoke action setPriority | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -530,5 +520,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index ada4eab771993..d6a241ec4896e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Update the navigation property importedWindowsAutopilotDeviceIdentities in deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -718,5 +708,6 @@ STATE ``: importedWi + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md index 16fcbc4841464..9349dbdef3691 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md @@ -56,16 +56,6 @@ Update roleManagement | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1490,5 +1480,6 @@ Supports $filter (eq, ne). + From 860b67363b13e3da93219cd0a8703346a174cb82 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:28:46 +0000 Subject: [PATCH 16/17] Removed invalid full stops from the beginning of lines --- ...ManagementImportedWindowsAutopilotDeviceIdentity.md | 4 ++-- ...-MgDeviceManagementDeviceEnrollmentConfiguration.md | 4 ++-- ...eManagementDeviceEnrollmentConfigurationPriority.md | 4 ++-- ...gementWindowsAutopilotDeviceIdentityUserToDevice.md | 6 +++--- ...mentWindowsAutopilotDeviceIdentityDeviceProperty.md | 10 +++++----- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 6406a546ea92d..00d0d2ee409fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -118,7 +118,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -246,7 +246,7 @@ HelpMessage: '' ### -ImportedWindowsAutopilotDeviceIdentities -. + To construct, see NOTES section for IMPORTEDWINDOWSAUTOPILOTDEVICEIDENTITIES properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md index bf32ed8d163a0..98d144f2967ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -112,7 +112,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -210,7 +210,7 @@ HelpMessage: '' ### -EnrollmentConfigurationAssignments -. + To construct, see NOTES section for ENROLLMENTCONFIGURATIONASSIGNMENTS properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md index 4f1fe9d203474..0c6492ca00950 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md @@ -110,7 +110,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -320,7 +320,7 @@ HelpMessage: '' ### -Priority -. + ```yaml Type: System.Int32 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md index 2f2182cc9b007..cbfac19a2af50 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md @@ -130,7 +130,7 @@ HelpMessage: '' ### -AddressableUserName -. + ```yaml Type: System.String @@ -157,7 +157,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -425,7 +425,7 @@ HelpMessage: '' ### -UserPrincipalName -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md index 72ad7f92e9f9e..d06dd38837eab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md @@ -132,7 +132,7 @@ HelpMessage: '' ### -AddressableUserName -. + ```yaml Type: System.String @@ -159,7 +159,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -230,7 +230,7 @@ HelpMessage: '' ### -DisplayName -. + ```yaml Type: System.String @@ -257,7 +257,7 @@ HelpMessage: '' ### -GroupTag -. + ```yaml Type: System.String @@ -481,7 +481,7 @@ HelpMessage: '' ### -UserPrincipalName -. + ```yaml Type: System.String From cddde376d4df0e07a1553156a964dd325de5c5b3 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:28:59 +0000 Subject: [PATCH 17/17] Corrected related link to conform to the new platyps rules --- .../Get-MgDeviceManagementConditionalAccessSetting.md | 2 +- .../Get-MgDeviceManagementDeviceEnrollmentConfiguration.md | 2 +- ...MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md | 2 +- ...iceManagementDeviceEnrollmentConfigurationAssignmentCount.md | 2 +- .../Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md | 2 +- ...-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md | 2 +- ...viceManagementImportedWindowsAutopilotDeviceIdentityCount.md | 2 +- .../Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md | 2 +- ...Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md | 2 +- .../Get-MgRoleManagement.md | 2 +- ...-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md | 2 +- ...iceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md | 2 +- .../New-MgDeviceManagementDeviceEnrollmentConfiguration.md | 2 +- ...MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md | 2 +- ...-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md | 2 +- .../New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md | 2 +- .../Remove-MgDeviceManagementConditionalAccessSetting.md | 2 +- .../Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md | 2 +- ...MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md | 2 +- ...-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md | 2 +- .../Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md | 2 +- .../Set-MgDeviceManagementDeviceEnrollmentConfiguration.md | 2 +- ...t-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md | 2 +- ...eviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md | 2 +- .../Update-MgDeviceManagementConditionalAccessSetting.md | 2 +- .../Update-MgDeviceManagementDeviceEnrollmentConfiguration.md | 2 +- ...MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md | 2 +- ...-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md | 2 +- ...iceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md | 2 +- .../Update-MgRoleManagement.md | 2 +- 30 files changed, 30 insertions(+), 30 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md index fe186813bce61..144ab911b981d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementConditionalAccessSetting.md @@ -299,7 +299,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementconditionalaccesssetting) +- [Get-MgDeviceManagementConditionalAccessSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementconditionalaccesssetting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md index fc65c0ee3e4c7..2810de1ca8b2b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -550,7 +550,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfiguration) +- [Get-MgDeviceManagementDeviceEnrollmentConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index 5f437702caf71..4bfe2b3f395ab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -579,7 +579,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfigurationassignment) +- [Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfigurationassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md index 7ee060615b6ab..bc1b5387a39a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount.md @@ -352,7 +352,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfigurationassignmentcount) +- [Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfigurationassignmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md index 965b78534c33b..ce159077c410a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementDeviceEnrollmentConfigurationCount.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfigurationcount) +- [Get-MgDeviceManagementDeviceEnrollmentConfigurationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementdeviceenrollmentconfigurationcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index e04aee47e7957..cff61d0e6e1a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -550,7 +550,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementimportedwindowsautopilotdeviceidentity) +- [Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementimportedwindowsautopilotdeviceidentity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md index 32e5f493eab2b..8b89dfe639d80 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementimportedwindowsautopilotdeviceidentitycount) +- [Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementimportedwindowsautopilotdeviceidentitycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md index b26b0504c62aa..b53b613037a01 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentity.md @@ -550,7 +550,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementwindowsautopilotdeviceidentity) +- [Get-MgDeviceManagementWindowsAutopilotDeviceIdentity](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementwindowsautopilotdeviceidentity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md index 0bf5d7cffd147..74c0c79213901 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementwindowsautopilotdeviceidentitycount) +- [Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgdevicemanagementwindowsautopilotdeviceidentitycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md index df9dd678d5521..b097de519e3f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Get-MgRoleManagement.md @@ -284,7 +284,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgrolemanagement) +- [Get-MgRoleManagement](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/get-mgrolemanagement) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 00d0d2ee409fe..9dc4979071135 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -440,7 +440,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/import-mgdevicemanagementimportedwindowsautopilotdeviceidentity) +- [Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/import-mgdevicemanagementimportedwindowsautopilotdeviceidentity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md index 645c88c4fba35..630020fe1e433 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice.md @@ -388,7 +388,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/invoke-mgunassigndevicemanagementwindowsautopilotdeviceidentityuserfromdevice) +- [Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/invoke-mgunassigndevicemanagementwindowsautopilotdeviceidentityuserfromdevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md index b872594525a28..46102c21acf43 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -577,7 +577,7 @@ Users are subject only to the configuration with the lowest priority value. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementdeviceenrollmentconfiguration) +- [New-MgDeviceManagementDeviceEnrollmentConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementdeviceenrollmentconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index d882c40b107a3..0c7a74d2014e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -532,7 +532,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementdeviceenrollmentconfigurationassignment) +- [New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementdeviceenrollmentconfigurationassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 77a3c922762c8..a5a316cd7e905 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -574,7 +574,7 @@ STATE ``: importedWi ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementimportedwindowsautopilotdeviceidentity) +- [New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementimportedwindowsautopilotdeviceidentity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md index 8839ff13f5e7c..6f0ca348133cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/New-MgDeviceManagementWindowsAutopilotDeviceIdentity.md @@ -765,7 +765,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementwindowsautopilotdeviceidentity) +- [New-MgDeviceManagementWindowsAutopilotDeviceIdentity](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/new-mgdevicemanagementwindowsautopilotdeviceidentity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md index 20b6116227f2c..fda27f627bf4d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementConditionalAccessSetting.md @@ -318,7 +318,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementconditionalaccesssetting) +- [Remove-MgDeviceManagementConditionalAccessSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementconditionalaccesssetting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md index 92600422b8a11..4adef78e51407 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -408,7 +408,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementdeviceenrollmentconfiguration) +- [Remove-MgDeviceManagementDeviceEnrollmentConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementdeviceenrollmentconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index 90b237ad79468..93245d466b9b1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -430,7 +430,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementdeviceenrollmentconfigurationassignment) +- [Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementdeviceenrollmentconfigurationassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index 999165166ae1d..0ac8335fcce1c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -409,7 +409,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementimportedwindowsautopilotdeviceidentity) +- [Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementimportedwindowsautopilotdeviceidentity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md index bdb9afc83ca25..31941760a13a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity.md @@ -408,7 +408,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementwindowsautopilotdeviceidentity) +- [Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/remove-mgdevicemanagementwindowsautopilotdeviceidentity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md index 98d144f2967ef..9cb2ea615b12c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -512,7 +512,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/set-mgdevicemanagementdeviceenrollmentconfiguration) +- [Set-MgDeviceManagementDeviceEnrollmentConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/set-mgdevicemanagementdeviceenrollmentconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md index 0c6492ca00950..788ab19e3fe27 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority.md @@ -499,7 +499,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/set-mgdevicemanagementdeviceenrollmentconfigurationpriority) +- [Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/set-mgdevicemanagementdeviceenrollmentconfigurationpriority) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md index cbfac19a2af50..bae1ecf899309 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice.md @@ -547,7 +547,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/set-mgdevicemanagementwindowsautopilotdeviceidentityusertodevice) +- [Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/set-mgdevicemanagementwindowsautopilotdeviceidentityusertodevice) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md index 26e4cff5f6217..af9fec3401b4a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementConditionalAccessSetting.md @@ -492,7 +492,7 @@ All users in these groups will be required to have mobile device managed and com ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementconditionalaccesssetting) +- [Update-MgDeviceManagementConditionalAccessSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementconditionalaccesssetting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md index 9c90414d66872..ff6ae21d43b86 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfiguration.md @@ -749,7 +749,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementdeviceenrollmentconfiguration) +- [Update-MgDeviceManagementDeviceEnrollmentConfiguration](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementdeviceenrollmentconfiguration) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md index baf240f117453..d96fb4a69262b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment.md @@ -559,7 +559,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementdeviceenrollmentconfigurationassignment) +- [Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementdeviceenrollmentconfigurationassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md index d6a241ec4896e..b44d705ebaec9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity.md @@ -687,7 +687,7 @@ STATE ``: importedWi ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementimportedwindowsautopilotdeviceidentity) +- [Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementimportedwindowsautopilotdeviceidentity) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md index d06dd38837eab..22ce79bd2bb73 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty.md @@ -605,7 +605,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementwindowsautopilotdeviceidentitydeviceproperty) +- [Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgdevicemanagementwindowsautopilotdeviceidentitydeviceproperty) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md index 9349dbdef3691..a5363a56bb6e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Enrollment/Update-MgRoleManagement.md @@ -1459,7 +1459,7 @@ Supports $filter (eq, ne). ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgrolemanagement) +- [Update-MgRoleManagement](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.enrollment/update-mgrolemanagement)