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 9886f2d892f12c3dcd8d8665ee2ec03157fe6ebe Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:14:13 +0000 Subject: [PATCH 10/17] Updated markdown help --- ...DeviceManagementRemoteAssistancePartner.md | 47 +- ...agementApplePushNotificationCertificate.md | 46 +- .../Get-MgDeviceManagementAuditEvent.md | 52 +- ...ceManagementAuditEventAuditActivityType.md | 47 +- ...DeviceManagementAuditEventAuditCategory.md | 43 +- .../Get-MgDeviceManagementAuditEventCount.md | 46 +- ...ceManagementComplianceManagementPartner.md | 52 +- ...agementComplianceManagementPartnerCount.md | 46 +- ...Get-MgDeviceManagementExchangeConnector.md | 52 +- ...gDeviceManagementExchangeConnectorCount.md | 46 +- .../Get-MgDeviceManagementIoUpdateStatus.md | 52 +- ...t-MgDeviceManagementIoUpdateStatusCount.md | 46 +- ...eManagementMobileThreatDefenseConnector.md | 52 +- ...gementMobileThreatDefenseConnectorCount.md | 46 +- .../Get-MgDeviceManagementPartner.md | 52 +- .../Get-MgDeviceManagementPartnerCount.md | 46 +- ...DeviceManagementRemoteAssistancePartner.md | 56 +- ...eManagementRemoteAssistancePartnerCount.md | 46 +- ...Get-MgDeviceManagementResourceOperation.md | 52 +- ...gDeviceManagementResourceOperationCount.md | 46 +- .../Get-MgDeviceManagementRoleAssignment.md | 52 +- ...t-MgDeviceManagementRoleAssignmentCount.md | 46 +- ...eManagementRoleAssignmentRoleDefinition.md | 46 +- .../Get-MgDeviceManagementRoleDefinition.md | 52 +- ...t-MgDeviceManagementRoleDefinitionCount.md | 46 +- ...eManagementRoleDefinitionRoleAssignment.md | 51 +- ...gementRoleDefinitionRoleAssignmentCount.md | 50 +- ...eDefinitionRoleAssignmentRoleDefinition.md | 50 +- .../Get-MgDeviceManagementTermAndCondition.md | 52 +- ...agementTermAndConditionAcceptanceStatus.md | 51 +- ...ntTermAndConditionAcceptanceStatusCount.md | 50 +- ...nditionAcceptanceStatusTermAndCondition.md | 50 +- ...iceManagementTermAndConditionAssignment.md | 51 +- ...nagementTermAndConditionAssignmentCount.md | 50 +- ...MgDeviceManagementTermAndConditionCount.md | 46 +- .../Get-MgDeviceManagementVirtualEndpoint.md | 42 +- ...viceManagementVirtualEndpointAuditEvent.md | 56 +- ...tualEndpointAuditEventAuditActivityType.md | 45 +- ...anagementVirtualEndpointAuditEventCount.md | 46 +- ...gDeviceManagementVirtualEndpointCloudPc.md | 65 +-- ...ceManagementVirtualEndpointCloudPcCount.md | 46 +- ...ementVirtualEndpointCloudPcLaunchDetail.md | 45 +- ...iceManagementVirtualEndpointDeviceImage.md | 56 +- ...nagementVirtualEndpointDeviceImageCount.md | 46 +- ...ntVirtualEndpointDeviceImageSourceImage.md | 45 +- ...ceManagementVirtualEndpointGalleryImage.md | 56 +- ...agementVirtualEndpointGalleryImageCount.md | 46 +- ...ementVirtualEndpointOnPremiseConnection.md | 65 +-- ...VirtualEndpointOnPremiseConnectionCount.md | 46 +- ...gementVirtualEndpointProvisioningPolicy.md | 74 +-- ...ualEndpointProvisioningPolicyAssignment.md | 48 +- ...rovisioningPolicyAssignmentAssignedUser.md | 47 +- ...signmentAssignedUserByUserPrincipalName.md | 43 +- ...ioningPolicyAssignmentAssignedUserCount.md | 46 +- ...icyAssignmentAssignedUserMailboxSetting.md | 46 +- ...entAssignedUserServiceProvisioningError.md | 42 +- ...signedUserServiceProvisioningErrorCount.md | 46 +- ...dpointProvisioningPolicyAssignmentCount.md | 46 +- ...tVirtualEndpointProvisioningPolicyCount.md | 46 +- ...MgDeviceManagementVirtualEndpointReport.md | 42 +- ...dpointReportCloudPcRecommendationReport.md | 101 ++-- ...iceManagementVirtualEndpointUserSetting.md | 65 +-- ...entVirtualEndpointUserSettingAssignment.md | 47 +- ...rtualEndpointUserSettingAssignmentCount.md | 46 +- ...nagementVirtualEndpointUserSettingCount.md | 46 +- ...gementRemoteAssistancePartnerOnboarding.md | 47 +- ...shNotificationCertificateSigningRequest.md | 43 +- ...nDeviceManagementVirtualEndpointCloudPc.md | 56 +- ...voke-MgTerminateDeviceManagementPartner.md | 45 +- ...tDeviceManagementVirtualEndpointCloudPc.md | 47 +- ...t.Graph.DeviceManagement.Administration.md | 23 +- .../New-MgDeviceManagementAuditEvent.md | 50 +- ...ceManagementComplianceManagementPartner.md | 50 +- ...New-MgDeviceManagementExchangeConnector.md | 49 +- .../New-MgDeviceManagementIoUpdateStatus.md | 49 +- ...eManagementMobileThreatDefenseConnector.md | 50 +- .../New-MgDeviceManagementPartner.md | 48 +- ...DeviceManagementRemoteAssistancePartner.md | 52 +- ...New-MgDeviceManagementResourceOperation.md | 49 +- .../New-MgDeviceManagementRoleAssignment.md | 50 +- .../New-MgDeviceManagementRoleDefinition.md | 48 +- ...eManagementRoleDefinitionRoleAssignment.md | 57 +- .../New-MgDeviceManagementTermAndCondition.md | 49 +- ...agementTermAndConditionAcceptanceStatus.md | 54 +- ...iceManagementTermAndConditionAssignment.md | 56 +- ...iceManagementVirtualEndpointDeviceImage.md | 51 +- ...ceManagementVirtualEndpointGalleryImage.md | 46 +- ...ementVirtualEndpointOnPremiseConnection.md | 45 +- ...gementVirtualEndpointProvisioningPolicy.md | 187 ++++--- ...ualEndpointProvisioningPolicyAssignment.md | 180 ++++-- ...iceManagementVirtualEndpointUserSetting.md | 53 +- ...entVirtualEndpointUserSettingAssignment.md | 52 +- ...agementApplePushNotificationCertificate.md | 41 +- .../Remove-MgDeviceManagementAuditEvent.md | 48 +- ...ceManagementComplianceManagementPartner.md | 48 +- ...ove-MgDeviceManagementExchangeConnector.md | 48 +- ...Remove-MgDeviceManagementIoUpdateStatus.md | 48 +- ...eManagementMobileThreatDefenseConnector.md | 48 +- .../Remove-MgDeviceManagementPartner.md | 48 +- ...DeviceManagementRemoteAssistancePartner.md | 50 +- ...ove-MgDeviceManagementResourceOperation.md | 48 +- ...Remove-MgDeviceManagementRoleAssignment.md | 48 +- ...Remove-MgDeviceManagementRoleDefinition.md | 48 +- ...eManagementRoleDefinitionRoleAssignment.md | 48 +- ...move-MgDeviceManagementTermAndCondition.md | 48 +- ...agementTermAndConditionAcceptanceStatus.md | 48 +- ...iceManagementTermAndConditionAssignment.md | 48 +- ...iceManagementVirtualEndpointDeviceImage.md | 50 +- ...ceManagementVirtualEndpointGalleryImage.md | 44 +- ...ementVirtualEndpointOnPremiseConnection.md | 42 +- ...gementVirtualEndpointProvisioningPolicy.md | 50 +- ...ualEndpointProvisioningPolicyAssignment.md | 44 +- ...MgDeviceManagementVirtualEndpointReport.md | 41 +- ...iceManagementVirtualEndpointUserSetting.md | 50 +- ...entVirtualEndpointUserSettingAssignment.md | 44 +- ...gDeviceManagementVirtualEndpointCloudPc.md | 55 +- ...gDeviceManagementVirtualEndpointCloudPc.md | 55 +- ...gDeviceManagementVirtualEndpointCloudPc.md | 47 +- ...gDeviceManagementVirtualEndpointCloudPc.md | 55 +- ...gementVirtualEndpointProvisioningPolicy.md | 185 +++--- ...iceManagementVirtualEndpointUserSetting.md | 55 +- ...lEndpointOnPremiseConnectionHealthCheck.md | 39 +- ...gementVirtualEndpointCloudPcGracePeriod.md | 47 +- ...ync-MgDeviceManagementExchangeConnector.md | 51 +- ...agementApplePushNotificationCertificate.md | 50 +- .../Update-MgDeviceManagementAuditEvent.md | 56 +- ...ceManagementComplianceManagementPartner.md | 56 +- ...ate-MgDeviceManagementExchangeConnector.md | 54 +- ...Update-MgDeviceManagementIoUpdateStatus.md | 54 +- ...eManagementMobileThreatDefenseConnector.md | 56 +- .../Update-MgDeviceManagementPartner.md | 54 +- ...DeviceManagementRemoteAssistancePartner.md | 58 +- ...ate-MgDeviceManagementResourceOperation.md | 54 +- ...Update-MgDeviceManagementRoleAssignment.md | 54 +- ...Update-MgDeviceManagementRoleDefinition.md | 54 +- ...eManagementRoleDefinitionRoleAssignment.md | 56 +- ...date-MgDeviceManagementTermAndCondition.md | 56 +- ...agementTermAndConditionAcceptanceStatus.md | 54 +- ...iceManagementTermAndConditionAssignment.md | 55 +- ...iceManagementVirtualEndpointDeviceImage.md | 52 +- ...ceManagementVirtualEndpointGalleryImage.md | 51 +- ...ementVirtualEndpointOnPremiseConnection.md | 50 +- ...ointOnPremiseConnectionAdDomainPassword.md | 528 ++++++++++++++++++ ...gementVirtualEndpointProvisioningPolicy.md | 192 ++++--- ...ualEndpointProvisioningPolicyAssignment.md | 180 ++++-- ...icyAssignmentAssignedUserMailboxSetting.md | 56 +- ...MgDeviceManagementVirtualEndpointReport.md | 42 +- ...iceManagementVirtualEndpointUserSetting.md | 52 +- ...entVirtualEndpointUserSettingAssignment.md | 52 +- 149 files changed, 2483 insertions(+), 6098 deletions(-) create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md index 6608fb73123a1..525e7a5caa4e3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/disconnect-mgdevicemanagementremoteassistancepartner Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Disconnect-MgDeviceManagementRemoteAssistancePartner --- @@ -24,7 +24,6 @@ Disconnect-MgDeviceManagementRemoteAssistancePartner -RemoteAssistancePartnerId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DisconnectViaIdentity @@ -35,7 +34,6 @@ Disconnect-MgDeviceManagementRemoteAssistancePartner [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -47,27 +45,14 @@ This cmdlet has the following aliases, A request to remove the active TeamViewer connector -**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.Administration Disconnect-MgDeviceManagementRemoteAssistancePartner -RemoteAssistancePartnerId $remoteAssistancePartnerId -``` -This example shows how to use the Disconnect-MgDeviceManagementRemoteAssistancePartner Cmdlet. - - ## PARAMETERS ### -Break @@ -377,7 +362,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -408,27 +393,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Disconnect-MgDeviceManagementRemoteAssistancePartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/disconnect-mgdevicemanagementremoteassistancepartner) -- [Graph API Reference](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-disconnect?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/disconnect-mgdevicemanagementremoteassistancepartner) +- [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-disconnect?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md index d55104bf42987..4c55d6b47c356 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementapplepushnotificationcertificate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementApplePushNotificationCertificate --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementApplePushNotificationCertificate Apple push notification certificate. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementApplePushNotificationCertificate](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementApplePushNotificationCertificate?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Apple push notification certificate. Get-MgDeviceManagementApplePushNotificationCertificate [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,27 +35,14 @@ This cmdlet has the following aliases, Apple push notification certificate. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementApplePushNotificationCertificate -``` -This example shows how to use the Get-MgDeviceManagementApplePushNotificationCertificate Cmdlet. - - ## PARAMETERS ### -Break @@ -297,26 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementApplePushNotificationCertificate](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementapplepushnotificationcertificate) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementapplepushnotificationcertificate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md index bc382b73f11d4..6887d4cc20564 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditevent Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementAuditEvent --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementAuditEvent The Audit Events -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementAuditEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementAuditEvent?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementAuditEvent [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgDeviceManagementAuditEvent [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgDeviceManagementAuditEvent -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,27 +56,14 @@ This cmdlet has the following aliases, The Audit Events -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementAuditEvent -``` -This example shows how to use the Get-MgDeviceManagementAuditEvent Cmdlet. - - ## PARAMETERS ### -All @@ -540,7 +524,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -571,26 +555,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementAuditEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditevent) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md index 8248ce8a6291f..b5bc9069100e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditeventauditactivitytype Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementAuditEventAuditActivityType --- @@ -24,7 +24,7 @@ Get-MgDeviceManagementAuditEventAuditActivityType -Category [-Count] [- [-Search ] [-Skip ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -35,7 +35,7 @@ Get-MgDeviceManagementAuditEventAuditActivityType [-Search ] [-Skip ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -47,13 +47,15 @@ This cmdlet has the following aliases, Invoke function getAuditActivityTypes -**Permissions** +## EXAMPLES -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} ## PARAMETERS @@ -405,7 +407,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -436,27 +438,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementAuditEventAuditActivityType](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditeventauditactivitytype) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditeventauditactivitytype) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md index f450c97af3dd5..1670d5f2d1662 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditeventauditcategory Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementAuditEventAuditCategory --- @@ -23,7 +23,7 @@ Invoke function getAuditCategories Get-MgDeviceManagementAuditEventAuditCategory [-Count] [-Filter ] [-Search ] [-Skip ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -35,27 +35,14 @@ This cmdlet has the following aliases, Invoke function getAuditCategories -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementAuditEventAuditCategory -``` -This example shows how to use the Get-MgDeviceManagementAuditEventAuditCategory Cmdlet. - - ## PARAMETERS ### -Break @@ -356,26 +343,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementAuditEventAuditCategory](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditeventauditcategory) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditeventauditcategory) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md index 13161e0d44d7f..3784f4d88cfc0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditeventcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementAuditEventCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementAuditEventCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementAuditEventCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementAuditEventCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementAuditEventCount [-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) | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementAuditEventCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditeventcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditeventcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md index ced9e20e56e4d..649f9ac5e0300 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementcompliancemanagementpartner Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementComplianceManagementPartner --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementComplianceManagementPartner The list of Compliance Management Partners configured by the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementComplianceManagementPartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementComplianceManagementPartner?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementComplianceManagementPartner [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementComplianceManagementPartner -ComplianceManagementPartnerId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementComplianceManagementPartner -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 Compliance Management Partners configured by the tenant. -**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.Administration Get-MgDeviceManagementComplianceManagementPartner -``` -This example shows how to use the Get-MgDeviceManagementComplianceManagementPartner 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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -572,26 +556,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementComplianceManagementPartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementcompliancemanagementpartner) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementcompliancemanagementpartner) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md index d8dcfd0ed1eb0..a3ceec0caa942 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementcompliancemanagementpartnercount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementComplianceManagementPartnerCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementComplianceManagementPartnerCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementComplianceManagementPartnerCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementComplianceManagementPartnerCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementComplianceManagementPartnerCount [-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-MgDeviceManagementComplianceManagementPartnerCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementcompliancemanagementpartnercount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementcompliancemanagementpartnercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md index afda8dc465b24..553e5b2cd6450 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementexchangeconnector Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementExchangeConnector --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementExchangeConnector The list of Exchange Connectors configured by the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementExchangeConnector](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementExchangeConnector?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementExchangeConnector [-ExpandProperty ] [-Property [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementExchangeConnector -DeviceManagementExchangeConnectorId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementExchangeConnector -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, The list of Exchange Connectors configured by the tenant. -**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.Administration Get-MgDeviceManagementExchangeConnector -``` -This example shows how to use the Get-MgDeviceManagementExchangeConnector 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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -572,26 +556,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementExchangeConnector](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementexchangeconnector) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementexchangeconnector) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.md index 19750ce3cbd00..7c82a9b479271 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementexchangeconnectorcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementExchangeConnectorCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementExchangeConnectorCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementExchangeConnectorCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementExchangeConnectorCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementExchangeConnectorCount [-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-MgDeviceManagementExchangeConnectorCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementexchangeconnectorcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementexchangeconnectorcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md index a6357011e67d6..fccd44ca840fa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementioupdatestatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementIoUpdateStatus --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementIoUpdateStatus The IOS software update installation statuses for this account. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementIoUpdateStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementIoUpdateStatus?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementIoUpdateStatus [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgDeviceManagementIoUpdateStatus [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgDeviceManagementIoUpdateStatus -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,27 +56,14 @@ This cmdlet has the following aliases, The IOS software update installation statuses for this account. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementIoUpdateStatus -``` -This example shows how to use the Get-MgDeviceManagementIoUpdateStatus Cmdlet. - - ## PARAMETERS ### -All @@ -540,7 +524,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -571,26 +555,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementIoUpdateStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementioupdatestatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementioupdatestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md index ef123ccecdde5..61c0c3db629de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementioupdatestatuscount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementIoUpdateStatusCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementIoUpdateStatusCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementIoUpdateStatusCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementIoUpdateStatusCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementIoUpdateStatusCount [-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) | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementIoUpdateStatusCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementioupdatestatuscount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementioupdatestatuscount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md index 731a8ea8d7a24..cf25113168027 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementmobilethreatdefenseconnector Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementMobileThreatDefenseConnector --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementMobileThreatDefenseConnector The list of Mobile threat Defense connectors configured by the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementMobileThreatDefenseConnector](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementMobileThreatDefenseConnector?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementMobileThreatDefenseConnector [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementMobileThreatDefenseConnector -MobileThreatDefenseConnector [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementMobileThreatDefenseConnector -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 Mobile threat Defense connectors configured by the tenant. -**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.Administration Get-MgDeviceManagementMobileThreatDefenseConnector -``` -This example shows how to use the Get-MgDeviceManagementMobileThreatDefenseConnector 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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -572,26 +556,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementMobileThreatDefenseConnector](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementmobilethreatdefenseconnector) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementmobilethreatdefenseconnector) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md index 3efd7b8f509d8..c4861b513a4df 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementmobilethreatdefenseconnectorcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementMobileThreatDefenseConnectorCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementMobileThreatDefenseConnectorCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementMobileThreatDefenseConnectorCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementMobileThreatDefenseConnectorCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementMobileThreatDefenseConnectorCount [-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-MgDeviceManagementMobileThreatDefenseConnectorCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementmobilethreatdefenseconnectorcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementmobilethreatdefenseconnectorcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md index 5e5154ede4c31..353b35ae7584e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementpartner Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementPartner --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementPartner The list of Device Management Partners configured by the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementPartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementPartner?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementPartner [-ExpandProperty ] [-Property [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgDeviceManagementPartner [-ExpandProperty ] [-Property Get-MgDeviceManagementPartner -DeviceManagementPartnerId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgDeviceManagementPartner -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,27 +56,14 @@ This cmdlet has the following aliases, The list of Device Management Partners configured by the tenant. -**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.Administration Get-MgDeviceManagementPartner -``` -This example shows how to use the Get-MgDeviceManagementPartner Cmdlet. - - ## PARAMETERS ### -All @@ -540,7 +524,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -571,26 +555,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementPartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementpartner) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementpartner) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.md index 52147d3ff8a4f..127ff52924457 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementpartnercount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementPartnerCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementPartnerCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementPartnerCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementPartnerCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementPartnerCount [-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-MgDeviceManagementPartnerCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementpartnercount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementpartnercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md index 53b9769ec401a..19e8b5d1b3119 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementremoteassistancepartner Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementRemoteAssistancePartner --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementRemoteAssistancePartner Read properties and relationships of the remoteAssistancePartner object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRemoteAssistancePartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRemoteAssistancePartner?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementRemoteAssistancePartner [-ExpandProperty ] [-Pro [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementRemoteAssistancePartner -RemoteAssistancePartnerId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementRemoteAssistancePartner -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, Read properties and relationships of the remoteAssistancePartner object. -**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.Administration Get-MgDeviceManagementRemoteAssistancePartner -``` -This example shows how to use the Get-MgDeviceManagementRemoteAssistancePartner 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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -572,28 +556,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementRemoteAssistancePartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementremoteassistancepartner) -- [Graph API Reference](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-list?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementremoteassistancepartner) +- [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md index 2594a9ca39ea6..f31710ab2ff73 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementremoteassistancepartnercount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementRemoteAssistancePartnerCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementRemoteAssistancePartnerCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRemoteAssistancePartnerCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRemoteAssistancePartnerCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementRemoteAssistancePartnerCount [-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-MgDeviceManagementRemoteAssistancePartnerCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementremoteassistancepartnercount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementremoteassistancepartnercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md index d657b360c7c1b..f056051b8115b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementresourceoperation Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementResourceOperation --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementResourceOperation The Resource Operations. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementResourceOperation](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementResourceOperation?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementResourceOperation [-ExpandProperty ] [-Property [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgDeviceManagementResourceOperation [-ExpandProperty ] [-Property Get-MgDeviceManagementResourceOperation -ResourceOperationId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgDeviceManagementResourceOperation -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,27 +56,14 @@ This cmdlet has the following aliases, The Resource Operations. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementResourceOperation -``` -This example shows how to use the Get-MgDeviceManagementResourceOperation Cmdlet. - - ## PARAMETERS ### -All @@ -540,7 +524,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -571,26 +555,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementResourceOperation](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementresourceoperation) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementresourceoperation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md index fabe83d53556f..cf9ee0072f83d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementresourceoperationcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementResourceOperationCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementResourceOperationCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementResourceOperationCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementResourceOperationCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementResourceOperationCount [-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) | DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.Read.All, DeviceManagementRBAC.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-MgDeviceManagementResourceOperationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementresourceoperationcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementresourceoperationcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md index a10b947dbf2c8..67ab862c0495f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroleassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementRoleAssignment --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementRoleAssignment The Role Assignments. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRoleAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementRoleAssignment [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementRoleAssignment -DeviceAndAppManagementRoleAssignmentId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementRoleAssignment -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, The Role Assignments. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementRoleAssignment -``` -This example shows how to use the Get-MgDeviceManagementRoleAssignment 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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -572,26 +556,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroleassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroleassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md index cd1691486dd42..681688f2fb3c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroleassignmentcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementRoleAssignmentCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementRoleAssignmentCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRoleAssignmentCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRoleAssignmentCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementRoleAssignmentCount [-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) | DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.Read.All, DeviceManagementRBAC.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-MgDeviceManagementRoleAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroleassignmentcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroleassignmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md index 150f27bbc16a0..be765d112c5d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroleassignmentroledefinition Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementRoleAssignmentRoleDefinition --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementRoleAssignmentRoleDefinition Indicates the role definition for this role assignment. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRoleAssignmentRoleDefinition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRoleAssignmentRoleDefinition?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementRoleAssignmentRoleDefinition -DeviceAndAppManagementRoleAs [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementRoleAssignmentRoleDefinition -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Indicates the role definition for this role assignment. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -337,7 +344,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -368,27 +375,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementRoleAssignmentRoleDefinition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroleassignmentroledefinition) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroleassignmentroledefinition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md index a7cad9ba5f8b0..d6a421e6e5bf3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinition Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementRoleDefinition --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementRoleDefinition The Role Definitions. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRoleDefinition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRoleDefinition?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementRoleDefinition [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgDeviceManagementRoleDefinition [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgDeviceManagementRoleDefinition -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,27 +56,14 @@ This cmdlet has the following aliases, The Role Definitions. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementRoleDefinition -``` -This example shows how to use the Get-MgDeviceManagementRoleDefinition Cmdlet. - - ## PARAMETERS ### -All @@ -540,7 +524,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -571,26 +555,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementRoleDefinition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinition) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md index a6e193d55d3c6..a3e673d8d1a9a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitioncount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementRoleDefinitionCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementRoleDefinitionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRoleDefinitionCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRoleDefinitionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementRoleDefinitionCount [-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) | DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.Read.All, DeviceManagementRBAC.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-MgDeviceManagementRoleDefinitionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md index 2ad8b69dcc141..9440a5f7141da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitionroleassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementRoleDefinitionRoleAssignment --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementRoleDefinitionRoleAssignment List of Role assignments for this role definition. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRoleDefinitionRoleAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRoleDefinitionRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgDeviceManagementRoleDefinitionRoleAssignment -RoleDefinitionId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgDeviceManagementRoleDefinitionRoleAssignment -RoleAssignmentId -RoleDefinitionId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgDeviceManagementRoleDefinitionRoleAssignment -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,27 +57,14 @@ This cmdlet has the following aliases, List of Role assignments for this role definition. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementRoleDefinitionRoleAssignment -RoleDefinitionId $roleDefinitionId -``` -This example shows how to use the Get-MgDeviceManagementRoleDefinitionRoleAssignment Cmdlet. - - ## PARAMETERS ### -All @@ -569,7 +552,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -600,26 +583,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementRoleDefinitionRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitionroleassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitionroleassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md index 3b4629974b79b..30ce21032f68d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitionroleassignmentcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRoleDefinitionRoleAssignmentCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRoleDefinitionRoleAssignmentCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount -RoleDefinitionId ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount -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) | DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.Read.All, DeviceManagementRBAC.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -374,27 +373,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitionroleassignmentcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitionroleassignmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md index 2c0715b11ae4e..9b7b9a9db6639 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitionroleassignmentroledefinition Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition Indicates the role definition for this role assignment. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition -RoleAssignment -RoleDefinitionId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Indicates the role definition for this role assignment. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.Read.All, DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementConfiguration.Read.All, | +{{ Add code here }} ## PARAMETERS @@ -366,7 +365,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -397,27 +396,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitionroleassignmentroledefinition) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitionroleassignmentroledefinition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md index d724ebf8e33da..1f54af5840b1a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandcondition Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementTermAndCondition --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementTermAndCondition The terms and conditions associated with device management of the company. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementTermAndCondition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementTermAndCondition?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementTermAndCondition [-ExpandProperty ] [-Property < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgDeviceManagementTermAndCondition [-ExpandProperty ] [-Property < Get-MgDeviceManagementTermAndCondition -TermsAndConditionsId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgDeviceManagementTermAndCondition -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,27 +56,14 @@ This cmdlet has the following aliases, The terms and conditions associated with device management of the company. -**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.Administration Get-MgDeviceManagementTermAndCondition -``` -This example shows how to use the Get-MgDeviceManagementTermAndCondition Cmdlet. - - ## PARAMETERS ### -All @@ -540,7 +524,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -571,26 +555,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementTermAndCondition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandcondition) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandcondition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md index 256e380c12516..bd3dba0272358 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionacceptancestatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementTermAndConditionAcceptanceStatus --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementTermAndConditionAcceptanceStatus The list of acceptance statuses for this T&C policy. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatus?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgDeviceManagementTermAndConditionAcceptanceStatus -TermsAndConditionsId ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -40,7 +36,7 @@ Get-MgDeviceManagementTermAndConditionAcceptanceStatus [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +46,7 @@ Get-MgDeviceManagementTermAndConditionAcceptanceStatus -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,27 +58,14 @@ This cmdlet has the following aliases, The list of acceptance statuses for this T&C policy. -**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.Administration Get-MgDeviceManagementTermAndConditionAcceptanceStatus -TermsAndConditionsId $termsAndConditionsId -``` -This example shows how to use the Get-MgDeviceManagementTermAndConditionAcceptanceStatus Cmdlet. - - ## PARAMETERS ### -All @@ -570,7 +553,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -601,26 +584,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementTermAndConditionAcceptanceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionacceptancestatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionacceptancestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md index 1f713ea225380..749c645fc4ea1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionacceptancestatuscount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatusCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatusCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount -TermsAndConditionsI [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount -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, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -374,27 +373,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionacceptancestatuscount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionacceptancestatuscount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md index a78044ed2731b..4e0393792e18a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionacceptancestatustermandcondition Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition Navigation link to the terms and conditions that are assigned. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,13 +47,15 @@ This cmdlet has the following aliases, Navigation link to the terms and conditions that are assigned. -**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 @@ -367,7 +366,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -398,27 +397,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionacceptancestatustermandcondition) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionacceptancestatustermandcondition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md index fa2bc381ab0e8..44e52a60be75d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementTermAndConditionAssignment --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementTermAndConditionAssignment The list of assignments for this T&C policy. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementTermAndConditionAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementTermAndConditionAssignment?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,6 @@ Get-MgDeviceManagementTermAndConditionAssignment -TermsAndConditionsId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -39,7 +35,7 @@ Get-MgDeviceManagementTermAndConditionAssignment -TermsAndConditionsAssignmentId -TermsAndConditionsId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +45,7 @@ Get-MgDeviceManagementTermAndConditionAssignment -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,27 +57,14 @@ This cmdlet has the following aliases, The list of assignments for this T&C policy. -**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.Administration Get-MgDeviceManagementTermAndConditionAssignment -TermsAndConditionsId $termsAndConditionsId -``` -This example shows how to use the Get-MgDeviceManagementTermAndConditionAssignment Cmdlet. - - ## PARAMETERS ### -All @@ -569,7 +552,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -600,26 +583,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementTermAndConditionAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md index 624652ce4884e..b2135670a196d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionassignmentcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementTermAndConditionAssignmentCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementTermAndConditionAssignmentCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementTermAndConditionAssignmentCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementTermAndConditionAssignmentCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementTermAndConditionAssignmentCount -TermsAndConditionsId ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementTermAndConditionAssignmentCount -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, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -374,27 +373,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementTermAndConditionAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionassignmentcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionassignmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md index 1f67502b2f3eb..cbda0507143ba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditioncount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementTermAndConditionCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementTermAndConditionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementTermAndConditionCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementTermAndConditionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementTermAndConditionCount [-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-MgDeviceManagementTermAndConditionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.md index f2f570175f04f..5662f57bceb1c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpoint Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpoint --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementVirtualEndpoint Get virtualEndpoint from deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpoint](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpoint?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get virtualEndpoint from deviceManagement Get-MgDeviceManagementVirtualEndpoint [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get virtualEndpoint from deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -276,27 +283,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpoint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpoint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md index 319ee83c1693a..92e2eaf864b7c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointauditevent Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointAuditEvent --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementVirtualEndpointAuditEvent Read the properties and relationships of a cloudPcAuditEvent object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointAuditEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointAuditEvent?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementVirtualEndpointAuditEvent [-ExpandProperty ] [-P [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementVirtualEndpointAuditEvent -CloudPcAuditEventId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementVirtualEndpointAuditEvent -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a cloudPcAuditEvent object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementVirtualEndpointAuditEvent -``` -This example shows how to use the Get-MgDeviceManagementVirtualEndpointAuditEvent 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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -572,28 +556,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointAuditEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointauditevent) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcauditevent-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-list-auditevents?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointauditevent) +- [](https://learn.microsoft.com/graph/api/cloudpcauditevent-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/virtualendpoint-list-auditevents?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md index dcbc7b6250264..a56e244ed19a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointauditeventauditactivitytype Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType --- @@ -24,7 +24,7 @@ Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType [-Count] [-Filt [-Search ] [-Skip ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -36,27 +36,14 @@ This cmdlet has the following aliases, Get audit activity types by tenant ID. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType -``` -This example shows how to use the Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType Cmdlet. - - ## PARAMETERS ### -Break @@ -357,27 +344,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointauditeventauditactivitytype) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcauditevent-getauditactivitytypes?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointauditeventauditactivitytype) +- [](https://learn.microsoft.com/graph/api/cloudpcauditevent-getauditactivitytypes?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md index 075fbca905262..1abd02fc14378 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointauditeventcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointAuditEventCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementVirtualEndpointAuditEventCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointAuditEventCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointAuditEventCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementVirtualEndpointAuditEventCount [-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) | CloudPC.Read.All, CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointAuditEventCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointauditeventcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointauditeventcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md index e9e0862e6d177..5f32016b8c8f8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointcloudpc Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointCloudPc --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementVirtualEndpointCloudPc Read the properties and relationships of a specific cloudPC object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointCloudPc](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointCloudPc?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementVirtualEndpointCloudPc [-ExpandProperty ] [-Prop [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgDeviceManagementVirtualEndpointCloudPc [-ExpandProperty ] [-Prop Get-MgDeviceManagementVirtualEndpointCloudPc -CloudPcId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgDeviceManagementVirtualEndpointCloudPc -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,37 +56,19 @@ This cmdlet has the following aliases, Read the properties and relationships of a specific cloudPC object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: List all cloudPC devices in a tenant -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementVirtualEndpointCloudPc -``` -This example will list all cloudpc devices in a tenant - -### Example 2: Get the top two cloudPC devices in a tenant - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.DeviceManagement.Administration -Get-MgDeviceManagementVirtualEndpointCloudPc -Top 2 - -``` -This example will get the top two cloudpc devices in a tenant - +Get-MgDeviceManagementVirtualEndpointCloudPc -Top 2 ## PARAMETERS @@ -551,7 +530,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -582,28 +561,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointCloudPc](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointcloudpc) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpc-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-list-cloudpcs?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointcloudpc) +- [](https://learn.microsoft.com/graph/api/cloudpc-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/virtualendpoint-list-cloudpcs?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md index 383697a3f2361..9e01fd5f5073b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointcloudpccount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointCloudPcCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementVirtualEndpointCloudPcCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointCloudPcCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointCloudPcCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementVirtualEndpointCloudPcCount [-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) | CloudPC.Read.All, CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointCloudPcCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointcloudpccount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointcloudpccount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail.md index 1b20365541d7a..be3e486b09769 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointcloudpclaunchdetail Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail --- @@ -23,7 +23,7 @@ Get the cloudPcLaunchDetail for a specific cloudPC that belongs to the current s Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail -CloudPcId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### RetrieveViaIdentity @@ -33,7 +33,7 @@ Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -45,6 +45,16 @@ This cmdlet has the following aliases, Get the cloudPcLaunchDetail for a specific cloudPC that belongs to the current signed-in user. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -289,7 +299,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -320,28 +330,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointcloudpclaunchdetail) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpc-retrievecloudpclaunchdetail?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointcloudpclaunchdetail) +- [](https://learn.microsoft.com/graph/api/cloudpc-retrievecloudpclaunchdetail?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md index c505ef87d9df1..f42a202afa3f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointdeviceimage Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointDeviceImage --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementVirtualEndpointDeviceImage Read the properties and relationships of a specific cloudPcDeviceImage object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointDeviceImage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointDeviceImage?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementVirtualEndpointDeviceImage [-ExpandProperty ] [- [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementVirtualEndpointDeviceImage -CloudPcDeviceImageId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementVirtualEndpointDeviceImage -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a specific cloudPcDeviceImage object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementVirtualEndpointDeviceImage -``` -This example shows how to use the Get-MgDeviceManagementVirtualEndpointDeviceImage 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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -572,28 +556,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointDeviceImage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointdeviceimage) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-list-deviceimages?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointdeviceimage) +- [](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/virtualendpoint-list-deviceimages?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md index 9608d3760613d..cc6438fee7765 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointdeviceimagecount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointDeviceImageCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementVirtualEndpointDeviceImageCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointDeviceImageCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointDeviceImageCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementVirtualEndpointDeviceImageCount [-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) | CloudPC.Read.All, CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointDeviceImageCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointdeviceimagecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointdeviceimagecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md index aa57533eed322..3d4a833c7115a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointdeviceimagesourceimage Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage --- @@ -25,7 +25,7 @@ Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage [-Count] [-Filter ] [-Skip ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,27 +38,14 @@ This cmdlet has the following aliases, Get cloudPcSourceDeviceImage objects that can be uploaded and used on Cloud PCs. View a list of all the managed image resources from your Microsoft Entra subscriptions. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage -``` -This example shows how to use the Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage Cmdlet. - - ## PARAMETERS ### -Break @@ -359,27 +346,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointdeviceimagesourceimage) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-getsourceimages?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointdeviceimagesourceimage) +- [](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-getsourceimages?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md index 37ccb8ce17da7..d6b6888459c8f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointgalleryimage Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointGalleryImage --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementVirtualEndpointGalleryImage Read the properties and relationships of a specific cloudPcGalleryImage object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointGalleryImage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointGalleryImage?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementVirtualEndpointGalleryImage [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementVirtualEndpointGalleryImage -CloudPcGalleryImageId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementVirtualEndpointGalleryImage -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,27 +57,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a specific cloudPcGalleryImage object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementVirtualEndpointGalleryImage -``` -This example shows how to use the Get-MgDeviceManagementVirtualEndpointGalleryImage 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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -572,28 +556,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointGalleryImage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointgalleryimage) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcgalleryimage-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-list-galleryimages?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointgalleryimage) +- [](https://learn.microsoft.com/graph/api/cloudpcgalleryimage-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/virtualendpoint-list-galleryimages?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md index de37b2aac6775..f6ad27af222bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointgalleryimagecount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointGalleryImageCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementVirtualEndpointGalleryImageCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointGalleryImageCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointGalleryImageCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementVirtualEndpointGalleryImageCount [-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) | CloudPC.Read.All, CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointGalleryImageCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointgalleryimagecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointgalleryimagecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index 06d1ae4a8dd9b..7a096b4e9a480 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointonpremiseconnection Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointOnPremiseConnection --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementVirtualEndpointOnPremiseConnection Read the properties and relationships of the cloudPcOnPremisesConnection object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementVirtualEndpointOnPremiseConnection [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementVirtualEndpointOnPremiseConnection -CloudPcOnPremisesConne [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementVirtualEndpointOnPremiseConnection -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,37 +57,19 @@ This cmdlet has the following aliases, Read the properties and relationships of the cloudPcOnPremisesConnection object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Get the default properties of an Azure network connection -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementVirtualEndpointOnPremiseConnection -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId -``` -This example will get the default properties of an azure network connection - -### Example 2: Get the selected properties of an Azure network connection, including healthCheckStatusDetail - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.DeviceManagement.Administration -Get-MgDeviceManagementVirtualEndpointOnPremiseConnection -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId -Property "id,displayName,healthCheckStatus,healthCheckStatusDetail,inUse" - -``` -This example will get the selected properties of an azure network connection, including healthcheckstatusdetail - +Get-MgDeviceManagementVirtualEndpointOnPremiseConnection -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId -Property "id,displayName,healthCheckStatus,healthCheckStatusDetail,inUse" ## PARAMETERS @@ -552,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. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -583,28 +562,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointOnPremiseConnection](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointonpremiseconnection) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-list-onpremisesconnections?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointonpremiseconnection) +- [](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/virtualendpoint-list-onpremisesconnections?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md index de470956cf4fc..1e7d54161e3cc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointonpremiseconnectioncount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnectionCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnectionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount [-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) | CloudPC.Read.All, CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointonpremiseconnectioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointonpremiseconnectioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 9d6a5c3a5678e..da7febaf7f343 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicy Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicy --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicy Read the properties and relationships of a cloudPcProvisioningPolicy object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicy [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPoli [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicy -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,48 +57,25 @@ This cmdlet has the following aliases, Read the properties and relationships of a cloudPcProvisioningPolicy object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Get the properties of the specified provisioning policy -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -``` -This example will get the properties of the specified provisioning policy - -### Example 2: Get the properties of the specified provisioning policy and expand on the assignments - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.DeviceManagement.Administration -Get-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -ExpandProperty "assignments" - -``` -This example will get the properties of the specified provisioning policy and expand on the assignments - -### Example 3: Get the selected properties of the specified provisioning policy +Get-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -ExpandProperty "assignments" -```powershell +### EXAMPLE 3 Import-Module Microsoft.Graph.DeviceManagement.Administration -Get-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -Property "id,description,displayName,domainJoinConfigurations,imageDisplayName,imageId,imageType,windowsSetting,cloudPcGroupDisplayName,gracePeriodInHours,localAdminEnabled,alternateResourceUrl" - -``` -This example will get the selected properties of the specified provisioning policy - +Get-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -Property "id,description,displayName,domainJoinConfigurations,imageDisplayName,imageId,imageType,windowsSetting,cloudPcGroupDisplayName,gracePeriodInHours,localAdminEnabled,alternateResourceUrl" ## PARAMETERS @@ -563,7 +537,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -594,28 +568,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-list-provisioningpolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicy) +- [](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/virtualendpoint-list-provisioningpolicies?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index 06a7cf5c89cab..47abf28efba74 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment --- @@ -18,9 +18,6 @@ Represents the set of Microsoft 365 groups and security groups in Microsoft Entr Returned only on $expand. For an example about how to get the assignments relationship, see Get cloudPcProvisioningPolicy. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -32,7 +29,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -43,7 +40,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -53,7 +50,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -68,6 +65,16 @@ Represents the set of Microsoft 365 groups and security groups in Microsoft Entr Returned only on $expand. For an example about how to get the assignments relationship, see Get cloudPcProvisioningPolicy. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -555,7 +562,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -586,27 +593,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md index a3741c110c364..0506f63f91f26 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduser Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser --- @@ -18,9 +18,6 @@ This list of users is computed based on assignments, licenses, group memberships Read-only. Supports$expand. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -33,7 +30,6 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -44,7 +40,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -54,7 +50,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -69,6 +65,16 @@ This list of users is computed based on assignments, licenses, group memberships Read-only. Supports$expand. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -583,7 +589,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -614,27 +620,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduser) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduser) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName.md index 19452102a0189..5026e8bfef834 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduserbyuserprincipalname Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName --- @@ -28,7 +28,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByU -UserPrincipalName [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +38,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByU -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -53,6 +53,16 @@ This list of users is computed based on assignments, licenses, group memberships Read-only. Supports$expand. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -383,7 +393,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -414,27 +424,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduserbyuserprincipalname) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduserbyuserprincipalname) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md index efb9b8208d6e5..a71fe306ca69b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassignedusercount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssigned Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCou [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCou -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,6 +47,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -357,7 +364,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -388,27 +395,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassignedusercount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassignedusercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md index 90c91635645a8..145c3485b7f2f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassignedusermailboxsetting Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting --- @@ -17,9 +17,6 @@ Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Requires $select to retrieve. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -30,7 +27,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMai -UserId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -40,7 +37,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMai -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -54,6 +51,16 @@ Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Requires $select to retrieve. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -384,7 +391,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -415,27 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassignedusermailboxsetting) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassignedusermailboxsetting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md index 9b1608e1ed3d2..4144480e8376a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduserserviceprovisioningerror Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError --- @@ -16,9 +16,6 @@ title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssigned Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -31,7 +28,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserSer [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ## ALIASES @@ -44,6 +41,16 @@ This cmdlet has the following aliases, Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -517,27 +524,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduserserviceprovisioningerror) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduserserviceprovisioningerror) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md index 83b4c82a8df45..019815a44a5cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduserserviceprovisioningerrorcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssigned Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserSer -UserId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserSer -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,6 +47,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -378,7 +385,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -409,27 +416,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduserserviceprovisioningerrorcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduserserviceprovisioningerrorcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md index 4197ab6722889..ce144f9f948e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount -CloudPcProvisioningPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -335,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -366,27 +373,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md index a7ae3713e95e6..233cbb0125fa6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicycount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount [-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) | CloudPC.Read.All, CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md index e344c83985982..b55b06cb997d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointreport Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointReport --- @@ -16,9 +16,6 @@ title: Get-MgDeviceManagementVirtualEndpointReport Cloud PC-related reports. Read-only. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointReport](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointReport?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Read-only. Get-MgDeviceManagementVirtualEndpointReport [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -40,6 +37,16 @@ This cmdlet has the following aliases, Cloud PC-related reports. Read-only. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -278,27 +285,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointReport](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointreport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointreport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md index 2fa7d03afeb0a..b73e956917032 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointreportcloudpcrecommendationreport Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport --- @@ -27,7 +27,6 @@ Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport -OutFile [-Skip ] [-Sort ] [-Top ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Retrieve @@ -38,7 +37,6 @@ Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport -OutFile [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,13 +49,51 @@ This cmdlet has the following aliases, Retrieve Cloud PC recommendation reports for usage optimization and cost savings. The usage category report categorizes a Cloud PC as Undersized, Oversized, Rightsized, or Underutilized, and also provides the recommended SKU when the Cloud PC isn't Rightsized. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.ReadWrite.All, | +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.DeviceManagement.Administration + +$params = @{ + reportType = "cloudPcUsageCategoryReport" + select = @( + "ServicePlanId" +"ServicePlanName" +"UsageInsight" +) +groupBy = @( +"ServicePlanId" +"ServicePlanName" +"UsageInsight" +) +} + +Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport -BodyParameter $params + +### EXAMPLE 2 + +Import-Module Microsoft.Graph.DeviceManagement.Administration + +$params = @{ + reportType = "cloudPcUsageCategoryReport" + filter = "" + select = @( + "CloudPcId" +"ManagedDeviceName" +"UserPrincipalName" +"ServicePlanId" +"ServicePlanName" +"UsageInsight" +"RecommendedPlanId" +"RecommendedPlanName" +) +search = "" +skip = 0 +top = 15 +} + +Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport -BodyParameter $params ## PARAMETERS @@ -84,7 +120,7 @@ HelpMessage: '' ### -Body - +. To construct, see NOTES section for BODY properties and create a hash table. ```yaml @@ -149,7 +185,7 @@ HelpMessage: '' ### -Filter - +. ```yaml Type: System.String @@ -170,7 +206,7 @@ HelpMessage: '' ### -GroupBy - +. ```yaml Type: System.String[] @@ -296,7 +332,7 @@ HelpMessage: '' ### -Property - +. ```yaml Type: System.String[] @@ -424,7 +460,7 @@ HelpMessage: '' ### -Search - +. ```yaml Type: System.String @@ -445,7 +481,7 @@ HelpMessage: '' ### -Skip - +. ```yaml Type: System.Int32 @@ -466,7 +502,7 @@ HelpMessage: '' ### -Sort - +. ```yaml Type: System.String[] @@ -488,7 +524,7 @@ HelpMessage: '' ### -Top - +. ```yaml Type: System.Int32 @@ -560,7 +596,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. -BODY ``: . +BODY : . [(Any) ]: This indicates any property can be added to this object. [Filter ]: [GroupBy ]: @@ -574,28 +610,5 @@ BODY ` [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointUserSetting](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointUserSetting?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgDeviceManagementVirtualEndpointUserSetting [-ExpandProperty ] [- [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgDeviceManagementVirtualEndpointUserSetting -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,37 +57,19 @@ This cmdlet has the following aliases, Read the properties and relationships of a cloudPcUserSetting object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Get the properties of the specified user setting -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId $cloudPcUserSettingId -``` -This example will get the properties of the specified user setting - -### Example 2: Get the properties of the specified user setting and expand on the assignments - -```powershell +### EXAMPLE 2 Import-Module Microsoft.Graph.DeviceManagement.Administration -Get-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId $cloudPcUserSettingId -ExpandProperty "assignments" - -``` -This example will get the properties of the specified user setting and expand on the assignments - +Get-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId $cloudPcUserSettingId -ExpandProperty "assignments" ## PARAMETERS @@ -552,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. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -583,28 +562,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointUserSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersetting) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcusersetting-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-list-usersettings?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersetting) +- [](https://learn.microsoft.com/graph/api/cloudpcusersetting-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/virtualendpoint-list-usersettings?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index eeeacc828d15a..fea569758fc0b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersettingassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointUserSettingAssignment --- @@ -17,9 +17,6 @@ Represents the set of Microsoft 365 groups and security groups in Microsoft Entr Returned only on $expand. For an example, see Get cloudPcUserSetting. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -31,7 +28,6 @@ Get-MgDeviceManagementVirtualEndpointUserSettingAssignment -CloudPcUserSettingId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] [-CountVariable ] - [] ``` ### Get @@ -41,7 +37,7 @@ Get-MgDeviceManagementVirtualEndpointUserSettingAssignment -CloudPcUserSettingAs -CloudPcUserSettingId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -51,7 +47,7 @@ Get-MgDeviceManagementVirtualEndpointUserSettingAssignment -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -65,6 +61,16 @@ Represents the set of Microsoft 365 groups and security groups in Microsoft Entr Returned only on $expand. For an example, see Get cloudPcUserSetting. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -552,7 +558,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -583,27 +589,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointUserSettingAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersettingassignment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersettingassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md index 564a187aaa306..ca189a2d32b9b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersettingassignmentcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignmentCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignmentCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount -CloudPcUserSett [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -335,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -366,27 +373,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersettingassignmentcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersettingassignmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md index 1b9747fdec620..3147dbc4a34e8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersettingcount Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgDeviceManagementVirtualEndpointUserSettingCount --- @@ -15,9 +15,6 @@ title: Get-MgDeviceManagementVirtualEndpointUserSettingCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointUserSettingCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointUserSettingCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgDeviceManagementVirtualEndpointUserSettingCount [-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) | CloudPC.Read.All, CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgDeviceManagementVirtualEndpointUserSettingCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersettingcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersettingcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md index 70b8115d16f9c..768b392f7ae87 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgbegindevicemanagementremoteassistancepartneronboarding Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding --- @@ -25,7 +25,6 @@ Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding -RemoteAssistanc [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### BeginViaIdentity @@ -36,7 +35,6 @@ Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +47,14 @@ This cmdlet has the following aliases, A request to start onboarding. Must be coupled with the appropriate TeamViewer account information -**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.Administration Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding -RemoteAssistancePartnerId $remoteAssistancePartnerId -``` -This example shows how to use the Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding Cmdlet. - - ## PARAMETERS ### -Break @@ -379,7 +364,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -410,27 +395,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgbegindevicemanagementremoteassistancepartneronboarding) -- [Graph API Reference](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-beginonboarding?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgbegindevicemanagementremoteassistancepartneronboarding) +- [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-beginonboarding?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md index a3b922d46c43a..4bc8839feb02b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgdownloaddevicemanagementapplepushnotificationcertificateapplepushnotificationcertificatesigningrequest Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest --- @@ -23,7 +23,7 @@ Download Apple push notification certificate signing request Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -35,27 +35,14 @@ This cmdlet has the following aliases, Download Apple push notification certificate signing request -**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.Administration Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest -``` -This example shows how to use the Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest Cmdlet. - - ## PARAMETERS ### -Break @@ -250,26 +237,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgdownloaddevicemanagementapplepushnotificationcertificateapplepushnotificationcertificatesigningrequest) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgdownloaddevicemanagementapplepushnotificationcertificateapplepushnotificationcertificatesigningrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md index f0dd41b0f5b7b..15b77afae2e9e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgreprovisiondevicemanagementvirtualendpointcloudpc Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc --- @@ -25,7 +25,6 @@ Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc -CloudPcId [-UserAccountType ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Reprovision @@ -36,7 +35,6 @@ Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc -CloudPcId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ReprovisionViaIdentityExpanded @@ -48,7 +46,6 @@ Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ReprovisionViaIdentity @@ -60,7 +57,6 @@ Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -72,13 +68,18 @@ This cmdlet has the following aliases, Reprovision a specific Cloud PC. -**Permissions** +## EXAMPLES -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.ReadWrite.All, | +### EXAMPLE 1 + +Import-Module Microsoft.Graph.DeviceManagement.Administration + +$params = @{ + userAccountType = "administrator" + osVersion = "windows10" +} + +Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc -CloudPCId $cloudPCId -BodyParameter $params ## PARAMETERS @@ -111,7 +112,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -514,12 +515,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. [OSVersion ]: cloudPcOperatingSystem [UserAccountType ]: cloudPcUserAccountType -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -550,28 +551,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgreprovisiondevicemanagementvirtualendpointcloudpc) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpc-reprovision?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgreprovisiondevicemanagementvirtualendpointcloudpc) +- [](https://learn.microsoft.com/graph/api/cloudpc-reprovision?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.md index b8dea443b6471..e705e24f6d5d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgterminatedevicemanagementpartner Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgTerminateDeviceManagementPartner --- @@ -24,7 +24,6 @@ Invoke-MgTerminateDeviceManagementPartner -DeviceManagementPartnerId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### TerminateViaIdentity @@ -34,7 +33,6 @@ Invoke-MgTerminateDeviceManagementPartner -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -46,13 +44,15 @@ This cmdlet has the following aliases, Invoke action terminate -**Permissions** +## EXAMPLES -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, | +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} ## PARAMETERS @@ -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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -394,27 +394,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgTerminateDeviceManagementPartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgterminatedevicemanagementpartner) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgterminatedevicemanagementpartner) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md index 54a11b33df3ea..659a9e8aa60c9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgtroubleshootdevicemanagementvirtualendpointcloudpc Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc --- @@ -25,7 +25,6 @@ Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc -CloudPcId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### TroubleshootViaIdentity @@ -36,7 +35,6 @@ Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +47,14 @@ This cmdlet has the following aliases, Troubleshoot a specific cloudPC object. Use this API to check the health status of the Cloud PC and the session host. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc -CloudPCId $cloudPCId -``` -This example shows how to use the Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc Cmdlet. - - ## PARAMETERS ### -Break @@ -379,7 +364,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -410,27 +395,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgtroubleshootdevicemanagementvirtualendpointcloudpc) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpc-troubleshoot?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgtroubleshootdevicemanagementvirtualendpointcloudpc) +- [](https://learn.microsoft.com/graph/api/cloudpc-troubleshoot?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Microsoft.Graph.DeviceManagement.Administration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Microsoft.Graph.DeviceManagement.Administration.md index 14998846a9a66..d1cbed4bc24a4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Microsoft.Graph.DeviceManagement.Administration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Microsoft.Graph.DeviceManagement.Administration.md @@ -1,6 +1,6 @@ --- Module Name: Microsoft.Graph.DeviceManagement.Administration -Module Guid: 7ce218fa-b432-4254-8ded-3f8aa1fa720b +Module Guid: 1508409e-6574-44a3-be9e-696598e5a321 Download Help Link: https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.devicemanagement.administration/?view=graph-powershell-1.0 Help Version: 1.0.0.0 Locale: en-US @@ -341,6 +341,8 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgDeviceManagementVirtualEndpointOnPremiseConnection](Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md) +### [Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword](Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md) + ### [Update-MgDeviceManagementVirtualEndpointProvisioningPolicy](Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md) ### [Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment](Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md) @@ -353,22 +355,3 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgDeviceManagementVirtualEndpointUserSettingAssignment](Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md) - - - - - - - - - - - - - - - - - - - diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md index 0138afb44a539..99c45786dcff7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementauditevent Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementAuditEvent --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementAuditEvent Create new navigation property to auditEvents for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementAuditEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementAuditEvent?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,6 @@ New-MgDeviceManagementAuditEvent [-ResponseHeadersVariable ] [-Activity [-Id ] [-Resources ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +36,6 @@ New-MgDeviceManagementAuditEvent -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,18 +47,9 @@ This cmdlet has the following aliases, Create new navigation property to auditEvents for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementApps.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementApps.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -113,10 +99,6 @@ category = "Category value" New-MgDeviceManagementAuditEvent -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementAuditEvent Cmdlet. - - ## PARAMETERS ### -Activity @@ -660,7 +642,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. -ACTOR ``: A class containing the properties for Audit Actor. +ACTOR : A class containing the properties for Audit Actor. [(Any) ]: This indicates any property can be added to this object. [ApplicationDisplayName ]: Name of the Application. [ApplicationId ]: AAD Application Id. @@ -671,7 +653,7 @@ ACTOR ``: A class containing the properties for Audit [UserPermissions ]: List of user permissions when the audit was performed. [UserPrincipalName ]: User Principal Name (UPN). -BODYPARAMETER ``: A class containing the properties for Audit Event. +BODYPARAMETER : A class containing the properties for Audit Event. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -715,26 +697,4 @@ RESOURCES : Resources being modified. ## RELATED LINKS -- [New-MgDeviceManagementAuditEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementauditevent) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementauditevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md index b24dc0c791765..161927ff26771 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementcompliancemanagementpartner Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementComplianceManagementPartner --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementComplianceManagementPartner Create new navigation property to complianceManagementPartners for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementComplianceManagementPartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementComplianceManagementPartner?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -33,7 +30,7 @@ New-MgDeviceManagementComplianceManagementPartner [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -43,7 +40,7 @@ New-MgDeviceManagementComplianceManagementPartner -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -55,18 +52,9 @@ This cmdlet has the following aliases, Create new navigation property to complianceManagementPartners 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.Administration @@ -109,10 +97,6 @@ $params = @{ New-MgDeviceManagementComplianceManagementPartner -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementComplianceManagementPartner Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -619,7 +603,7 @@ ANDROIDENROLLMENTASSIGNMENTS ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER ``: Compliance management partner for all platforms +BODYPARAMETER : Compliance management partner for all platforms [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -646,26 +630,4 @@ MACOSENROLLMENTASSIGNMENTS [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementExchangeConnector](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementExchangeConnector?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgDeviceManagementExchangeConnector [-ResponseHeadersVariable ] [-Status ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +38,6 @@ New-MgDeviceManagementExchangeConnector [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,18 +49,9 @@ This cmdlet has the following aliases, Create new navigation property to exchangeConnectors 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.Administration @@ -83,10 +70,6 @@ $params = @{ New-MgDeviceManagementExchangeConnector -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementExchangeConnector Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -586,7 +569,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 ``: Entity which represents a connection to an Exchange environment. +BODYPARAMETER : Entity which represents a connection to an Exchange environment. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -603,26 +586,4 @@ Read-only. ## RELATED LINKS -- [New-MgDeviceManagementExchangeConnector](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementexchangeconnector) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementexchangeconnector) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md index d49a142108b9f..83433cc3ff656 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementioupdatestatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementIoUpdateStatus --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementIoUpdateStatus Create new navigation property to iosUpdateStatuses for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementIoUpdateStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementIoUpdateStatus?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgDeviceManagementIoUpdateStatus [-ResponseHeadersVariable ] [-Status ] [-UserId ] [-UserName ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,6 @@ New-MgDeviceManagementIoUpdateStatus -BodyParameter ] [-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 iosUpdateStatuses for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -84,10 +71,6 @@ $params = @{ New-MgDeviceManagementIoUpdateStatus -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementIoUpdateStatus Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -629,7 +612,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 ``: iosUpdateDeviceStatus +BODYPARAMETER : iosUpdateDeviceStatus [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -648,26 +631,4 @@ Read-only. ## RELATED LINKS -- [New-MgDeviceManagementIoUpdateStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementioupdatestatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementioupdatestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md index 56f7c3394a6a8..6bbebe4a39316 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementmobilethreatdefenseconnector Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementMobileThreatDefenseConnector --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementMobileThreatDefenseConnector Create new navigation property to mobileThreatDefenseConnectors for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementMobileThreatDefenseConnector](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementMobileThreatDefenseConnector?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -33,7 +30,7 @@ New-MgDeviceManagementMobileThreatDefenseConnector [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -43,7 +40,7 @@ New-MgDeviceManagementMobileThreatDefenseConnector -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -55,18 +52,9 @@ This cmdlet has the following aliases, Create new navigation property to mobileThreatDefenseConnectors 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.Administration @@ -91,10 +79,6 @@ $params = @{ New-MgDeviceManagementMobileThreatDefenseConnector -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementMobileThreatDefenseConnector Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -746,7 +730,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 ``: Entity which represents a connection to Mobile Threat Defense partner. +BODYPARAMETER : Entity which represents a connection to Mobile Threat Defense partner. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -795,26 +779,4 @@ Default value is FALSE. ## RELATED LINKS -- [New-MgDeviceManagementMobileThreatDefenseConnector](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementmobilethreatdefenseconnector) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementmobilethreatdefenseconnector) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md index ad934f11d1a6e..4e1c0211b21f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementpartner Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementPartner --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementPartner Create new navigation property to deviceManagementPartners for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementPartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementPartner?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -33,7 +30,6 @@ New-MgDeviceManagementPartner [-ResponseHeadersVariable ] [-WhenPartnerDevicesWillBeRemovedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -43,7 +39,6 @@ New-MgDeviceManagementPartner -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -55,18 +50,9 @@ This cmdlet has the following aliases, Create new navigation property to deviceManagementPartners 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.Administration @@ -93,10 +79,6 @@ $params = @{ New-MgDeviceManagementPartner -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementPartner Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -597,7 +579,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 ``: Entity which represents a connection to device management partner. +BODYPARAMETER : Entity which represents a connection to device management partner. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -620,26 +602,4 @@ GROUPSREQUIRINGPARTNERENROLLMENT [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementRemoteAssistancePartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementRemoteAssistancePartner?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,7 @@ New-MgDeviceManagementRemoteAssistancePartner [-ResponseHeadersVariable [-LastConnectionDateTime ] [-OnboardingStatus ] [-OnboardingUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -38,7 +35,7 @@ New-MgDeviceManagementRemoteAssistancePartner -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -50,18 +47,9 @@ This cmdlet has the following aliases, Create a new remoteAssistancePartner object. -**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.Administration @@ -75,10 +63,6 @@ $params = @{ New-MgDeviceManagementRemoteAssistancePartner -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementRemoteAssistancePartner Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -473,7 +457,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 ``: RemoteAssistPartner resources represent the metadata and status of a given Remote Assistance partner service. +BODYPARAMETER : RemoteAssistPartner resources represent the metadata and status of a given Remote Assistance partner service. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -485,27 +469,5 @@ Read-only. ## RELATED LINKS -- [New-MgDeviceManagementRemoteAssistancePartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementremoteassistancepartner) -- [Graph API Reference](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-create?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementremoteassistancepartner) +- [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-create?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md index 25613f1f6f691..cddd92905cbfe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementresourceoperation Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementResourceOperation --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementResourceOperation Create new navigation property to resourceOperations for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementResourceOperation](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementResourceOperation?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -27,7 +24,7 @@ New-MgDeviceManagementResourceOperation [-ResponseHeadersVariable ] [-Ac [-AdditionalProperties ] [-Description ] [-Id ] [-ResourceName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -37,7 +34,6 @@ New-MgDeviceManagementResourceOperation -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,18 +45,9 @@ This cmdlet has the following aliases, Create new navigation property to resourceOperations for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -73,10 +60,6 @@ $params = @{ New-MgDeviceManagementResourceOperation -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementResourceOperation Cmdlet. - - ## PARAMETERS ### -ActionName @@ -452,7 +435,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 ``: Describes the resourceOperation resource (entity) of the Microsoft Graph API (REST), which supports Intune workflows related to role-based access control (RBAC). +BODYPARAMETER : Describes the resourceOperation resource (entity) of the Microsoft Graph API (REST), which supports Intune workflows related to role-based access control (RBAC). [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -465,26 +448,4 @@ The description is used in mouse-over text for the operation when shown in the A ## RELATED LINKS -- [New-MgDeviceManagementResourceOperation](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementresourceoperation) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementresourceoperation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md index 99bd3fda5b0ea..49f6e21286ab0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementroleassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementRoleAssignment --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementRoleAssignment Create new navigation property to roleAssignments for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementRoleAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgDeviceManagementRoleAssignment [-ResponseHeadersVariable ] [-RoleDefinition ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +36,6 @@ New-MgDeviceManagementRoleAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,18 +47,9 @@ This cmdlet has the following aliases, Create new navigation property to roleAssignments for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -81,10 +67,6 @@ members = @( New-MgDeviceManagementRoleAssignment -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementRoleAssignment Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -515,7 +497,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 Role Assignment resource. +BODYPARAMETER : The Role Assignment resource. Role assignments tie together a role definition with members and scopes. There can be one or more role assignments per role. This applies to custom and built-in roles. @@ -568,7 +550,7 @@ Read-only. [Members ]: Indicates the list of role member security group Entra IDs. For example: {dec942f4-6777-4998-96b4-522e383b08e2}. -ROLEDEFINITION ``: The Role Definition resource. +ROLEDEFINITION : The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. @@ -608,26 +590,4 @@ These must match the actionName that is defined as part of the rolePermission. ## RELATED LINKS -- [New-MgDeviceManagementRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementroleassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementroleassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md index f04a66696261e..a6d5499cbfc6a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementroledefinition Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementRoleDefinition --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementRoleDefinition Create new navigation property to roleDefinitions for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementRoleDefinition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementRoleDefinition?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgDeviceManagementRoleDefinition [-ResponseHeadersVariable ] [-RolePermissions ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,6 @@ New-MgDeviceManagementRoleDefinition -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,18 +46,9 @@ This cmdlet has the following aliases, Create new navigation property to roleDefinitions for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -91,10 +77,6 @@ isBuiltIn = $true New-MgDeviceManagementRoleDefinition -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementRoleDefinition Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -520,7 +502,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 Role Definition resource. +BODYPARAMETER : The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. @@ -597,26 +579,4 @@ These must match the actionName that is defined as part of the rolePermission. ## RELATED LINKS -- [New-MgDeviceManagementRoleDefinition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementroledefinition) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementroledefinition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md index c219dda541766..43253fb24d17e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementroledefinitionroleassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementRoleDefinitionRoleAssignment --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementRoleDefinitionRoleAssignment Create new navigation property to roleAssignments for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementRoleDefinitionRoleAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementRoleDefinitionRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,6 @@ New-MgDeviceManagementRoleDefinitionRoleAssignment -RoleDefinitionId [-RoleDefinition ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -39,7 +35,7 @@ New-MgDeviceManagementRoleDefinitionRoleAssignment -RoleDefinitionId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -51,7 +47,7 @@ New-MgDeviceManagementRoleDefinitionRoleAssignment [-ResourceScopes ] [-RoleDefinition ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -62,7 +58,7 @@ New-MgDeviceManagementRoleDefinitionRoleAssignment -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -74,18 +70,9 @@ This cmdlet has the following aliases, Create new navigation property to roleAssignments for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -100,10 +87,6 @@ $params = @{ New-MgDeviceManagementRoleDefinitionRoleAssignment -RoleDefinitionId $roleDefinitionId -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementRoleDefinitionRoleAssignment Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -613,7 +596,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 Role Assignment resource. +BODYPARAMETER : The Role Assignment resource. Role assignments tie together a role definition with members and scopes. There can be one or more role assignments per role. This applies to custom and built-in roles. @@ -648,7 +631,7 @@ These must match the actionName that is defined as part of the rolePermission. [AllowedResourceActions ]: Allowed Actions [NotAllowedResourceActions ]: Not Allowed Actions. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -676,7 +659,7 @@ INPUTOBJECT ``: Identity Parameter [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -ROLEDEFINITION ``: The Role Definition resource. +ROLEDEFINITION : The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. @@ -716,26 +699,4 @@ These must match the actionName that is defined as part of the rolePermission. ## RELATED LINKS -- [New-MgDeviceManagementRoleDefinitionRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementroledefinitionroleassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementroledefinitionroleassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md index 9b36c873e72c5..3c6f635ea45ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementtermandcondition Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementTermAndCondition --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementTermAndCondition Create new navigation property to termsAndConditions for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementTermAndCondition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementTermAndCondition?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -31,7 +28,7 @@ New-MgDeviceManagementTermAndCondition [-ResponseHeadersVariable ] [-Id ] [-LastModifiedDateTime ] [-Title ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +38,6 @@ New-MgDeviceManagementTermAndCondition -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,18 +49,9 @@ This cmdlet has the following aliases, Create new navigation property to termsAndConditions 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.Administration @@ -80,10 +67,6 @@ $params = @{ New-MgDeviceManagementTermAndCondition -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementTermAndCondition Cmdlet. - - ## PARAMETERS ### -AcceptanceStatement @@ -650,7 +633,7 @@ Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER ``: A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. +BODYPARAMETER : A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. T&C policies’ contents are presented to users upon their first attempt to enroll into Intune and subsequently upon edits where an administrator has required re-acceptance. They enable administrators to communicate the provisions to which a user must agree in order to have devices enrolled into Intune. [(Any) ]: This indicates any property can be added to this object. @@ -687,26 +670,4 @@ Incremented when an administrator makes a change to the terms and wishes to requ ## RELATED LINKS -- [New-MgDeviceManagementTermAndCondition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementtermandcondition) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementtermandcondition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md index 4836edc44a9da..f64ff99515066 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementtermandconditionacceptancestatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementTermAndConditionAcceptanceStatus --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementTermAndConditionAcceptanceStatus Create new navigation property to acceptanceStatuses for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementTermAndConditionAcceptanceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementTermAndConditionAcceptanceStatus?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,6 @@ New-MgDeviceManagementTermAndConditionAcceptanceStatus -TermsAndConditionsId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -41,7 +37,6 @@ New-MgDeviceManagementTermAndConditionAcceptanceStatus -TermsAndConditionsId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -54,7 +49,6 @@ New-MgDeviceManagementTermAndConditionAcceptanceStatus [-UserDisplayName ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -66,7 +60,6 @@ New-MgDeviceManagementTermAndConditionAcceptanceStatus [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -78,18 +71,9 @@ This cmdlet has the following aliases, Create new navigation property to acceptanceStatuses 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.Administration @@ -103,10 +87,6 @@ $params = @{ New-MgDeviceManagementTermAndConditionAcceptanceStatus -TermsAndConditionsId $termsAndConditionsId -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementTermAndConditionAcceptanceStatus Cmdlet. - - ## PARAMETERS ### -AcceptedDateTime @@ -633,7 +613,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 ``: A termsAndConditionsAcceptanceStatus entity represents the acceptance status of a given Terms and Conditions (T&C) policy by a given user. +BODYPARAMETER : A termsAndConditionsAcceptanceStatus entity represents the acceptance status of a given Terms and Conditions (T&C) policy by a given user. Users must accept the most up-to-date version of the terms in order to retain access to the Company Portal. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -667,7 +647,7 @@ Incremented when an administrator makes a change to the terms and wishes to requ [UserDisplayName ]: Display name of the user whose acceptance the entity represents. [UserPrincipalName ]: The userPrincipalName of the User that accepted the term. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -695,7 +675,7 @@ INPUTOBJECT ``: Identity Parameter [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -TERMSANDCONDITIONS ``: A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. +TERMSANDCONDITIONS : A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. T&C policies’ contents are presented to users upon their first attempt to enroll into Intune and subsequently upon edits where an administrator has required re-acceptance. They enable administrators to communicate the provisions to which a user must agree in order to have devices enrolled into Intune. [(Any) ]: This indicates any property can be added to this object. @@ -732,26 +712,4 @@ Incremented when an administrator makes a change to the terms and wishes to requ ## RELATED LINKS -- [New-MgDeviceManagementTermAndConditionAcceptanceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementtermandconditionacceptancestatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementtermandconditionacceptancestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md index f789df588d96a..9e597c50e4d14 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementtermandconditionassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementTermAndConditionAssignment --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementTermAndConditionAssignment Create new navigation property to assignments for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementTermAndConditionAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementTermAndConditionAssignment?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -27,7 +24,7 @@ New-MgDeviceManagementTermAndConditionAssignment -TermsAndConditionsId [-ResponseHeadersVariable ] [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -37,7 +34,7 @@ New-MgDeviceManagementTermAndConditionAssignment -TermsAndConditionsId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -48,7 +45,7 @@ New-MgDeviceManagementTermAndConditionAssignment [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -59,7 +56,7 @@ New-MgDeviceManagementTermAndConditionAssignment -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,18 +68,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, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -96,10 +84,6 @@ $params = @{ New-MgDeviceManagementTermAndConditionAssignment -TermsAndConditionsId $termsAndConditionsId -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementTermAndConditionAssignment Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -515,7 +499,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 ``: A termsAndConditionsAssignment entity represents the assignment of a given Terms and Conditions (T&C) policy to a given group. +BODYPARAMETER : A termsAndConditionsAssignment entity represents the assignment of a given Terms and Conditions (T&C) policy to a given group. Users in the group will be required to accept the terms in order to have devices enrolled into Intune. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -523,7 +507,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -554,26 +538,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementTermAndConditionAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementtermandconditionassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementtermandconditionassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md index 824ae277d4802..8b3d59ef2b52d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointdeviceimage Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementVirtualEndpointDeviceImage --- @@ -16,9 +16,6 @@ title: New-MgDeviceManagementVirtualEndpointDeviceImage Create a new cloudPcDeviceImage object. Upload a custom OS image that you can later provision on Cloud PCs. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementVirtualEndpointDeviceImage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementVirtualEndpointDeviceImage?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -31,7 +28,7 @@ New-MgDeviceManagementVirtualEndpointDeviceImage [-ResponseHeadersVariable ] [-SizeInGb ] [-SourceImageResourceId ] [-Status ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +38,6 @@ New-MgDeviceManagementVirtualEndpointDeviceImage -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -54,18 +50,9 @@ This cmdlet has the following aliases, Create a new cloudPcDeviceImage object. Upload a custom OS image that you can later provision on Cloud PCs. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -77,10 +64,6 @@ $params = @{ New-MgDeviceManagementVirtualEndpointDeviceImage -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementVirtualEndpointDeviceImage Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -661,7 +644,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 ``: cloudPcDeviceImage +BODYPARAMETER : cloudPcDeviceImage [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -699,27 +682,5 @@ Read-only. ## RELATED LINKS -- [New-MgDeviceManagementVirtualEndpointDeviceImage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointdeviceimage) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-post-deviceimages?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointdeviceimage) +- [](https://learn.microsoft.com/graph/api/virtualendpoint-post-deviceimages?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md index e0d743f383071..09312480b43d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointgalleryimage Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementVirtualEndpointGalleryImage --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementVirtualEndpointGalleryImage Create new navigation property to galleryImages for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementVirtualEndpointGalleryImage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementVirtualEndpointGalleryImage?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,7 @@ New-MgDeviceManagementVirtualEndpointGalleryImage [-ResponseHeadersVariable ] [-SizeInGb ] [-SkuName ] [-StartDate ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -39,7 +36,7 @@ New-MgDeviceManagementVirtualEndpointGalleryImage -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -51,6 +48,16 @@ This cmdlet has the following aliases, Create new navigation property to galleryImages for deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -589,7 +596,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 ``: cloudPcGalleryImage +BODYPARAMETER : cloudPcGalleryImage [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -625,27 +632,4 @@ Read-only. ## RELATED LINKS -- [New-MgDeviceManagementVirtualEndpointGalleryImage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointgalleryimage) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointgalleryimage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index 67240544e96c3..ce5fb29599e74 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointonpremiseconnection Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementVirtualEndpointOnPremiseConnection --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementVirtualEndpointOnPremiseConnection Create a new cloudPcOnPremisesConnection object for provisioning Cloud PCs. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -33,7 +30,6 @@ New-MgDeviceManagementVirtualEndpointOnPremiseConnection [-ResponseHeadersVariab [-VirtualNetworkId ] [-VirtualNetworkLocation ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -43,7 +39,7 @@ New-MgDeviceManagementVirtualEndpointOnPremiseConnection -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -56,9 +52,8 @@ This cmdlet has the following aliases, Create a new cloudPcOnPremisesConnection object for provisioning Cloud PCs. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -76,10 +71,6 @@ $params = @{ New-MgDeviceManagementVirtualEndpointOnPremiseConnection -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementVirtualEndpointOnPremiseConnection Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -820,7 +811,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 ``: cloudPcOnPremisesConnection +BODYPARAMETER : cloudPcOnPremisesConnection [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -905,7 +896,7 @@ Required format: '/subscriptions/{subscription-id}/resourceGroups/{resourceGroup For example, the location can be eastus2, westeurope, etc. Read-only (computed value). -HEALTHCHECKSTATUSDETAIL ``: cloudPcOnPremisesConnectionStatusDetail +HEALTHCHECKSTATUSDETAIL : cloudPcOnPremisesConnectionStatusDetail [(Any) ]: This indicates any property can be added to this object. [EndDateTime ]: The end time of the connection health check. The Timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). @@ -941,27 +932,5 @@ Read-Only. ## RELATED LINKS -- [New-MgDeviceManagementVirtualEndpointOnPremiseConnection](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointonpremiseconnection) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-post-onpremisesconnections?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointonpremiseconnection) +- [](https://learn.microsoft.com/graph/api/virtualendpoint-post-onpremisesconnections?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 9c08aef9192a0..fcd84d1d7006f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointprovisioningpolicy Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementVirtualEndpointProvisioningPolicy --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementVirtualEndpointProvisioningPolicy Create a new cloudPcProvisioningPolicy object. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -36,7 +33,6 @@ New-MgDeviceManagementVirtualEndpointProvisioningPolicy [-ResponseHeadersVariabl [-WindowsSetting ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -46,7 +42,7 @@ New-MgDeviceManagementVirtualEndpointProvisioningPolicy -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -58,18 +54,9 @@ This cmdlet has the following aliases, Create a new cloudPcProvisioningPolicy object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -100,10 +87,6 @@ $params = @{ New-MgDeviceManagementVirtualEndpointProvisioningPolicy -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -1070,11 +1053,14 @@ Read-only. [(Any) ]: This indicates any property can be added to this object. [ClientExtensionResults ]: webauthnAuthenticationExtensionsClientOutputs [(Any) ]: This indicates any property can be added to this object. - [Id ]: + [Id ]: The credential ID created by the WebAuthn Authenticator. +This value is Base64URL-encoded without padding. [Response ]: webauthnAuthenticatorAttestationResponse [(Any) ]: This indicates any property can be added to this object. - [AttestationObject ]: - [ClientDataJson ]: + [AttestationObject ]: A CBOR-encoded attestation object containing the authenticator data and attestation statement. +This value is Base64URL-encoded without padding. + [ClientDataJson ]: Contains the JSON-compatible serialization of client data passed to the authenticator by the client. +This value is Base64URL-encoded without padding. [Methods ]: Represents all authentication methods registered to a user. [Id ]: The unique identifier for an entity. Read-only. @@ -1702,7 +1688,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding `` tag in the message body. +Matches the {index} value in the corresponding tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -1770,7 +1756,8 @@ For example, if a user changes their display name the API might show the new val [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [UserIdentityType ]: teamworkUserIdentityType - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the chat. +The value is null if the chat never entered migration mode. [PermissionGrants ]: A collection of permissions granted to apps for the chat. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -1807,6 +1794,47 @@ Required. [TeamsApp ]: teamsApp [WebUrl ]: Deep link URL of the tab instance. Read-only. + [TargetedMessages ]: + [Attachments ]: References to attached objects like files, tabs, meetings etc. + [Body ]: itemBody + [ChannelIdentity ]: channelIdentity + [ChatId ]: If the message was sent in a chat, represents the identity of the chat. + [CreatedDateTime ]: Timestamp of when the chat message was created. + [DeletedDateTime ]: Read only. +Timestamp at which the chat message was deleted, or null if not deleted. + [Etag ]: Read-only. +Version number of the chat message. + [EventDetail ]: eventMessageDetail + [From ]: chatMessageFromIdentitySet + [HostedContents ]: Content in a message hosted by Microsoft Teams - for example, images or code snippets. + [Importance ]: chatMessageImportance + [LastEditedDateTime ]: Read only. +Timestamp when edits to the chat message were made. +Triggers an 'Edited' flag in the Teams UI. +If no edits are made the value is null. + [LastModifiedDateTime ]: Read only. +Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + [Locale ]: Locale of the chat message set by the client. +Always set to en-us. + [Mentions ]: List of entities mentioned in the chat message. +Supported entities are: user, bot, team, channel, chat, and tag. + [MessageHistory ]: List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. + [MessageType ]: chatMessageType + [PolicyViolation ]: chatMessagePolicyViolation + [Reactions ]: Reactions for this chat message (for example, Like). + [Replies ]: Replies for a specified message. +Supports $expand for channel messages. + [ReplyToId ]: Read-only. +ID of the parent chat message or root chat message of the thread. +(Only applies to chat messages in channels, not chats.) + [Subject ]: The subject of the chat message, in plaintext. + [Summary ]: Summary text of the chat message that could be used for push notifications and summary views or fall back views. +Only applies to channel chat messages, not chat messages in a chat. + [WebUrl ]: Read-only. +Link to the message in Microsoft Teams. + [Id ]: The unique identifier for an entity. +Read-only. + [Recipient ]: identity [TenantId ]: The identifier of the tenant in which the chat was created. Read-only. [Topic ]: (Optional) Subject or topic for the chat. @@ -3782,7 +3810,8 @@ The default value is false. A navigation property. Nullable. [MigrationMode ]: migrationMode - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the channel. +The value is null if the channel never entered migration mode. [SharedWithTeams ]: A collection of teams with which a channel is shared. [DisplayName ]: The name of the team. [Team ]: team @@ -3987,6 +4016,7 @@ Supported only on the Get group API (GET /groups/{ID}). The default value is false. Requires $select to retrieve. Supported only on the Get group API (GET /groups/{ID}). + [InfoCatalogs ]: [IsArchived ]: When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. [IsAssignableToRole ]: Indicates whether this group can be assigned to a Microsoft Entra role. @@ -5767,7 +5797,7 @@ Users can control this setting in Office Delve. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [PrimaryMailboxId ]: + [PrimaryMailboxId ]: The unique identifier for the user's primary mailbox. [ItemInsights ]: userInsightsSettings [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -6028,8 +6058,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, - +Only the following characters are allowed A - Z, a - z, 0 - 9, ' . +- _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -6041,14 +6071,14 @@ NOTE: For more information about the permissions for members and guests, see Wha [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -AUTOPATCH ``: cloudPcProvisioningPolicyAutopatch +AUTOPATCH : cloudPcProvisioningPolicyAutopatch [(Any) ]: This indicates any property can be added to this object. [AutopatchGroupId ]: The unique identifier (ID) of a Windows Autopatch group. An Autopatch group is a logical container or unit that groups several Microsoft Entra groups and software update policies. Devices with the same Autopatch group ID share unified software update management. The default value is null that indicates that no Autopatch group is associated with the provisioning policy. -BODYPARAMETER ``: cloudPcProvisioningPolicy +BODYPARAMETER : cloudPcProvisioningPolicy [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -6326,11 +6356,14 @@ Read-only. [(Any) ]: This indicates any property can be added to this object. [ClientExtensionResults ]: webauthnAuthenticationExtensionsClientOutputs [(Any) ]: This indicates any property can be added to this object. - [Id ]: + [Id ]: The credential ID created by the WebAuthn Authenticator. +This value is Base64URL-encoded without padding. [Response ]: webauthnAuthenticatorAttestationResponse [(Any) ]: This indicates any property can be added to this object. - [AttestationObject ]: - [ClientDataJson ]: + [AttestationObject ]: A CBOR-encoded attestation object containing the authenticator data and attestation statement. +This value is Base64URL-encoded without padding. + [ClientDataJson ]: Contains the JSON-compatible serialization of client data passed to the authenticator by the client. +This value is Base64URL-encoded without padding. [Methods ]: Represents all authentication methods registered to a user. [Id ]: The unique identifier for an entity. Read-only. @@ -6958,7 +6991,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding `` tag in the message body. +Matches the {index} value in the corresponding tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -7026,7 +7059,8 @@ For example, if a user changes their display name the API might show the new val [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [UserIdentityType ]: teamworkUserIdentityType - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the chat. +The value is null if the chat never entered migration mode. [PermissionGrants ]: A collection of permissions granted to apps for the chat. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -7063,6 +7097,47 @@ Required. [TeamsApp ]: teamsApp [WebUrl ]: Deep link URL of the tab instance. Read-only. + [TargetedMessages ]: + [Attachments ]: References to attached objects like files, tabs, meetings etc. + [Body ]: itemBody + [ChannelIdentity ]: channelIdentity + [ChatId ]: If the message was sent in a chat, represents the identity of the chat. + [CreatedDateTime ]: Timestamp of when the chat message was created. + [DeletedDateTime ]: Read only. +Timestamp at which the chat message was deleted, or null if not deleted. + [Etag ]: Read-only. +Version number of the chat message. + [EventDetail ]: eventMessageDetail + [From ]: chatMessageFromIdentitySet + [HostedContents ]: Content in a message hosted by Microsoft Teams - for example, images or code snippets. + [Importance ]: chatMessageImportance + [LastEditedDateTime ]: Read only. +Timestamp when edits to the chat message were made. +Triggers an 'Edited' flag in the Teams UI. +If no edits are made the value is null. + [LastModifiedDateTime ]: Read only. +Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + [Locale ]: Locale of the chat message set by the client. +Always set to en-us. + [Mentions ]: List of entities mentioned in the chat message. +Supported entities are: user, bot, team, channel, chat, and tag. + [MessageHistory ]: List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. + [MessageType ]: chatMessageType + [PolicyViolation ]: chatMessagePolicyViolation + [Reactions ]: Reactions for this chat message (for example, Like). + [Replies ]: Replies for a specified message. +Supports $expand for channel messages. + [ReplyToId ]: Read-only. +ID of the parent chat message or root chat message of the thread. +(Only applies to chat messages in channels, not chats.) + [Subject ]: The subject of the chat message, in plaintext. + [Summary ]: Summary text of the chat message that could be used for push notifications and summary views or fall back views. +Only applies to channel chat messages, not chat messages in a chat. + [WebUrl ]: Read-only. +Link to the message in Microsoft Teams. + [Id ]: The unique identifier for an entity. +Read-only. + [Recipient ]: identity [TenantId ]: The identifier of the tenant in which the chat was created. Read-only. [Topic ]: (Optional) Subject or topic for the chat. @@ -9038,7 +9113,8 @@ The default value is false. A navigation property. Nullable. [MigrationMode ]: migrationMode - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the channel. +The value is null if the channel never entered migration mode. [SharedWithTeams ]: A collection of teams with which a channel is shared. [DisplayName ]: The name of the team. [Team ]: team @@ -9243,6 +9319,7 @@ Supported only on the Get group API (GET /groups/{ID}). The default value is false. Requires $select to retrieve. Supported only on the Get group API (GET /groups/{ID}). + [InfoCatalogs ]: [IsArchived ]: When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. [IsAssignableToRole ]: Indicates whether this group can be assigned to a Microsoft Entra role. @@ -11023,7 +11100,7 @@ Users can control this setting in Office Delve. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [PrimaryMailboxId ]: + [PrimaryMailboxId ]: The unique identifier for the user's primary mailbox. [ItemInsights ]: userInsightsSettings [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -11284,8 +11361,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, - +Only the following characters are allowed A - Z, a - z, 0 - 9, ' . +- _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -11362,12 +11439,12 @@ Within this region, the Windows 365 service creates and manages the underlying v This option is available only when the IT admin selects Microsoft Entra joined as the domain join type. If you enter a regionName, leave the onPremisesConnectionId property empty. -MICROSOFTMANAGEDDESKTOP ``: microsoftManagedDesktop +MICROSOFTMANAGEDDESKTOP : microsoftManagedDesktop [(Any) ]: This indicates any property can be added to this object. [ManagedType ]: microsoftManagedDesktopType [Profile ]: The name of the Microsoft Managed Desktop profile that the Windows 365 Cloud PC is associated with. -WINDOWSSETTING ``: cloudPcWindowsSetting +WINDOWSSETTING : cloudPcWindowsSetting [(Any) ]: This indicates any property can be added to this object. [Locale ]: The Windows language or region tag to use for language pack configuration and localization of the Cloud PC. The default value is en-US, which corresponds to English (United States). @@ -11375,27 +11452,5 @@ The default value is en-US, which corresponds to English (United States). ## RELATED LINKS -- [New-MgDeviceManagementVirtualEndpointProvisioningPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointprovisioningpolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-post-provisioningpolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointprovisioningpolicy) +- [](https://learn.microsoft.com/graph/api/virtualendpoint-post-provisioningpolicies?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index 210b8a03346d9..7a179d3a4f691 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointprovisioningpolicyassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment Create new navigation property to assignments for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,7 @@ New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment [-AdditionalProperties ] [-AssignedUsers ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,6 @@ New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -51,7 +47,7 @@ New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment [-AdditionalProperties ] [-AssignedUsers ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -63,7 +59,6 @@ New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,6 +70,16 @@ This cmdlet has the following aliases, Create new navigation property to assignments for deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -786,11 +791,14 @@ Read-only. [(Any) ]: This indicates any property can be added to this object. [ClientExtensionResults ]: webauthnAuthenticationExtensionsClientOutputs [(Any) ]: This indicates any property can be added to this object. - [Id ]: + [Id ]: The credential ID created by the WebAuthn Authenticator. +This value is Base64URL-encoded without padding. [Response ]: webauthnAuthenticatorAttestationResponse [(Any) ]: This indicates any property can be added to this object. - [AttestationObject ]: - [ClientDataJson ]: + [AttestationObject ]: A CBOR-encoded attestation object containing the authenticator data and attestation statement. +This value is Base64URL-encoded without padding. + [ClientDataJson ]: Contains the JSON-compatible serialization of client data passed to the authenticator by the client. +This value is Base64URL-encoded without padding. [Methods ]: Represents all authentication methods registered to a user. [Id ]: The unique identifier for an entity. Read-only. @@ -1418,7 +1426,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding `` tag in the message body. +Matches the {index} value in the corresponding tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -1486,7 +1494,8 @@ For example, if a user changes their display name the API might show the new val [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [UserIdentityType ]: teamworkUserIdentityType - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the chat. +The value is null if the chat never entered migration mode. [PermissionGrants ]: A collection of permissions granted to apps for the chat. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -1523,6 +1532,47 @@ Required. [TeamsApp ]: teamsApp [WebUrl ]: Deep link URL of the tab instance. Read-only. + [TargetedMessages ]: + [Attachments ]: References to attached objects like files, tabs, meetings etc. + [Body ]: itemBody + [ChannelIdentity ]: channelIdentity + [ChatId ]: If the message was sent in a chat, represents the identity of the chat. + [CreatedDateTime ]: Timestamp of when the chat message was created. + [DeletedDateTime ]: Read only. +Timestamp at which the chat message was deleted, or null if not deleted. + [Etag ]: Read-only. +Version number of the chat message. + [EventDetail ]: eventMessageDetail + [From ]: chatMessageFromIdentitySet + [HostedContents ]: Content in a message hosted by Microsoft Teams - for example, images or code snippets. + [Importance ]: chatMessageImportance + [LastEditedDateTime ]: Read only. +Timestamp when edits to the chat message were made. +Triggers an 'Edited' flag in the Teams UI. +If no edits are made the value is null. + [LastModifiedDateTime ]: Read only. +Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + [Locale ]: Locale of the chat message set by the client. +Always set to en-us. + [Mentions ]: List of entities mentioned in the chat message. +Supported entities are: user, bot, team, channel, chat, and tag. + [MessageHistory ]: List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. + [MessageType ]: chatMessageType + [PolicyViolation ]: chatMessagePolicyViolation + [Reactions ]: Reactions for this chat message (for example, Like). + [Replies ]: Replies for a specified message. +Supports $expand for channel messages. + [ReplyToId ]: Read-only. +ID of the parent chat message or root chat message of the thread. +(Only applies to chat messages in channels, not chats.) + [Subject ]: The subject of the chat message, in plaintext. + [Summary ]: Summary text of the chat message that could be used for push notifications and summary views or fall back views. +Only applies to channel chat messages, not chat messages in a chat. + [WebUrl ]: Read-only. +Link to the message in Microsoft Teams. + [Id ]: The unique identifier for an entity. +Read-only. + [Recipient ]: identity [TenantId ]: The identifier of the tenant in which the chat was created. Read-only. [Topic ]: (Optional) Subject or topic for the chat. @@ -3498,7 +3548,8 @@ The default value is false. A navigation property. Nullable. [MigrationMode ]: migrationMode - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the channel. +The value is null if the channel never entered migration mode. [SharedWithTeams ]: A collection of teams with which a channel is shared. [DisplayName ]: The name of the team. [Team ]: team @@ -3703,6 +3754,7 @@ Supported only on the Get group API (GET /groups/{ID}). The default value is false. Requires $select to retrieve. Supported only on the Get group API (GET /groups/{ID}). + [InfoCatalogs ]: [IsArchived ]: When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. [IsAssignableToRole ]: Indicates whether this group can be assigned to a Microsoft Entra role. @@ -5483,7 +5535,7 @@ Users can control this setting in Office Delve. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [PrimaryMailboxId ]: + [PrimaryMailboxId ]: The unique identifier for the user's primary mailbox. [ItemInsights ]: userInsightsSettings [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -5744,8 +5796,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, - +Only the following characters are allowed A - Z, a - z, 0 - 9, ' . +- _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -5755,7 +5807,7 @@ Requires $select to retrieve. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for members and guests, see What are the default user permissions in Microsoft Entra ID? -BODYPARAMETER ``: cloudPcProvisioningPolicyAssignment +BODYPARAMETER : cloudPcProvisioningPolicyAssignment [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -6025,11 +6077,14 @@ Read-only. [(Any) ]: This indicates any property can be added to this object. [ClientExtensionResults ]: webauthnAuthenticationExtensionsClientOutputs [(Any) ]: This indicates any property can be added to this object. - [Id ]: + [Id ]: The credential ID created by the WebAuthn Authenticator. +This value is Base64URL-encoded without padding. [Response ]: webauthnAuthenticatorAttestationResponse [(Any) ]: This indicates any property can be added to this object. - [AttestationObject ]: - [ClientDataJson ]: + [AttestationObject ]: A CBOR-encoded attestation object containing the authenticator data and attestation statement. +This value is Base64URL-encoded without padding. + [ClientDataJson ]: Contains the JSON-compatible serialization of client data passed to the authenticator by the client. +This value is Base64URL-encoded without padding. [Methods ]: Represents all authentication methods registered to a user. [Id ]: The unique identifier for an entity. Read-only. @@ -6657,7 +6712,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding `` tag in the message body. +Matches the {index} value in the corresponding tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -6725,7 +6780,8 @@ For example, if a user changes their display name the API might show the new val [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [UserIdentityType ]: teamworkUserIdentityType - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the chat. +The value is null if the chat never entered migration mode. [PermissionGrants ]: A collection of permissions granted to apps for the chat. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -6762,6 +6818,47 @@ Required. [TeamsApp ]: teamsApp [WebUrl ]: Deep link URL of the tab instance. Read-only. + [TargetedMessages ]: + [Attachments ]: References to attached objects like files, tabs, meetings etc. + [Body ]: itemBody + [ChannelIdentity ]: channelIdentity + [ChatId ]: If the message was sent in a chat, represents the identity of the chat. + [CreatedDateTime ]: Timestamp of when the chat message was created. + [DeletedDateTime ]: Read only. +Timestamp at which the chat message was deleted, or null if not deleted. + [Etag ]: Read-only. +Version number of the chat message. + [EventDetail ]: eventMessageDetail + [From ]: chatMessageFromIdentitySet + [HostedContents ]: Content in a message hosted by Microsoft Teams - for example, images or code snippets. + [Importance ]: chatMessageImportance + [LastEditedDateTime ]: Read only. +Timestamp when edits to the chat message were made. +Triggers an 'Edited' flag in the Teams UI. +If no edits are made the value is null. + [LastModifiedDateTime ]: Read only. +Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + [Locale ]: Locale of the chat message set by the client. +Always set to en-us. + [Mentions ]: List of entities mentioned in the chat message. +Supported entities are: user, bot, team, channel, chat, and tag. + [MessageHistory ]: List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. + [MessageType ]: chatMessageType + [PolicyViolation ]: chatMessagePolicyViolation + [Reactions ]: Reactions for this chat message (for example, Like). + [Replies ]: Replies for a specified message. +Supports $expand for channel messages. + [ReplyToId ]: Read-only. +ID of the parent chat message or root chat message of the thread. +(Only applies to chat messages in channels, not chats.) + [Subject ]: The subject of the chat message, in plaintext. + [Summary ]: Summary text of the chat message that could be used for push notifications and summary views or fall back views. +Only applies to channel chat messages, not chat messages in a chat. + [WebUrl ]: Read-only. +Link to the message in Microsoft Teams. + [Id ]: The unique identifier for an entity. +Read-only. + [Recipient ]: identity [TenantId ]: The identifier of the tenant in which the chat was created. Read-only. [Topic ]: (Optional) Subject or topic for the chat. @@ -8737,7 +8834,8 @@ The default value is false. A navigation property. Nullable. [MigrationMode ]: migrationMode - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the channel. +The value is null if the channel never entered migration mode. [SharedWithTeams ]: A collection of teams with which a channel is shared. [DisplayName ]: The name of the team. [Team ]: team @@ -8942,6 +9040,7 @@ Supported only on the Get group API (GET /groups/{ID}). The default value is false. Requires $select to retrieve. Supported only on the Get group API (GET /groups/{ID}). + [InfoCatalogs ]: [IsArchived ]: When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. [IsAssignableToRole ]: Indicates whether this group can be assigned to a Microsoft Entra role. @@ -10722,7 +10821,7 @@ Users can control this setting in Office Delve. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [PrimaryMailboxId ]: + [PrimaryMailboxId ]: The unique identifier for the user's primary mailbox. [ItemInsights ]: userInsightsSettings [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -10983,8 +11082,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, - +Only the following characters are allowed A - Z, a - z, 0 - 9, ' . +- _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -10996,7 +11095,7 @@ NOTE: For more information about the permissions for members and guests, see Wha [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -11027,27 +11126,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md index ba7374b093913..762c84c97adca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointusersetting Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementVirtualEndpointUserSetting --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementVirtualEndpointUserSetting Create a new cloudPcUserSetting object. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementVirtualEndpointUserSetting](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementVirtualEndpointUserSetting?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgDeviceManagementVirtualEndpointUserSetting [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,6 @@ New-MgDeviceManagementVirtualEndpointUserSetting -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,18 +48,9 @@ This cmdlet has the following aliases, Create a new cloudPcUserSetting object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -79,10 +66,6 @@ $params = @{ New-MgDeviceManagementVirtualEndpointUserSetting -BodyParameter $params -``` -This example shows how to use the New-MgDeviceManagementVirtualEndpointUserSetting Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -565,7 +548,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER ``: cloudPcUserSetting +BODYPARAMETER : cloudPcUserSetting [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -600,7 +583,7 @@ The default value is false. [UserRestoreEnabled ]: If true, the user has the ability to use snapshots to restore Cloud PCs. If false, non-admin users can't use snapshots to restore the Cloud PC. -RESTOREPOINTSETTING ``: cloudPcRestorePointSetting +RESTOREPOINTSETTING : cloudPcRestorePointSetting [(Any) ]: This indicates any property can be added to this object. [FrequencyType ]: cloudPcRestorePointFrequencyType [UserRestoreEnabled ]: If true, the user has the ability to use snapshots to restore Cloud PCs. @@ -609,27 +592,5 @@ If false, non-admin users can't use snapshots to restore the Cloud PC. ## RELATED LINKS -- [New-MgDeviceManagementVirtualEndpointUserSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointusersetting) -- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-post-usersettings?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointusersetting) +- [](https://learn.microsoft.com/graph/api/virtualendpoint-post-usersettings?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index fd2b8644a3079..81dc248487a4f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointusersettingassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgDeviceManagementVirtualEndpointUserSettingAssignment --- @@ -15,9 +15,6 @@ title: New-MgDeviceManagementVirtualEndpointUserSettingAssignment Create new navigation property to assignments for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,7 @@ New-MgDeviceManagementVirtualEndpointUserSettingAssignment -CloudPcUserSettingId [-CreatedDateTime ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -38,7 +35,7 @@ New-MgDeviceManagementVirtualEndpointUserSettingAssignment -CloudPcUserSettingId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentityExpanded @@ -49,7 +46,7 @@ New-MgDeviceManagementVirtualEndpointUserSettingAssignment [-AdditionalProperties ] [-CreatedDateTime ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -60,7 +57,7 @@ New-MgDeviceManagementVirtualEndpointUserSettingAssignment -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -72,6 +69,16 @@ This cmdlet has the following aliases, Create new navigation property to assignments for deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -515,7 +522,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 ``: cloudPcUserSettingAssignment +BODYPARAMETER : cloudPcUserSettingAssignment [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -525,7 +532,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -556,27 +563,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [New-MgDeviceManagementVirtualEndpointUserSettingAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointusersettingassignment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointusersettingassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.md index 97c65a9d9b680..80968f0262af7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementapplepushnotificationcertificate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementApplePushNotificationCertificate --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementApplePushNotificationCertificate Delete navigation property applePushNotificationCertificate for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementApplePushNotificationCertificate](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementApplePushNotificationCertificate?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementApplePushNotificationCertificate [-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 applePushNotificationCertificate 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-MgDeviceManagementApplePushNotificationCertificate](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementapplepushnotificationcertificate) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementapplepushnotificationcertificate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md index 902c3bad6aa5b..bf43556d464ed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementauditevent Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementAuditEvent --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementAuditEvent Delete navigation property auditEvents for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementAuditEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementAuditEvent?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementAuditEvent -AuditEventId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementAuditEvent -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Delete navigation property auditEvents for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementApps.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementApps.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementAuditEvent -AuditEventId $auditEventId -``` -This example shows how to use the Remove-MgDeviceManagementAuditEvent Cmdlet. - - ## PARAMETERS ### -AuditEventId @@ -400,7 +382,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -431,26 +413,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementAuditEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementauditevent) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementauditevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md index 9c17a6d9e4dd7..427008e01be99 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementcompliancemanagementpartner Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementComplianceManagementPartner --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementComplianceManagementPartner Delete navigation property complianceManagementPartners for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementComplianceManagementPartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementComplianceManagementPartner?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementComplianceManagementPartner -ComplianceManagementPartne [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementComplianceManagementPartner [-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 complianceManagementPartners 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.Administration Remove-MgDeviceManagementComplianceManagementPartner -ComplianceManagementPartnerId $complianceManagementPartnerId -``` -This example shows how to use the Remove-MgDeviceManagementComplianceManagementPartner 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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -432,26 +414,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementComplianceManagementPartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementcompliancemanagementpartner) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementcompliancemanagementpartner) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md index f04331140a9dc..d74d5d44c8ec0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementexchangeconnector Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementExchangeConnector --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementExchangeConnector Delete navigation property exchangeConnectors for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementExchangeConnector](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementExchangeConnector?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementExchangeConnector -DeviceManagementExchangeConnectorId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementExchangeConnector -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Delete navigation property exchangeConnectors 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.Administration Remove-MgDeviceManagementExchangeConnector -DeviceManagementExchangeConnectorId $deviceManagementExchangeConnectorId -``` -This example shows how to use the Remove-MgDeviceManagementExchangeConnector Cmdlet. - - ## PARAMETERS ### -Break @@ -400,7 +382,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -431,26 +413,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementExchangeConnector](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementexchangeconnector) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementexchangeconnector) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md index 864217d0c4865..80324a48dbda7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementioupdatestatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementIoUpdateStatus --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementIoUpdateStatus Delete navigation property iosUpdateStatuses for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementIoUpdateStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementIoUpdateStatus?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementIoUpdateStatus -IosUpdateDeviceStatusId [-IfMa [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementIoUpdateStatus -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Delete navigation property iosUpdateStatuses for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementIoUpdateStatus -IosUpdateDeviceStatusId $iosUpdateDeviceStatusId -``` -This example shows how to use the Remove-MgDeviceManagementIoUpdateStatus Cmdlet. - - ## PARAMETERS ### -Break @@ -400,7 +382,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -431,26 +413,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementIoUpdateStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementioupdatestatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementioupdatestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md index b4b35d6899920..b072346f16c07 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementmobilethreatdefenseconnector Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementMobileThreatDefenseConnector --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementMobileThreatDefenseConnector Delete navigation property mobileThreatDefenseConnectors for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementMobileThreatDefenseConnector](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementMobileThreatDefenseConnector?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementMobileThreatDefenseConnector -MobileThreatDefenseConnec [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementMobileThreatDefenseConnector [-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 mobileThreatDefenseConnectors 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.Administration Remove-MgDeviceManagementMobileThreatDefenseConnector -MobileThreatDefenseConnectorId $mobileThreatDefenseConnectorId -``` -This example shows how to use the Remove-MgDeviceManagementMobileThreatDefenseConnector 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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -432,26 +414,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementMobileThreatDefenseConnector](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementmobilethreatdefenseconnector) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementmobilethreatdefenseconnector) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md index c3101fcd1bcc7..7e04786de5ccf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementpartner Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementPartner --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementPartner Delete navigation property deviceManagementPartners for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementPartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementPartner?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementPartner -DeviceManagementPartnerId [-IfMatch < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementPartner -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Delete navigation property deviceManagementPartners 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.Administration Remove-MgDeviceManagementPartner -DeviceManagementPartnerId $deviceManagementPartnerId -``` -This example shows how to use the Remove-MgDeviceManagementPartner Cmdlet. - - ## PARAMETERS ### -Break @@ -400,7 +382,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -431,26 +413,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementPartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementpartner) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementpartner) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md index ea84272124f78..c623a23d1dfb5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementremoteassistancepartner Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementRemoteAssistancePartner --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementRemoteAssistancePartner Deletes a remoteAssistancePartner. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementRemoteAssistancePartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementRemoteAssistancePartner?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementRemoteAssistancePartner -RemoteAssistancePartnerId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementRemoteAssistancePartner [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,27 +45,14 @@ This cmdlet has the following aliases, Deletes a remoteAssistancePartner. -**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.Administration Remove-MgDeviceManagementRemoteAssistancePartner -RemoteAssistancePartnerId $remoteAssistancePartnerId -``` -This example shows how to use the Remove-MgDeviceManagementRemoteAssistancePartner 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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -432,27 +414,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementRemoteAssistancePartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementremoteassistancepartner) -- [Graph API Reference](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementremoteassistancepartner) +- [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md index d0f52b78993a3..6b2b4bb88680f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementresourceoperation Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementResourceOperation --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementResourceOperation Delete navigation property resourceOperations for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementResourceOperation](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementResourceOperation?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementResourceOperation -ResourceOperationId [-IfMat [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementResourceOperation -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Delete navigation property resourceOperations for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementResourceOperation -ResourceOperationId $resourceOperationId -``` -This example shows how to use the Remove-MgDeviceManagementResourceOperation Cmdlet. - - ## PARAMETERS ### -Break @@ -400,7 +382,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -431,26 +413,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementResourceOperation](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementresourceoperation) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementresourceoperation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md index b335e5b1646f4..064c1b3e1fcec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementroleassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementRoleAssignment --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementRoleAssignment Delete navigation property roleAssignments for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementRoleAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementRoleAssignment -DeviceAndAppManagementRoleAssignmentId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementRoleAssignment -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Delete navigation property roleAssignments for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementRoleAssignment -DeviceAndAppManagementRoleAssignmentId $deviceAndAppManagementRoleAssignmentId -``` -This example shows how to use the Remove-MgDeviceManagementRoleAssignment Cmdlet. - - ## PARAMETERS ### -Break @@ -400,7 +382,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -431,26 +413,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementroleassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementroleassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md index 567c075bd057c..453a5bfabdc9e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementroledefinition Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementRoleDefinition --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementRoleDefinition Delete navigation property roleDefinitions for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementRoleDefinition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementRoleDefinition?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementRoleDefinition -RoleDefinitionId [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementRoleDefinition -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Delete navigation property roleDefinitions for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementRoleDefinition -RoleDefinitionId $roleDefinitionId -``` -This example shows how to use the Remove-MgDeviceManagementRoleDefinition Cmdlet. - - ## PARAMETERS ### -Break @@ -400,7 +382,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -431,26 +413,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementRoleDefinition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementroledefinition) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementroledefinition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md index 3b591bdafee6f..80e50041f8e98 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementroledefinitionroleassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementRoleDefinitionRoleAssignment --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementRoleDefinitionRoleAssignment Delete navigation property roleAssignments for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementRoleDefinitionRoleAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementRoleDefinitionRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementRoleDefinitionRoleAssignment -RoleAssignmentId [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementRoleDefinitionRoleAssignment [-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 roleAssignments for deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementRoleDefinitionRoleAssignment -RoleDefinitionId $roleDefinitionId -RoleAssignmentId $roleAssignmentId -``` -This example shows how to use the Remove-MgDeviceManagementRoleDefinitionRoleAssignment 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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -454,26 +436,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementRoleDefinitionRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementroledefinitionroleassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementroledefinitionroleassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md index 7a15284bf2cfc..839121afea575 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementtermandcondition Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementTermAndCondition --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementTermAndCondition Delete navigation property termsAndConditions for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementTermAndCondition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementTermAndCondition?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementTermAndCondition -TermsAndConditionsId [-IfMat [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgDeviceManagementTermAndCondition -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,27 +44,14 @@ This cmdlet has the following aliases, Delete navigation property termsAndConditions 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.Administration Remove-MgDeviceManagementTermAndCondition -TermsAndConditionsId $termsAndConditionsId -``` -This example shows how to use the Remove-MgDeviceManagementTermAndCondition Cmdlet. - - ## PARAMETERS ### -Break @@ -400,7 +382,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -431,26 +413,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementTermAndCondition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementtermandcondition) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementtermandcondition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md index 0832f4704b634..0684897f686f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementtermandconditionacceptancestatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementTermAndConditionAcceptanceStatus --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementTermAndConditionAcceptanceStatus Delete navigation property acceptanceStatuses for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementTermAndConditionAcceptanceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementTermAndConditionAcceptanceStatus?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementTermAndConditionAcceptanceStatus [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementTermAndConditionAcceptanceStatus [-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 acceptanceStatuses 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.Administration Remove-MgDeviceManagementTermAndConditionAcceptanceStatus -TermsAndConditionsId $termsAndConditionsId -TermsAndConditionsAcceptanceStatusId $termsAndConditionsAcceptanceStatusId -``` -This example shows how to use the Remove-MgDeviceManagementTermAndConditionAcceptanceStatus 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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -454,26 +436,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementTermAndConditionAcceptanceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementtermandconditionacceptancestatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementtermandconditionacceptancestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md index 51d2c4ee2ec55..4a62379e7e208 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementtermandconditionassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementTermAndConditionAssignment --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementTermAndConditionAssignment Delete navigation property assignments for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementTermAndConditionAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementTermAndConditionAssignment?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementTermAndConditionAssignment -TermsAndConditionsAssignmen [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementTermAndConditionAssignment [-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, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementTermAndConditionAssignment -TermsAndConditionsId $termsAndConditionsId -TermsAndConditionsAssignmentId $termsAndConditionsAssignmentId -``` -This example shows how to use the Remove-MgDeviceManagementTermAndConditionAssignment 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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -454,26 +436,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementTermAndConditionAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementtermandconditionassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementtermandconditionassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md index 13967a891564e..fab9e3c9c1176 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointdeviceimage Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementVirtualEndpointDeviceImage --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementVirtualEndpointDeviceImage Delete a cloudPcDeviceImage object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementVirtualEndpointDeviceImage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementVirtualEndpointDeviceImage?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementVirtualEndpointDeviceImage -CloudPcDeviceImageId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementVirtualEndpointDeviceImage [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,27 +45,14 @@ This cmdlet has the following aliases, Delete a cloudPcDeviceImage object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementVirtualEndpointDeviceImage -CloudPcDeviceImageId $cloudPcDeviceImageId -``` -This example shows how to use the Remove-MgDeviceManagementVirtualEndpointDeviceImage 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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -432,27 +414,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementVirtualEndpointDeviceImage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointdeviceimage) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointdeviceimage) +- [](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md index 3e2afe52c9362..40fed59d293a4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointgalleryimage Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementVirtualEndpointGalleryImage --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementVirtualEndpointGalleryImage Delete navigation property galleryImages for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementVirtualEndpointGalleryImage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementVirtualEndpointGalleryImage?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementVirtualEndpointGalleryImage -CloudPcGalleryImageId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementVirtualEndpointGalleryImage [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Delete navigation property galleryImages for deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -380,7 +385,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -411,27 +416,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementVirtualEndpointGalleryImage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointgalleryimage) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointgalleryimage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index 1da9fe9927a29..400d0debb6bc1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointonpremiseconnection Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection --- @@ -17,9 +17,6 @@ Delete a specific cloudPcOnPremisesConnection object. When you delete an Azure network connection, permissions to the service are removed from the specified Azure resources. You cannot delete an Azure network connection when it's in use, as indicated by the inUse property. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -29,7 +26,6 @@ Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection -CloudPcOnPremisesCo [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -40,7 +36,6 @@ Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -55,18 +50,13 @@ When you delete an Azure network connection, permissions to the service are remo You cannot delete an Azure network connection when it's in use, as indicated by the inUse property. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId -``` -This example shows how to use the Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection Cmdlet. - - ## PARAMETERS ### -Break @@ -397,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. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -428,27 +418,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointonpremiseconnection) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointonpremiseconnection) +- [](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 87e748d29b229..b996b1fe0f069 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointprovisioningpolicy Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy --- @@ -16,9 +16,6 @@ title: Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy Delete a cloudPcProvisioningPolicy object. You can’t delete a policy that’s in use. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningP [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,27 +47,14 @@ This cmdlet has the following aliases, Delete a cloudPcProvisioningPolicy object. You can’t delete a policy that’s in use. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -``` -This example shows how to use the Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet. - - ## PARAMETERS ### -Break @@ -403,7 +385,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -434,27 +416,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointprovisioningpolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointprovisioningpolicy) +- [](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index 110b73cffd990..980d000cd9512 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointprovisioningpolicyassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment Delete navigation property assignments for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete navigation property assignments for deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -402,7 +407,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -433,27 +438,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.md index 870a91ad71b9f..7b8f13eed92ba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointreport Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementVirtualEndpointReport --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementVirtualEndpointReport Delete navigation property report for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementVirtualEndpointReport](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementVirtualEndpointReport?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementVirtualEndpointReport [-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 report 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-MgDeviceManagementVirtualEndpointReport](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointreport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointreport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md index 3f6b42bec157a..ace9fae5e813e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointusersetting Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementVirtualEndpointUserSetting --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementVirtualEndpointUserSetting Delete a cloudPcUserSetting object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementVirtualEndpointUserSetting](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementVirtualEndpointUserSetting?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgDeviceManagementVirtualEndpointUserSetting [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,27 +45,14 @@ This cmdlet has the following aliases, Delete a cloudPcUserSetting object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId $cloudPcUserSettingId -``` -This example shows how to use the Remove-MgDeviceManagementVirtualEndpointUserSetting 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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -432,27 +414,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementVirtualEndpointUserSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointusersetting) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcusersetting-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointusersetting) +- [](https://learn.microsoft.com/graph/api/cloudpcusersetting-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index dfe4248d0ee46..218a450f13474 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointusersettingassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment --- @@ -15,9 +15,6 @@ title: Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment Delete navigation property assignments for deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete navigation property assignments for deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -402,7 +407,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -433,27 +438,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointusersettingassignment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointusersettingassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md index 90bf5033aef6b..5768c6ca31b4d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/rename-mgdevicemanagementvirtualendpointcloudpc Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Rename-MgDeviceManagementVirtualEndpointCloudPc --- @@ -26,7 +26,6 @@ Rename-MgDeviceManagementVirtualEndpointCloudPc -CloudPcId [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Rename @@ -37,7 +36,6 @@ Rename-MgDeviceManagementVirtualEndpointCloudPc -CloudPcId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RenameViaIdentityExpanded @@ -48,7 +46,6 @@ Rename-MgDeviceManagementVirtualEndpointCloudPc [-AdditionalProperties ] [-DisplayName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RenameViaIdentity @@ -60,7 +57,6 @@ Rename-MgDeviceManagementVirtualEndpointCloudPc [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,13 +69,15 @@ This cmdlet has the following aliases, Rename a specific cloudPC object. Use this API to update the displayName of a Cloud PC entity. -**Permissions** +## EXAMPLES -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.ReadWrite.All, | +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} ## PARAMETERS @@ -112,7 +110,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -210,7 +208,7 @@ HelpMessage: '' ### -DisplayName - +. ```yaml Type: System.String @@ -488,11 +486,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. [DisplayName ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -523,28 +521,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Rename-MgDeviceManagementVirtualEndpointCloudPc](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/rename-mgdevicemanagementvirtualendpointcloudpc) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpc-rename?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/rename-mgdevicemanagementvirtualendpointcloudpc) +- [](https://learn.microsoft.com/graph/api/cloudpc-rename?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md index 8e6e472289d66..042a1786dac87 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/resize-mgdevicemanagementvirtualendpointcloudpc Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Resize-MgDeviceManagementVirtualEndpointCloudPc --- @@ -25,7 +25,6 @@ Resize-MgDeviceManagementVirtualEndpointCloudPc -CloudPcId [-TargetServicePlanId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Resize @@ -36,7 +35,6 @@ Resize-MgDeviceManagementVirtualEndpointCloudPc -CloudPcId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ResizeViaIdentityExpanded @@ -48,7 +46,6 @@ Resize-MgDeviceManagementVirtualEndpointCloudPc [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ResizeViaIdentity @@ -60,7 +57,6 @@ Resize-MgDeviceManagementVirtualEndpointCloudPc [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -72,18 +68,9 @@ This cmdlet has the following aliases, Upgrade or downgrade an existing Cloud PC to a configuration with a new virtual CPU (vCPU) and storage size. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -93,10 +80,6 @@ $params = @{ Resize-MgDeviceManagementVirtualEndpointCloudPc -CloudPCId $cloudPCId -BodyParameter $params -``` -This example shows how to use the Resize-MgDeviceManagementVirtualEndpointCloudPc Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -128,7 +111,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -423,7 +406,7 @@ HelpMessage: '' ### -TargetServicePlanId - +. ```yaml Type: System.String @@ -504,11 +487,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. [TargetServicePlanId ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -539,27 +522,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Resize-MgDeviceManagementVirtualEndpointCloudPc](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/resize-mgdevicemanagementvirtualendpointcloudpc) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpc-resize?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/resize-mgdevicemanagementvirtualendpointcloudpc) +- [](https://learn.microsoft.com/graph/api/cloudpc-resize?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md index 900f18ff5be55..6eaf787e877db 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/restart-mgdevicemanagementvirtualendpointcloudpc Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Restart-MgDeviceManagementVirtualEndpointCloudPc --- @@ -24,7 +24,6 @@ Restart-MgDeviceManagementVirtualEndpointCloudPc -CloudPcId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RebootViaIdentity @@ -35,7 +34,6 @@ Restart-MgDeviceManagementVirtualEndpointCloudPc [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -47,27 +45,14 @@ This cmdlet has the following aliases, Reboot a specific cloudPC object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Restart-MgDeviceManagementVirtualEndpointCloudPc -CloudPCId $cloudPCId -``` -This example shows how to use the Restart-MgDeviceManagementVirtualEndpointCloudPc Cmdlet. - - ## PARAMETERS ### -Break @@ -377,7 +362,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -408,27 +393,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Restart-MgDeviceManagementVirtualEndpointCloudPc](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/restart-mgdevicemanagementvirtualendpointcloudpc) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpc-reboot?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/restart-mgdevicemanagementvirtualendpointcloudpc) +- [](https://learn.microsoft.com/graph/api/cloudpc-reboot?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md index d99ca5cba0765..3add713af591a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/restore-mgdevicemanagementvirtualendpointcloudpc Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Restore-MgDeviceManagementVirtualEndpointCloudPc --- @@ -26,7 +26,6 @@ Restore-MgDeviceManagementVirtualEndpointCloudPc -CloudPcId [-CloudPcSnapshotId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Restore @@ -37,7 +36,6 @@ Restore-MgDeviceManagementVirtualEndpointCloudPc -CloudPcId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RestoreViaIdentityExpanded @@ -48,7 +46,6 @@ Restore-MgDeviceManagementVirtualEndpointCloudPc [-AdditionalProperties ] [-CloudPcSnapshotId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RestoreViaIdentity @@ -60,7 +57,6 @@ Restore-MgDeviceManagementVirtualEndpointCloudPc [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,18 +69,9 @@ This cmdlet has the following aliases, Restore a specific cloudPC object to a previous state from a snapshot. Use this API to trigger a remote action that restores a Cloud PC device to a previous state. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -94,10 +81,6 @@ $params = @{ Restore-MgDeviceManagementVirtualEndpointCloudPc -CloudPCId $cloudPCId -BodyParameter $params -``` -This example shows how to use the Restore-MgDeviceManagementVirtualEndpointCloudPc Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -129,7 +112,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -205,7 +188,7 @@ HelpMessage: '' ### -CloudPcSnapshotId - +. ```yaml Type: System.String @@ -505,11 +488,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. [CloudPcSnapshotId ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -540,27 +523,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Restore-MgDeviceManagementVirtualEndpointCloudPc](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/restore-mgdevicemanagementvirtualendpointcloudpc) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpc-restore?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/restore-mgdevicemanagementvirtualendpointcloudpc) +- [](https://learn.microsoft.com/graph/api/cloudpc-restore?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 2b0f92e12408d..53a453786e822 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/set-mgdevicemanagementvirtualendpointprovisioningpolicy Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgDeviceManagementVirtualEndpointProvisioningPolicy --- @@ -26,7 +26,6 @@ Set-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPoli [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Assign @@ -37,7 +36,6 @@ Set-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPoli [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AssignViaIdentityExpanded @@ -50,7 +48,6 @@ Set-MgDeviceManagementVirtualEndpointProvisioningPolicy [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AssignViaIdentity @@ -62,7 +59,6 @@ Set-MgDeviceManagementVirtualEndpointProvisioningPolicy [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -74,18 +70,9 @@ This cmdlet has the following aliases, Assign a cloudPcProvisioningPolicy to user groups. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -102,10 +89,6 @@ $params = @{ Set-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -BodyParameter $params -``` -This example shows how to use the Set-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -137,7 +120,7 @@ HelpMessage: '' ### -Assignments - +. To construct, see NOTES section for ASSIGNMENTS properties and create a hash table. ```yaml @@ -165,7 +148,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -783,11 +766,14 @@ Read-only. [(Any) ]: This indicates any property can be added to this object. [ClientExtensionResults ]: webauthnAuthenticationExtensionsClientOutputs [(Any) ]: This indicates any property can be added to this object. - [Id ]: + [Id ]: The credential ID created by the WebAuthn Authenticator. +This value is Base64URL-encoded without padding. [Response ]: webauthnAuthenticatorAttestationResponse [(Any) ]: This indicates any property can be added to this object. - [AttestationObject ]: - [ClientDataJson ]: + [AttestationObject ]: A CBOR-encoded attestation object containing the authenticator data and attestation statement. +This value is Base64URL-encoded without padding. + [ClientDataJson ]: Contains the JSON-compatible serialization of client data passed to the authenticator by the client. +This value is Base64URL-encoded without padding. [Methods ]: Represents all authentication methods registered to a user. [Id ]: The unique identifier for an entity. Read-only. @@ -1415,7 +1401,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding `` tag in the message body. +Matches the {index} value in the corresponding tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -1483,7 +1469,8 @@ For example, if a user changes their display name the API might show the new val [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [UserIdentityType ]: teamworkUserIdentityType - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the chat. +The value is null if the chat never entered migration mode. [PermissionGrants ]: A collection of permissions granted to apps for the chat. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -1520,6 +1507,47 @@ Required. [TeamsApp ]: teamsApp [WebUrl ]: Deep link URL of the tab instance. Read-only. + [TargetedMessages ]: + [Attachments ]: References to attached objects like files, tabs, meetings etc. + [Body ]: itemBody + [ChannelIdentity ]: channelIdentity + [ChatId ]: If the message was sent in a chat, represents the identity of the chat. + [CreatedDateTime ]: Timestamp of when the chat message was created. + [DeletedDateTime ]: Read only. +Timestamp at which the chat message was deleted, or null if not deleted. + [Etag ]: Read-only. +Version number of the chat message. + [EventDetail ]: eventMessageDetail + [From ]: chatMessageFromIdentitySet + [HostedContents ]: Content in a message hosted by Microsoft Teams - for example, images or code snippets. + [Importance ]: chatMessageImportance + [LastEditedDateTime ]: Read only. +Timestamp when edits to the chat message were made. +Triggers an 'Edited' flag in the Teams UI. +If no edits are made the value is null. + [LastModifiedDateTime ]: Read only. +Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + [Locale ]: Locale of the chat message set by the client. +Always set to en-us. + [Mentions ]: List of entities mentioned in the chat message. +Supported entities are: user, bot, team, channel, chat, and tag. + [MessageHistory ]: List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. + [MessageType ]: chatMessageType + [PolicyViolation ]: chatMessagePolicyViolation + [Reactions ]: Reactions for this chat message (for example, Like). + [Replies ]: Replies for a specified message. +Supports $expand for channel messages. + [ReplyToId ]: Read-only. +ID of the parent chat message or root chat message of the thread. +(Only applies to chat messages in channels, not chats.) + [Subject ]: The subject of the chat message, in plaintext. + [Summary ]: Summary text of the chat message that could be used for push notifications and summary views or fall back views. +Only applies to channel chat messages, not chat messages in a chat. + [WebUrl ]: Read-only. +Link to the message in Microsoft Teams. + [Id ]: The unique identifier for an entity. +Read-only. + [Recipient ]: identity [TenantId ]: The identifier of the tenant in which the chat was created. Read-only. [Topic ]: (Optional) Subject or topic for the chat. @@ -3495,7 +3523,8 @@ The default value is false. A navigation property. Nullable. [MigrationMode ]: migrationMode - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the channel. +The value is null if the channel never entered migration mode. [SharedWithTeams ]: A collection of teams with which a channel is shared. [DisplayName ]: The name of the team. [Team ]: team @@ -3700,6 +3729,7 @@ Supported only on the Get group API (GET /groups/{ID}). The default value is false. Requires $select to retrieve. Supported only on the Get group API (GET /groups/{ID}). + [InfoCatalogs ]: [IsArchived ]: When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. [IsAssignableToRole ]: Indicates whether this group can be assigned to a Microsoft Entra role. @@ -5480,7 +5510,7 @@ Users can control this setting in Office Delve. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [PrimaryMailboxId ]: + [PrimaryMailboxId ]: The unique identifier for the user's primary mailbox. [ItemInsights ]: userInsightsSettings [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -5741,8 +5771,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, - +Only the following characters are allowed A - Z, a - z, 0 - 9, ' . +- _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -5754,7 +5784,7 @@ NOTE: For more information about the permissions for members and guests, see Wha [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Assignments ]: [Id ]: The unique identifier for an entity. @@ -6025,11 +6055,14 @@ Read-only. [(Any) ]: This indicates any property can be added to this object. [ClientExtensionResults ]: webauthnAuthenticationExtensionsClientOutputs [(Any) ]: This indicates any property can be added to this object. - [Id ]: + [Id ]: The credential ID created by the WebAuthn Authenticator. +This value is Base64URL-encoded without padding. [Response ]: webauthnAuthenticatorAttestationResponse [(Any) ]: This indicates any property can be added to this object. - [AttestationObject ]: - [ClientDataJson ]: + [AttestationObject ]: A CBOR-encoded attestation object containing the authenticator data and attestation statement. +This value is Base64URL-encoded without padding. + [ClientDataJson ]: Contains the JSON-compatible serialization of client data passed to the authenticator by the client. +This value is Base64URL-encoded without padding. [Methods ]: Represents all authentication methods registered to a user. [Id ]: The unique identifier for an entity. Read-only. @@ -6657,7 +6690,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding `` tag in the message body. +Matches the {index} value in the corresponding tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -6725,7 +6758,8 @@ For example, if a user changes their display name the API might show the new val [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [UserIdentityType ]: teamworkUserIdentityType - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the chat. +The value is null if the chat never entered migration mode. [PermissionGrants ]: A collection of permissions granted to apps for the chat. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -6762,6 +6796,47 @@ Required. [TeamsApp ]: teamsApp [WebUrl ]: Deep link URL of the tab instance. Read-only. + [TargetedMessages ]: + [Attachments ]: References to attached objects like files, tabs, meetings etc. + [Body ]: itemBody + [ChannelIdentity ]: channelIdentity + [ChatId ]: If the message was sent in a chat, represents the identity of the chat. + [CreatedDateTime ]: Timestamp of when the chat message was created. + [DeletedDateTime ]: Read only. +Timestamp at which the chat message was deleted, or null if not deleted. + [Etag ]: Read-only. +Version number of the chat message. + [EventDetail ]: eventMessageDetail + [From ]: chatMessageFromIdentitySet + [HostedContents ]: Content in a message hosted by Microsoft Teams - for example, images or code snippets. + [Importance ]: chatMessageImportance + [LastEditedDateTime ]: Read only. +Timestamp when edits to the chat message were made. +Triggers an 'Edited' flag in the Teams UI. +If no edits are made the value is null. + [LastModifiedDateTime ]: Read only. +Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + [Locale ]: Locale of the chat message set by the client. +Always set to en-us. + [Mentions ]: List of entities mentioned in the chat message. +Supported entities are: user, bot, team, channel, chat, and tag. + [MessageHistory ]: List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. + [MessageType ]: chatMessageType + [PolicyViolation ]: chatMessagePolicyViolation + [Reactions ]: Reactions for this chat message (for example, Like). + [Replies ]: Replies for a specified message. +Supports $expand for channel messages. + [ReplyToId ]: Read-only. +ID of the parent chat message or root chat message of the thread. +(Only applies to chat messages in channels, not chats.) + [Subject ]: The subject of the chat message, in plaintext. + [Summary ]: Summary text of the chat message that could be used for push notifications and summary views or fall back views. +Only applies to channel chat messages, not chat messages in a chat. + [WebUrl ]: Read-only. +Link to the message in Microsoft Teams. + [Id ]: The unique identifier for an entity. +Read-only. + [Recipient ]: identity [TenantId ]: The identifier of the tenant in which the chat was created. Read-only. [Topic ]: (Optional) Subject or topic for the chat. @@ -8737,7 +8812,8 @@ The default value is false. A navigation property. Nullable. [MigrationMode ]: migrationMode - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the channel. +The value is null if the channel never entered migration mode. [SharedWithTeams ]: A collection of teams with which a channel is shared. [DisplayName ]: The name of the team. [Team ]: team @@ -8942,6 +9018,7 @@ Supported only on the Get group API (GET /groups/{ID}). The default value is false. Requires $select to retrieve. Supported only on the Get group API (GET /groups/{ID}). + [InfoCatalogs ]: [IsArchived ]: When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. [IsAssignableToRole ]: Indicates whether this group can be assigned to a Microsoft Entra role. @@ -10722,7 +10799,7 @@ Users can control this setting in Office Delve. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [PrimaryMailboxId ]: + [PrimaryMailboxId ]: The unique identifier for the user's primary mailbox. [ItemInsights ]: userInsightsSettings [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -10983,8 +11060,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, - +Only the following characters are allowed A - Z, a - z, 0 - 9, ' . +- _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -10996,7 +11073,7 @@ NOTE: For more information about the permissions for members and guests, see Wha [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -11027,27 +11104,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgDeviceManagementVirtualEndpointProvisioningPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/set-mgdevicemanagementvirtualendpointprovisioningpolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-assign?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/set-mgdevicemanagementvirtualendpointprovisioningpolicy) +- [](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-assign?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md index 015eb25ed8ec1..a06d8a681b7b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/set-mgdevicemanagementvirtualendpointusersetting Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Set-MgDeviceManagementVirtualEndpointUserSetting --- @@ -25,7 +25,6 @@ Set-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId [-Assignments ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Assign @@ -36,7 +35,6 @@ Set-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AssignViaIdentityExpanded @@ -48,7 +46,6 @@ Set-MgDeviceManagementVirtualEndpointUserSetting [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### AssignViaIdentity @@ -60,7 +57,6 @@ Set-MgDeviceManagementVirtualEndpointUserSetting [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -72,18 +68,9 @@ This cmdlet has the following aliases, Assign a cloudPcUserSetting to user groups. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -101,10 +88,6 @@ $params = @{ Set-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId $cloudPcUserSettingId -BodyParameter $params -``` -This example shows how to use the Set-MgDeviceManagementVirtualEndpointUserSetting Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -136,7 +119,7 @@ HelpMessage: '' ### -Assignments - +. To construct, see NOTES section for ASSIGNMENTS properties and create a hash table. ```yaml @@ -164,7 +147,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -522,7 +505,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [Assignments ]: [Id ]: The unique identifier for an entity. @@ -533,7 +516,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -564,27 +547,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Set-MgDeviceManagementVirtualEndpointUserSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/set-mgdevicemanagementvirtualendpointusersetting) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcusersetting-assign?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/set-mgdevicemanagementvirtualendpointusersetting) +- [](https://learn.microsoft.com/graph/api/cloudpcusersetting-assign?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck.md index 797b9ef3037f2..35088e6eef5a4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/start-mgdevicemanagementvirtualendpointonpremiseconnectionhealthcheck Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck --- @@ -26,7 +26,6 @@ Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### RunViaIdentity @@ -37,7 +36,6 @@ Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,18 +49,13 @@ Run health checks on the cloudPcOnPremisesConnection object. It triggers a new health check for the cloudPcOnPremisesConnection (../resources/cloudpconpremisesconnection.md) object and changes the healthCheckStatus and [healthCheckStatusDetail properties when check finished. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId -``` -This example shows how to use the Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck Cmdlet. - - ## PARAMETERS ### -Break @@ -372,7 +365,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -403,27 +396,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/start-mgdevicemanagementvirtualendpointonpremiseconnectionhealthcheck) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-runhealthcheck?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/start-mgdevicemanagementvirtualendpointonpremiseconnectionhealthcheck) +- [](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-runhealthcheck?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md index d3e26b6710abe..8b3222de222b0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/stop-mgdevicemanagementvirtualendpointcloudpcgraceperiod Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod --- @@ -27,7 +27,6 @@ Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod -CloudPcId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### EndViaIdentity @@ -38,7 +37,6 @@ Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,27 +51,14 @@ The grace period is triggered when the Cloud PC license is removed or the provis It allows users to access Cloud PCs for up to seven days before deprovisioning occurs. Ending the grace period immediately deprovisions the Cloud PC without waiting the seven days. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod -CloudPCId $cloudPCId -``` -This example shows how to use the Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod Cmdlet. - - ## PARAMETERS ### -Break @@ -383,7 +368,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -414,27 +399,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/stop-mgdevicemanagementvirtualendpointcloudpcgraceperiod) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpc-endgraceperiod?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/stop-mgdevicemanagementvirtualendpointcloudpcgraceperiod) +- [](https://learn.microsoft.com/graph/api/cloudpc-endgraceperiod?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md index 75c5dd14ecd8e..2309ff68a1942 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/sync-mgdevicemanagementexchangeconnector Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Sync-MgDeviceManagementExchangeConnector --- @@ -25,7 +25,6 @@ Sync-MgDeviceManagementExchangeConnector -DeviceManagementExchangeConnectorId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Sync @@ -36,7 +35,6 @@ Sync-MgDeviceManagementExchangeConnector -DeviceManagementExchangeConnectorId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SyncViaIdentityExpanded @@ -47,7 +45,6 @@ Sync-MgDeviceManagementExchangeConnector -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### SyncViaIdentity @@ -58,7 +55,6 @@ Sync-MgDeviceManagementExchangeConnector -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -70,13 +66,15 @@ This cmdlet has the following aliases, Invoke action sync -**Permissions** +## EXAMPLES -| 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, | +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} ## PARAMETERS @@ -109,7 +107,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -485,11 +483,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. [SyncType ]: The type of Exchange Connector sync requested. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -520,27 +518,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Sync-MgDeviceManagementExchangeConnector](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/sync-mgdevicemanagementexchangeconnector) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/sync-mgdevicemanagementexchangeconnector) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md index 557d347eaabd2..6d1abb0c520b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementapplepushnotificationcertificate Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementApplePushNotificationCertificate --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementApplePushNotificationCertificate Update the navigation property applePushNotificationCertificate in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementApplePushNotificationCertificate](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementApplePushNotificationCertificate?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,6 @@ Update-MgDeviceManagementApplePushNotificationCertificate [-ResponseHeadersVaria [-TopicIdentifier ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +37,6 @@ Update-MgDeviceManagementApplePushNotificationCertificate [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,18 +48,9 @@ This cmdlet has the following aliases, Update the navigation property applePushNotificationCertificate 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.Administration @@ -81,10 +67,6 @@ $params = @{ Update-MgDeviceManagementApplePushNotificationCertificate -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementApplePushNotificationCertificate Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -174,7 +156,7 @@ HelpMessage: '' ### -Certificate - +. ```yaml Type: System.String @@ -542,7 +524,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 ``: Apple push notification certificate. +BODYPARAMETER : Apple push notification certificate. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -557,26 +539,4 @@ Read-only. ## RELATED LINKS -- [Update-MgDeviceManagementApplePushNotificationCertificate](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementapplepushnotificationcertificate) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementapplepushnotificationcertificate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md index fccc7759fc622..e887412db1b2c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementauditevent Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementAuditEvent --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementAuditEvent Update the navigation property auditEvents in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementAuditEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementAuditEvent?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgDeviceManagementAuditEvent -AuditEventId [-ResponseHeadersVari [-Resources ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +37,7 @@ Update-MgDeviceManagementAuditEvent -AuditEventId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +51,6 @@ Update-MgDeviceManagementAuditEvent -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +60,7 @@ Update-MgDeviceManagementAuditEvent -InputObject [-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 auditEvents in deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementApps.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementApps.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -138,10 +124,6 @@ category = "Category value" Update-MgDeviceManagementAuditEvent -AuditEventId $auditEventId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementAuditEvent Cmdlet. - - ## PARAMETERS ### -Activity @@ -828,7 +810,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. -ACTOR ``: A class containing the properties for Audit Actor. +ACTOR : A class containing the properties for Audit Actor. [(Any) ]: This indicates any property can be added to this object. [ApplicationDisplayName ]: Name of the Application. [ApplicationId ]: AAD Application Id. @@ -839,7 +821,7 @@ ACTOR ``: A class containing the properties for Audit [UserPermissions ]: List of user permissions when the audit was performed. [UserPrincipalName ]: User Principal Name (UPN). -BODYPARAMETER ``: A class containing the properties for Audit Event. +BODYPARAMETER : A class containing the properties for Audit Event. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -871,7 +853,7 @@ Read-only. [OldValue ]: Old value. [ResourceId ]: Audit resource's Id. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -911,26 +893,4 @@ RESOURCES : Resources being modified. ## RELATED LINKS -- [Update-MgDeviceManagementAuditEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementauditevent) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementauditevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md index 6e1b2db2c28fa..a2a0ac2af8e40 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementcompliancemanagementpartner Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementComplianceManagementPartner --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementComplianceManagementPartner Update the navigation property complianceManagementPartners in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementComplianceManagementPartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementComplianceManagementPartner?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -33,7 +30,7 @@ Update-MgDeviceManagementComplianceManagementPartner -ComplianceManagementPartne [-MacOSOnboarded] [-PartnerState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -43,7 +40,7 @@ Update-MgDeviceManagementComplianceManagementPartner -ComplianceManagementPartne -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -60,7 +57,7 @@ Update-MgDeviceManagementComplianceManagementPartner [-MacOSOnboarded] [-PartnerState ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -71,7 +68,7 @@ Update-MgDeviceManagementComplianceManagementPartner -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -83,18 +80,9 @@ This cmdlet has the following aliases, Update the navigation property complianceManagementPartners 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.Administration @@ -137,10 +125,6 @@ $params = @{ Update-MgDeviceManagementComplianceManagementPartner -ComplianceManagementPartnerId $complianceManagementPartnerId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementComplianceManagementPartner Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -778,7 +762,7 @@ ANDROIDENROLLMENTASSIGNMENTS ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER ``: Compliance management partner for all platforms +BODYPARAMETER : Compliance management partner for all platforms [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -794,7 +778,7 @@ Read-only. [MacOSOnboarded ]: Partner onboarded for Mac devices. [PartnerState ]: Partner state of this tenant. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -833,26 +817,4 @@ MACOSENROLLMENTASSIGNMENTS [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementExchangeConnector](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementExchangeConnector?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgDeviceManagementExchangeConnector -DeviceManagementExchangeConnectorId [-Status ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +39,6 @@ Update-MgDeviceManagementExchangeConnector -DeviceManagementExchangeConnectorId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -56,7 +52,7 @@ Update-MgDeviceManagementExchangeConnector -InputObject ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -67,7 +63,6 @@ Update-MgDeviceManagementExchangeConnector -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -79,18 +74,9 @@ This cmdlet has the following aliases, Update the navigation property exchangeConnectors 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.Administration @@ -109,10 +95,6 @@ $params = @{ Update-MgDeviceManagementExchangeConnector -DeviceManagementExchangeConnectorId $deviceManagementExchangeConnectorId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementExchangeConnector Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -743,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 ``: Entity which represents a connection to an Exchange environment. +BODYPARAMETER : Entity which represents a connection to an Exchange environment. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -757,7 +739,7 @@ Read-only. [Status ]: The current status of the Exchange Connector. [Version ]: The version of the ExchangeConnectorAgent -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -788,26 +770,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementExchangeConnector](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementexchangeconnector) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementexchangeconnector) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md index 4af389f67a351..fc54e02f57bc7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementioupdatestatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementIoUpdateStatus --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementIoUpdateStatus Update the navigation property iosUpdateStatuses in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementIoUpdateStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementIoUpdateStatus?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgDeviceManagementIoUpdateStatus -IosUpdateDeviceStatusId [-UserName ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +37,7 @@ Update-MgDeviceManagementIoUpdateStatus -IosUpdateDeviceStatusId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +51,6 @@ Update-MgDeviceManagementIoUpdateStatus -InputObject ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +60,7 @@ Update-MgDeviceManagementIoUpdateStatus -InputObject [-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 iosUpdateStatuses in deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -109,10 +95,6 @@ $params = @{ Update-MgDeviceManagementIoUpdateStatus -IosUpdateDeviceStatusId $iosUpdateDeviceStatusId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementIoUpdateStatus Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -797,7 +779,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 ``: iosUpdateDeviceStatus +BODYPARAMETER : iosUpdateDeviceStatus [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -813,7 +795,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -844,26 +826,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementIoUpdateStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementioupdatestatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementioupdatestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md index 9300a00863963..053077b5acb18 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementmobilethreatdefenseconnector Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementMobileThreatDefenseConnector --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementMobileThreatDefenseConnector Update the navigation property mobileThreatDefenseConnectors in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementMobileThreatDefenseConnector](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementMobileThreatDefenseConnector?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -34,7 +31,7 @@ Update-MgDeviceManagementMobileThreatDefenseConnector -MobileThreatDefenseConnec [-PartnerUnsupportedOSVersionBlocked] [-WindowsDeviceBlockedOnMissingPartnerData] [-WindowsEnabled] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -44,7 +41,7 @@ Update-MgDeviceManagementMobileThreatDefenseConnector -MobileThreatDefenseConnec -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -61,7 +58,7 @@ Update-MgDeviceManagementMobileThreatDefenseConnector [-PartnerUnsupportedOSVersionBlocked] [-WindowsDeviceBlockedOnMissingPartnerData] [-WindowsEnabled] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -72,7 +69,7 @@ Update-MgDeviceManagementMobileThreatDefenseConnector -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -84,18 +81,9 @@ This cmdlet has the following aliases, Update the navigation property mobileThreatDefenseConnectors 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.Administration @@ -120,10 +108,6 @@ $params = @{ Update-MgDeviceManagementMobileThreatDefenseConnector -MobileThreatDefenseConnectorId $mobileThreatDefenseConnectorId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementMobileThreatDefenseConnector Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -942,7 +926,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 ``: Entity which represents a connection to Mobile Threat Defense partner. +BODYPARAMETER : Entity which represents a connection to Mobile Threat Defense partner. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -988,7 +972,7 @@ Default value is FALSE. When FALSE, indicates that data from the Mobile Threat Defense partner will not be used during compliance evaluations for Windows. Default value is FALSE. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -1019,26 +1003,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementMobileThreatDefenseConnector](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementmobilethreatdefenseconnector) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementmobilethreatdefenseconnector) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md index 76fc7e289c301..1fcd34e84fd91 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementpartner Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementPartner --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementPartner Update the navigation property deviceManagementPartners in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementPartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementPartner?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -33,7 +30,6 @@ Update-MgDeviceManagementPartner -DeviceManagementPartnerId [-WhenPartnerDevicesWillBeRemovedDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -43,7 +39,7 @@ Update-MgDeviceManagementPartner -DeviceManagementPartnerId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -59,7 +55,6 @@ Update-MgDeviceManagementPartner -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -69,7 +64,7 @@ Update-MgDeviceManagementPartner -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -81,18 +76,9 @@ This cmdlet has the following aliases, Update the navigation property deviceManagementPartners 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.Administration @@ -119,10 +105,6 @@ $params = @{ Update-MgDeviceManagementPartner -DeviceManagementPartnerId $deviceManagementPartnerId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementPartner Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -754,7 +736,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 ``: Entity which represents a connection to device management partner. +BODYPARAMETER : Entity which represents a connection to device management partner. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -774,7 +756,7 @@ GROUPSREQUIRINGPARTNERENROLLMENT ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -805,26 +787,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementPartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementpartner) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementpartner) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md index bef5c6d454d67..25a8395cdb8bf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementremoteassistancepartner Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementRemoteAssistancePartner --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementRemoteAssistancePartner Update the properties of a remoteAssistancePartner object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementRemoteAssistancePartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementRemoteAssistancePartner?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgDeviceManagementRemoteAssistancePartner -RemoteAssistancePartnerId ] [-OnboardingUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -39,7 +36,7 @@ Update-MgDeviceManagementRemoteAssistancePartner -RemoteAssistancePartnerId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -51,7 +48,7 @@ Update-MgDeviceManagementRemoteAssistancePartner [-LastConnectionDateTime ] [-OnboardingStatus ] [-OnboardingUrl ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -62,7 +59,7 @@ Update-MgDeviceManagementRemoteAssistancePartner -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -74,18 +71,9 @@ This cmdlet has the following aliases, Update the properties of a remoteAssistancePartner object. -**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.Administration @@ -99,10 +87,6 @@ $params = @{ Update-MgDeviceManagementRemoteAssistancePartner -RemoteAssistancePartnerId $remoteAssistancePartnerId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementRemoteAssistancePartner Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -598,7 +582,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 ``: RemoteAssistPartner resources represent the metadata and status of a given Remote Assistance partner service. +BODYPARAMETER : RemoteAssistPartner resources represent the metadata and status of a given Remote Assistance partner service. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -607,7 +591,7 @@ Read-only. [OnboardingStatus ]: The current TeamViewer connector status [OnboardingUrl ]: URL of the partner's onboarding portal, where an administrator can configure their Remote Assistance service. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -638,27 +622,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementRemoteAssistancePartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementremoteassistancepartner) -- [Graph API Reference](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementremoteassistancepartner) +- [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md index b6dabf2dd7156..a6c907ec2b109 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementresourceoperation Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementResourceOperation --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementResourceOperation Update the navigation property resourceOperations in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementResourceOperation](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementResourceOperation?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,6 @@ Update-MgDeviceManagementResourceOperation -ResourceOperationId [-Description ] [-Id ] [-ResourceName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -38,7 +34,7 @@ Update-MgDeviceManagementResourceOperation -ResourceOperationId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -49,7 +45,6 @@ Update-MgDeviceManagementResourceOperation -InputObject ] [-Id ] [-ResourceName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -59,7 +54,7 @@ Update-MgDeviceManagementResourceOperation -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -71,18 +66,9 @@ This cmdlet has the following aliases, Update the navigation property resourceOperations in deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -95,10 +81,6 @@ $params = @{ Update-MgDeviceManagementResourceOperation -ResourceOperationId $resourceOperationId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementResourceOperation Cmdlet. - - ## PARAMETERS ### -ActionName @@ -569,7 +551,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 ``: Describes the resourceOperation resource (entity) of the Microsoft Graph API (REST), which supports Intune workflows related to role-based access control (RBAC). +BODYPARAMETER : Describes the resourceOperation resource (entity) of the Microsoft Graph API (REST), which supports Intune workflows related to role-based access control (RBAC). [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -579,7 +561,7 @@ The actionName should be concise and limited to as few words as possible. The description is used in mouse-over text for the operation when shown in the Azure Portal. [ResourceName ]: Name of the Resource this operation is performed on. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -610,26 +592,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementResourceOperation](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementresourceoperation) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementresourceoperation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md index 697426977a086..11aef60e985a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementroleassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementRoleAssignment --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementRoleAssignment Update the navigation property roleAssignments in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementRoleAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,6 @@ Update-MgDeviceManagementRoleAssignment -DeviceAndAppManagementRoleAssignmentId [-RoleDefinition ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -40,7 +36,6 @@ Update-MgDeviceManagementRoleAssignment -DeviceAndAppManagementRoleAssignmentId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -52,7 +47,6 @@ Update-MgDeviceManagementRoleAssignment -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +57,6 @@ Update-MgDeviceManagementRoleAssignment -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -75,18 +68,9 @@ This cmdlet has the following aliases, Update the navigation property roleAssignments in deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -104,10 +88,6 @@ members = @( Update-MgDeviceManagementRoleAssignment -DeviceAndAppManagementRoleAssignmentId $deviceAndAppManagementRoleAssignmentId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementRoleAssignment Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -645,7 +625,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 Role Assignment resource. +BODYPARAMETER : The Role Assignment resource. Role assignments tie together a role definition with members and scopes. There can be one or more role assignments per role. This applies to custom and built-in roles. @@ -698,7 +678,7 @@ Read-only. [Members ]: Indicates the list of role member security group Entra IDs. For example: {dec942f4-6777-4998-96b4-522e383b08e2}. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -726,7 +706,7 @@ INPUTOBJECT ``: Identity Parameter [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -ROLEDEFINITION ``: The Role Definition resource. +ROLEDEFINITION : The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. @@ -766,26 +746,4 @@ These must match the actionName that is defined as part of the rolePermission. ## RELATED LINKS -- [Update-MgDeviceManagementRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementroleassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementroleassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md index 988896837f1ab..d13add97b59e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementroledefinition Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementRoleDefinition --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementRoleDefinition Update the navigation property roleDefinitions in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementRoleDefinition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementRoleDefinition?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,6 @@ Update-MgDeviceManagementRoleDefinition -RoleDefinitionId [-RolePermissions ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -40,7 +36,7 @@ Update-MgDeviceManagementRoleDefinition -RoleDefinitionId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +49,6 @@ Update-MgDeviceManagementRoleDefinition -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -63,7 +58,7 @@ Update-MgDeviceManagementRoleDefinition -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,18 +70,9 @@ This cmdlet has the following aliases, Update the navigation property roleDefinitions in deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -115,10 +101,6 @@ isBuiltIn = $true Update-MgDeviceManagementRoleDefinition -RoleDefinitionId $roleDefinitionId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementRoleDefinition Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -651,7 +633,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 Role Definition resource. +BODYPARAMETER : The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. @@ -688,7 +670,7 @@ These must match the actionName that is defined as part of the rolePermission. [AllowedResourceActions ]: Allowed Actions [NotAllowedResourceActions ]: Not Allowed Actions. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -756,26 +738,4 @@ These must match the actionName that is defined as part of the rolePermission. ## RELATED LINKS -- [Update-MgDeviceManagementRoleDefinition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementroledefinition) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementroledefinition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md index e354e7e439946..566e1e2e21e62 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementroledefinitionroleassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementRoleDefinitionRoleAssignment --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementRoleDefinitionRoleAssignment Update the navigation property roleAssignments in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementRoleDefinitionRoleAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementRoleDefinitionRoleAssignment?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,6 @@ Update-MgDeviceManagementRoleDefinitionRoleAssignment -RoleAssignmentId [-RoleDefinition ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -40,7 +36,6 @@ Update-MgDeviceManagementRoleDefinitionRoleAssignment -RoleAssignmentId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -52,7 +47,7 @@ Update-MgDeviceManagementRoleDefinitionRoleAssignment [-ResourceScopes ] [-RoleDefinition ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +58,7 @@ Update-MgDeviceManagementRoleDefinitionRoleAssignment -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,18 +70,9 @@ This cmdlet has the following aliases, Update the navigation property roleAssignments in deviceManagement -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -101,10 +87,6 @@ $params = @{ Update-MgDeviceManagementRoleDefinitionRoleAssignment -RoleDefinitionId $roleDefinitionId -RoleAssignmentId $roleAssignmentId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementRoleDefinitionRoleAssignment Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -641,7 +623,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 Role Assignment resource. +BODYPARAMETER : The Role Assignment resource. Role assignments tie together a role definition with members and scopes. There can be one or more role assignments per role. This applies to custom and built-in roles. @@ -676,7 +658,7 @@ These must match the actionName that is defined as part of the rolePermission. [AllowedResourceActions ]: Allowed Actions [NotAllowedResourceActions ]: Not Allowed Actions. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -704,7 +686,7 @@ INPUTOBJECT ``: Identity Parameter [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -ROLEDEFINITION ``: The Role Definition resource. +ROLEDEFINITION : The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. @@ -744,26 +726,4 @@ These must match the actionName that is defined as part of the rolePermission. ## RELATED LINKS -- [Update-MgDeviceManagementRoleDefinitionRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementroledefinitionroleassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementroledefinitionroleassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md index 0dec979668b63..d85ef11a8ad7f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementtermandcondition Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementTermAndCondition --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementTermAndCondition Update the navigation property termsAndConditions in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementTermAndCondition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementTermAndCondition?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgDeviceManagementTermAndCondition -TermsAndConditionsId [-Id ] [-LastModifiedDateTime ] [-Title ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,7 @@ Update-MgDeviceManagementTermAndCondition -TermsAndConditionsId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +52,7 @@ Update-MgDeviceManagementTermAndCondition -InputObject ] [-LastModifiedDateTime ] [-Title ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +62,7 @@ Update-MgDeviceManagementTermAndCondition -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,18 +74,9 @@ This cmdlet has the following aliases, Update the navigation property termsAndConditions in 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.Administration @@ -104,10 +92,6 @@ $params = @{ Update-MgDeviceManagementTermAndCondition -TermsAndConditionsId $termsAndConditionsId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementTermAndCondition Cmdlet. - - ## PARAMETERS ### -AcceptanceStatement @@ -811,7 +795,7 @@ Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER ``: A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. +BODYPARAMETER : A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. T&C policies’ contents are presented to users upon their first attempt to enroll into Intune and subsequently upon edits where an administrator has required re-acceptance. They enable administrators to communicate the provisions to which a user must agree in order to have devices enrolled into Intune. [(Any) ]: This indicates any property can be added to this object. @@ -845,7 +829,7 @@ This is shown to the user on prompts to accept the T&C policy. [Version ]: Integer indicating the current version of the terms. Incremented when an administrator makes a change to the terms and wishes to require users to re-accept the modified T&C policy. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -876,26 +860,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementTermAndCondition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementtermandcondition) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementtermandcondition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md index cfe91de6ad555..f277ffc99fa44 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementtermandconditionacceptancestatus Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementTermAndConditionAcceptanceStatus --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementTermAndConditionAcceptanceStatus Update the navigation property acceptanceStatuses in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementTermAndConditionAcceptanceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementTermAndConditionAcceptanceStatus?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgDeviceManagementTermAndConditionAcceptanceStatus [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -43,7 +39,6 @@ Update-MgDeviceManagementTermAndConditionAcceptanceStatus [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -56,7 +51,6 @@ Update-MgDeviceManagementTermAndConditionAcceptanceStatus [-UserDisplayName ] [-UserPrincipalName ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -68,7 +62,6 @@ Update-MgDeviceManagementTermAndConditionAcceptanceStatus [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -80,18 +73,9 @@ This cmdlet has the following aliases, Update the navigation property acceptanceStatuses in 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.Administration @@ -105,10 +89,6 @@ $params = @{ Update-MgDeviceManagementTermAndConditionAcceptanceStatus -TermsAndConditionsId $termsAndConditionsId -TermsAndConditionsAcceptanceStatusId $termsAndConditionsAcceptanceStatusId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementTermAndConditionAcceptanceStatus Cmdlet. - - ## PARAMETERS ### -AcceptedDateTime @@ -662,7 +642,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 ``: A termsAndConditionsAcceptanceStatus entity represents the acceptance status of a given Terms and Conditions (T&C) policy by a given user. +BODYPARAMETER : A termsAndConditionsAcceptanceStatus entity represents the acceptance status of a given Terms and Conditions (T&C) policy by a given user. Users must accept the most up-to-date version of the terms in order to retain access to the Company Portal. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -696,7 +676,7 @@ Incremented when an administrator makes a change to the terms and wishes to requ [UserDisplayName ]: Display name of the user whose acceptance the entity represents. [UserPrincipalName ]: The userPrincipalName of the User that accepted the term. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -724,7 +704,7 @@ INPUTOBJECT ``: Identity Parameter [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -TERMSANDCONDITIONS ``: A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. +TERMSANDCONDITIONS : A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. T&C policies’ contents are presented to users upon their first attempt to enroll into Intune and subsequently upon edits where an administrator has required re-acceptance. They enable administrators to communicate the provisions to which a user must agree in order to have devices enrolled into Intune. [(Any) ]: This indicates any property can be added to this object. @@ -761,26 +741,4 @@ Incremented when an administrator makes a change to the terms and wishes to requ ## RELATED LINKS -- [Update-MgDeviceManagementTermAndConditionAcceptanceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementtermandconditionacceptancestatus) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementtermandconditionacceptancestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md index 3cf32c3d2028b..a5315c4c21a35 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementtermandconditionassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementTermAndConditionAssignment --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementTermAndConditionAssignment Update the navigation property assignments in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementTermAndConditionAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementTermAndConditionAssignment?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,7 @@ Update-MgDeviceManagementTermAndConditionAssignment -TermsAndConditionsAssignmen [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -39,7 +36,6 @@ Update-MgDeviceManagementTermAndConditionAssignment -TermsAndConditionsAssignmen [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -50,7 +46,7 @@ Update-MgDeviceManagementTermAndConditionAssignment [-AdditionalProperties ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -61,7 +57,7 @@ Update-MgDeviceManagementTermAndConditionAssignment -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -73,18 +69,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, | -| Delegated (personal Microsoft account) | Not supported | -| Application | DeviceManagementServiceConfig.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -98,10 +85,6 @@ $params = @{ Update-MgDeviceManagementTermAndConditionAssignment -TermsAndConditionsId $termsAndConditionsId -TermsAndConditionsAssignmentId $termsAndConditionsAssignmentId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementTermAndConditionAssignment Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -544,7 +527,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 ``: A termsAndConditionsAssignment entity represents the assignment of a given Terms and Conditions (T&C) policy to a given group. +BODYPARAMETER : A termsAndConditionsAssignment entity represents the assignment of a given Terms and Conditions (T&C) policy to a given group. Users in the group will be required to accept the terms in order to have devices enrolled into Intune. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -552,7 +535,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -583,26 +566,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementTermAndConditionAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementtermandconditionassignment) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementtermandconditionassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md index 5beb186b74948..5054d6b7472d3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointdeviceimage Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementVirtualEndpointDeviceImage --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementVirtualEndpointDeviceImage Update the navigation property deviceImages in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementVirtualEndpointDeviceImage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementVirtualEndpointDeviceImage?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgDeviceManagementVirtualEndpointDeviceImage -CloudPcDeviceImageId ] [-Status ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,7 @@ Update-MgDeviceManagementVirtualEndpointDeviceImage -CloudPcDeviceImageId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +52,7 @@ Update-MgDeviceManagementVirtualEndpointDeviceImage [-OperatingSystem ] [-SizeInGb ] [-SourceImageResourceId ] [-Status ] [-Version ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -66,7 +63,7 @@ Update-MgDeviceManagementVirtualEndpointDeviceImage -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -78,6 +75,16 @@ This cmdlet has the following aliases, Update the navigation property deviceImages in deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -807,7 +814,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 ``: cloudPcDeviceImage +BODYPARAMETER : cloudPcDeviceImage [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -842,7 +849,7 @@ Read-only. For example, 0.0.1 and 1.5.13. Read-only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -873,27 +880,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementVirtualEndpointDeviceImage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointdeviceimage) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointdeviceimage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md index f83424b069c5a..d3950d51df15d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointgalleryimage Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementVirtualEndpointGalleryImage --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementVirtualEndpointGalleryImage Update the navigation property galleryImages in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementVirtualEndpointGalleryImage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementVirtualEndpointGalleryImage?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,6 @@ Update-MgDeviceManagementVirtualEndpointGalleryImage -CloudPcGalleryImageId ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -40,7 +36,7 @@ Update-MgDeviceManagementVirtualEndpointGalleryImage -CloudPcGalleryImageId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +49,7 @@ Update-MgDeviceManagementVirtualEndpointGalleryImage [-PublisherName ] [-SizeInGb ] [-SkuName ] [-StartDate ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -64,7 +60,7 @@ Update-MgDeviceManagementVirtualEndpointGalleryImage -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -76,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property galleryImages in deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -751,7 +757,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 ``: cloudPcGalleryImage +BODYPARAMETER : cloudPcGalleryImage [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -784,7 +790,7 @@ For example, 2022-09-20. Read-only. [Status ]: cloudPcGalleryImageStatus -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -815,27 +821,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementVirtualEndpointGalleryImage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointgalleryimage) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointgalleryimage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index 60d63e17aa305..a9b903529295e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointonpremiseconnection Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementVirtualEndpointOnPremiseConnection --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementVirtualEndpointOnPremiseConnection Update the properties of a cloudPcOnPremisesConnection object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -34,7 +31,6 @@ Update-MgDeviceManagementVirtualEndpointOnPremiseConnection -CloudPcOnPremisesCo [-VirtualNetworkId ] [-VirtualNetworkLocation ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -44,7 +40,7 @@ Update-MgDeviceManagementVirtualEndpointOnPremiseConnection -CloudPcOnPremisesCo -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -61,7 +57,6 @@ Update-MgDeviceManagementVirtualEndpointOnPremiseConnection [-VirtualNetworkId ] [-VirtualNetworkLocation ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -72,7 +67,7 @@ Update-MgDeviceManagementVirtualEndpointOnPremiseConnection -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -85,9 +80,8 @@ This cmdlet has the following aliases, Update the properties of a cloudPcOnPremisesConnection object. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -106,10 +100,6 @@ $params = @{ Update-MgDeviceManagementVirtualEndpointOnPremiseConnection -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementVirtualEndpointOnPremiseConnection Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -1041,7 +1031,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 ``: cloudPcOnPremisesConnection +BODYPARAMETER : cloudPcOnPremisesConnection [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1126,7 +1116,7 @@ Required format: '/subscriptions/{subscription-id}/resourceGroups/{resourceGroup For example, the location can be eastus2, westeurope, etc. Read-only (computed value). -HEALTHCHECKSTATUSDETAIL ``: cloudPcOnPremisesConnectionStatusDetail +HEALTHCHECKSTATUSDETAIL : cloudPcOnPremisesConnectionStatusDetail [(Any) ]: This indicates any property can be added to this object. [EndDateTime ]: The end time of the connection health check. The Timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). @@ -1159,7 +1149,7 @@ The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appear as 2014-01-01T00:00:00Z. Read-Only. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -1190,27 +1180,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementVirtualEndpointOnPremiseConnection](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointonpremiseconnection) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointonpremiseconnection) +- [](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md new file mode 100644 index 0000000000000..91adf973ffcfe --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md @@ -0,0 +1,528 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointonpremiseconnectionaddomainpassword +Locale: en-US +Module Name: Microsoft.Graph.DeviceManagement.Administration +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword +--- + +# Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword + +## SYNOPSIS + +Update the Active Directory domain password for a successful cloudPcOnPremisesConnection. +This API is supported when the type of the cloudPcOnPremisesConnection object is hybridAzureADJoin. + +## SYNTAX + +### UpdateExpanded (Default) + +``` +Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword + -CloudPcOnPremisesConnectionId [-ResponseHeadersVariable ] + [-AdDomainPassword ] [-AdditionalProperties ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### Update + +``` +Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword + -CloudPcOnPremisesConnectionId + -BodyParameter + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### UpdateViaIdentityExpanded + +``` +Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword + -InputObject [-ResponseHeadersVariable ] + [-AdDomainPassword ] [-AdditionalProperties ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### UpdateViaIdentity + +``` +Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword + -InputObject + -BodyParameter + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Update the Active Directory domain password for a successful cloudPcOnPremisesConnection. +This API is supported when the type of the cloudPcOnPremisesConnection object is hybridAzureADJoin. + +## EXAMPLES + +### EXAMPLE 1 + +Import-Module Microsoft.Graph.DeviceManagement.Administration + +$params = @{ + adDomainPassword = "AdDomainPassword_XXXX" +} + +Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId -BodyParameter $params + +## PARAMETERS + +### -AdditionalProperties + +Additional Parameters + +```yaml +Type: System.Collections.Hashtable +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -AdDomainPassword + +. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BodyParameter + +. +To construct, see NOTES section for BODYPARAMETER properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IPaths32P85ZDevicemanagementVirtualendpointOnpremisesconnectionsCloudpconpremisesconnectionIdMicrosoftGraphUpdateaddomainpasswordPostRequestbodyContentApplicationJsonSchema +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -CloudPcOnPremisesConnectionId + +The unique identifier of cloudPcOnPremisesConnection + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateExpanded + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IDeviceManagementAdministrationIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -PassThru + +Returns true when the command succeeds + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IDeviceManagementAdministrationIdentity + +{{ Fill in the Description }} + +### Microsoft.Graph.PowerShell.Models.IPaths32P85ZDevicemanagementVirtualendpointOnpremisesconnectionsCloudpconpremisesconnectionIdMicrosoftGraphUpdateaddomainpasswordPostRequestbodyContentApplicationJsonSchema + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### System.Boolean + +{{ Fill in the Description }} + +## NOTES + +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 : . + [(Any) ]: This indicates any property can be added to this object. + [AdDomainPassword ]: + +INPUTOBJECT : Identity Parameter + [AuditEventId ]: The unique identifier of auditEvent + [Category ]: Usage: category='{category}' + [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent + [CloudPcDeviceImageId ]: The unique identifier of cloudPcDeviceImage + [CloudPcGalleryImageId ]: The unique identifier of cloudPcGalleryImage + [CloudPcId ]: The unique identifier of cloudPC + [CloudPcOnPremisesConnectionId ]: The unique identifier of cloudPcOnPremisesConnection + [CloudPcProvisioningPolicyAssignmentId ]: The unique identifier of cloudPcProvisioningPolicyAssignment + [CloudPcProvisioningPolicyId ]: The unique identifier of cloudPcProvisioningPolicy + [CloudPcUserSettingAssignmentId ]: The unique identifier of cloudPcUserSettingAssignment + [CloudPcUserSettingId ]: The unique identifier of cloudPcUserSetting + [ComplianceManagementPartnerId ]: The unique identifier of complianceManagementPartner + [DeviceAndAppManagementRoleAssignmentId ]: The unique identifier of deviceAndAppManagementRoleAssignment + [DeviceManagementExchangeConnectorId ]: The unique identifier of deviceManagementExchangeConnector + [DeviceManagementPartnerId ]: The unique identifier of deviceManagementPartner + [IosUpdateDeviceStatusId ]: The unique identifier of iosUpdateDeviceStatus + [MobileThreatDefenseConnectorId ]: The unique identifier of mobileThreatDefenseConnector + [RemoteAssistancePartnerId ]: The unique identifier of remoteAssistancePartner + [ResourceOperationId ]: The unique identifier of resourceOperation + [RoleAssignmentId ]: The unique identifier of roleAssignment + [RoleDefinitionId ]: The unique identifier of roleDefinition + [TermsAndConditionsAcceptanceStatusId ]: The unique identifier of termsAndConditionsAcceptanceStatus + [TermsAndConditionsAssignmentId ]: The unique identifier of termsAndConditionsAssignment + [TermsAndConditionsId ]: The unique identifier of termsAndConditions + [UserId ]: The unique identifier of user + [UserPrincipalName ]: Alternate key of user + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointonpremiseconnectionaddomainpassword) +- [](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-updateaddomainpassword?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 6492b3200c10f..7c3ddf08f2d69 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointprovisioningpolicy Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementVirtualEndpointProvisioningPolicy --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementVirtualEndpointProvisioningPolicy Update the properties of a cloudPcProvisioningPolicy object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -37,7 +34,6 @@ Update-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningP [-WindowsSetting ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -47,7 +43,7 @@ Update-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningP -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -67,7 +63,6 @@ Update-MgDeviceManagementVirtualEndpointProvisioningPolicy [-WindowsSetting ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -78,7 +73,7 @@ Update-MgDeviceManagementVirtualEndpointProvisioningPolicy -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -90,18 +85,9 @@ This cmdlet has the following aliases, Update the properties of a cloudPcProvisioningPolicy object. -**Permissions** - -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | CloudPC.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | CloudPC.ReadWrite.All, | - ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -120,10 +106,6 @@ $params = @{ Update-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -1269,11 +1251,14 @@ Read-only. [(Any) ]: This indicates any property can be added to this object. [ClientExtensionResults ]: webauthnAuthenticationExtensionsClientOutputs [(Any) ]: This indicates any property can be added to this object. - [Id ]: + [Id ]: The credential ID created by the WebAuthn Authenticator. +This value is Base64URL-encoded without padding. [Response ]: webauthnAuthenticatorAttestationResponse [(Any) ]: This indicates any property can be added to this object. - [AttestationObject ]: - [ClientDataJson ]: + [AttestationObject ]: A CBOR-encoded attestation object containing the authenticator data and attestation statement. +This value is Base64URL-encoded without padding. + [ClientDataJson ]: Contains the JSON-compatible serialization of client data passed to the authenticator by the client. +This value is Base64URL-encoded without padding. [Methods ]: Represents all authentication methods registered to a user. [Id ]: The unique identifier for an entity. Read-only. @@ -1901,7 +1886,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding `` tag in the message body. +Matches the {index} value in the corresponding tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -1969,7 +1954,8 @@ For example, if a user changes their display name the API might show the new val [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [UserIdentityType ]: teamworkUserIdentityType - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the chat. +The value is null if the chat never entered migration mode. [PermissionGrants ]: A collection of permissions granted to apps for the chat. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -2006,6 +1992,47 @@ Required. [TeamsApp ]: teamsApp [WebUrl ]: Deep link URL of the tab instance. Read-only. + [TargetedMessages ]: + [Attachments ]: References to attached objects like files, tabs, meetings etc. + [Body ]: itemBody + [ChannelIdentity ]: channelIdentity + [ChatId ]: If the message was sent in a chat, represents the identity of the chat. + [CreatedDateTime ]: Timestamp of when the chat message was created. + [DeletedDateTime ]: Read only. +Timestamp at which the chat message was deleted, or null if not deleted. + [Etag ]: Read-only. +Version number of the chat message. + [EventDetail ]: eventMessageDetail + [From ]: chatMessageFromIdentitySet + [HostedContents ]: Content in a message hosted by Microsoft Teams - for example, images or code snippets. + [Importance ]: chatMessageImportance + [LastEditedDateTime ]: Read only. +Timestamp when edits to the chat message were made. +Triggers an 'Edited' flag in the Teams UI. +If no edits are made the value is null. + [LastModifiedDateTime ]: Read only. +Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + [Locale ]: Locale of the chat message set by the client. +Always set to en-us. + [Mentions ]: List of entities mentioned in the chat message. +Supported entities are: user, bot, team, channel, chat, and tag. + [MessageHistory ]: List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. + [MessageType ]: chatMessageType + [PolicyViolation ]: chatMessagePolicyViolation + [Reactions ]: Reactions for this chat message (for example, Like). + [Replies ]: Replies for a specified message. +Supports $expand for channel messages. + [ReplyToId ]: Read-only. +ID of the parent chat message or root chat message of the thread. +(Only applies to chat messages in channels, not chats.) + [Subject ]: The subject of the chat message, in plaintext. + [Summary ]: Summary text of the chat message that could be used for push notifications and summary views or fall back views. +Only applies to channel chat messages, not chat messages in a chat. + [WebUrl ]: Read-only. +Link to the message in Microsoft Teams. + [Id ]: The unique identifier for an entity. +Read-only. + [Recipient ]: identity [TenantId ]: The identifier of the tenant in which the chat was created. Read-only. [Topic ]: (Optional) Subject or topic for the chat. @@ -3981,7 +4008,8 @@ The default value is false. A navigation property. Nullable. [MigrationMode ]: migrationMode - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the channel. +The value is null if the channel never entered migration mode. [SharedWithTeams ]: A collection of teams with which a channel is shared. [DisplayName ]: The name of the team. [Team ]: team @@ -4186,6 +4214,7 @@ Supported only on the Get group API (GET /groups/{ID}). The default value is false. Requires $select to retrieve. Supported only on the Get group API (GET /groups/{ID}). + [InfoCatalogs ]: [IsArchived ]: When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. [IsAssignableToRole ]: Indicates whether this group can be assigned to a Microsoft Entra role. @@ -5966,7 +5995,7 @@ Users can control this setting in Office Delve. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [PrimaryMailboxId ]: + [PrimaryMailboxId ]: The unique identifier for the user's primary mailbox. [ItemInsights ]: userInsightsSettings [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -6227,8 +6256,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, - +Only the following characters are allowed A - Z, a - z, 0 - 9, ' . +- _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -6240,14 +6269,14 @@ NOTE: For more information about the permissions for members and guests, see Wha [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -AUTOPATCH ``: cloudPcProvisioningPolicyAutopatch +AUTOPATCH : cloudPcProvisioningPolicyAutopatch [(Any) ]: This indicates any property can be added to this object. [AutopatchGroupId ]: The unique identifier (ID) of a Windows Autopatch group. An Autopatch group is a logical container or unit that groups several Microsoft Entra groups and software update policies. Devices with the same Autopatch group ID share unified software update management. The default value is null that indicates that no Autopatch group is associated with the provisioning policy. -BODYPARAMETER ``: cloudPcProvisioningPolicy +BODYPARAMETER : cloudPcProvisioningPolicy [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -6525,11 +6554,14 @@ Read-only. [(Any) ]: This indicates any property can be added to this object. [ClientExtensionResults ]: webauthnAuthenticationExtensionsClientOutputs [(Any) ]: This indicates any property can be added to this object. - [Id ]: + [Id ]: The credential ID created by the WebAuthn Authenticator. +This value is Base64URL-encoded without padding. [Response ]: webauthnAuthenticatorAttestationResponse [(Any) ]: This indicates any property can be added to this object. - [AttestationObject ]: - [ClientDataJson ]: + [AttestationObject ]: A CBOR-encoded attestation object containing the authenticator data and attestation statement. +This value is Base64URL-encoded without padding. + [ClientDataJson ]: Contains the JSON-compatible serialization of client data passed to the authenticator by the client. +This value is Base64URL-encoded without padding. [Methods ]: Represents all authentication methods registered to a user. [Id ]: The unique identifier for an entity. Read-only. @@ -7157,7 +7189,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding `` tag in the message body. +Matches the {index} value in the corresponding tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -7225,7 +7257,8 @@ For example, if a user changes their display name the API might show the new val [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [UserIdentityType ]: teamworkUserIdentityType - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the chat. +The value is null if the chat never entered migration mode. [PermissionGrants ]: A collection of permissions granted to apps for the chat. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -7262,6 +7295,47 @@ Required. [TeamsApp ]: teamsApp [WebUrl ]: Deep link URL of the tab instance. Read-only. + [TargetedMessages ]: + [Attachments ]: References to attached objects like files, tabs, meetings etc. + [Body ]: itemBody + [ChannelIdentity ]: channelIdentity + [ChatId ]: If the message was sent in a chat, represents the identity of the chat. + [CreatedDateTime ]: Timestamp of when the chat message was created. + [DeletedDateTime ]: Read only. +Timestamp at which the chat message was deleted, or null if not deleted. + [Etag ]: Read-only. +Version number of the chat message. + [EventDetail ]: eventMessageDetail + [From ]: chatMessageFromIdentitySet + [HostedContents ]: Content in a message hosted by Microsoft Teams - for example, images or code snippets. + [Importance ]: chatMessageImportance + [LastEditedDateTime ]: Read only. +Timestamp when edits to the chat message were made. +Triggers an 'Edited' flag in the Teams UI. +If no edits are made the value is null. + [LastModifiedDateTime ]: Read only. +Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + [Locale ]: Locale of the chat message set by the client. +Always set to en-us. + [Mentions ]: List of entities mentioned in the chat message. +Supported entities are: user, bot, team, channel, chat, and tag. + [MessageHistory ]: List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. + [MessageType ]: chatMessageType + [PolicyViolation ]: chatMessagePolicyViolation + [Reactions ]: Reactions for this chat message (for example, Like). + [Replies ]: Replies for a specified message. +Supports $expand for channel messages. + [ReplyToId ]: Read-only. +ID of the parent chat message or root chat message of the thread. +(Only applies to chat messages in channels, not chats.) + [Subject ]: The subject of the chat message, in plaintext. + [Summary ]: Summary text of the chat message that could be used for push notifications and summary views or fall back views. +Only applies to channel chat messages, not chat messages in a chat. + [WebUrl ]: Read-only. +Link to the message in Microsoft Teams. + [Id ]: The unique identifier for an entity. +Read-only. + [Recipient ]: identity [TenantId ]: The identifier of the tenant in which the chat was created. Read-only. [Topic ]: (Optional) Subject or topic for the chat. @@ -9237,7 +9311,8 @@ The default value is false. A navigation property. Nullable. [MigrationMode ]: migrationMode - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the channel. +The value is null if the channel never entered migration mode. [SharedWithTeams ]: A collection of teams with which a channel is shared. [DisplayName ]: The name of the team. [Team ]: team @@ -9442,6 +9517,7 @@ Supported only on the Get group API (GET /groups/{ID}). The default value is false. Requires $select to retrieve. Supported only on the Get group API (GET /groups/{ID}). + [InfoCatalogs ]: [IsArchived ]: When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. [IsAssignableToRole ]: Indicates whether this group can be assigned to a Microsoft Entra role. @@ -11222,7 +11298,7 @@ Users can control this setting in Office Delve. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [PrimaryMailboxId ]: + [PrimaryMailboxId ]: The unique identifier for the user's primary mailbox. [ItemInsights ]: userInsightsSettings [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -11483,8 +11559,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, - +Only the following characters are allowed A - Z, a - z, 0 - 9, ' . +- _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -11561,7 +11637,7 @@ Within this region, the Windows 365 service creates and manages the underlying v This option is available only when the IT admin selects Microsoft Entra joined as the domain join type. If you enter a regionName, leave the onPremisesConnectionId property empty. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -11589,12 +11665,12 @@ INPUTOBJECT ``: Identity Parameter [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -MICROSOFTMANAGEDDESKTOP ``: microsoftManagedDesktop +MICROSOFTMANAGEDDESKTOP : microsoftManagedDesktop [(Any) ]: This indicates any property can be added to this object. [ManagedType ]: microsoftManagedDesktopType [Profile ]: The name of the Microsoft Managed Desktop profile that the Windows 365 Cloud PC is associated with. -WINDOWSSETTING ``: cloudPcWindowsSetting +WINDOWSSETTING : cloudPcWindowsSetting [(Any) ]: This indicates any property can be added to this object. [Locale ]: The Windows language or region tag to use for language pack configuration and localization of the Cloud PC. The default value is en-US, which corresponds to English (United States). @@ -11602,27 +11678,5 @@ The default value is en-US, which corresponds to English (United States). ## RELATED LINKS -- [Update-MgDeviceManagementVirtualEndpointProvisioningPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointprovisioningpolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointprovisioningpolicy) +- [](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index cc74c507ee457..c27c13b182f95 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointprovisioningpolicyassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment Update the navigation property assignments in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment [-AssignedUsers ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,6 @@ Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -52,7 +48,7 @@ Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment [-AdditionalProperties ] [-AssignedUsers ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -64,7 +60,6 @@ Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -76,6 +71,16 @@ This cmdlet has the following aliases, Update the navigation property assignments in deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -814,11 +819,14 @@ Read-only. [(Any) ]: This indicates any property can be added to this object. [ClientExtensionResults ]: webauthnAuthenticationExtensionsClientOutputs [(Any) ]: This indicates any property can be added to this object. - [Id ]: + [Id ]: The credential ID created by the WebAuthn Authenticator. +This value is Base64URL-encoded without padding. [Response ]: webauthnAuthenticatorAttestationResponse [(Any) ]: This indicates any property can be added to this object. - [AttestationObject ]: - [ClientDataJson ]: + [AttestationObject ]: A CBOR-encoded attestation object containing the authenticator data and attestation statement. +This value is Base64URL-encoded without padding. + [ClientDataJson ]: Contains the JSON-compatible serialization of client data passed to the authenticator by the client. +This value is Base64URL-encoded without padding. [Methods ]: Represents all authentication methods registered to a user. [Id ]: The unique identifier for an entity. Read-only. @@ -1446,7 +1454,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding `` tag in the message body. +Matches the {index} value in the corresponding tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -1514,7 +1522,8 @@ For example, if a user changes their display name the API might show the new val [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [UserIdentityType ]: teamworkUserIdentityType - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the chat. +The value is null if the chat never entered migration mode. [PermissionGrants ]: A collection of permissions granted to apps for the chat. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -1551,6 +1560,47 @@ Required. [TeamsApp ]: teamsApp [WebUrl ]: Deep link URL of the tab instance. Read-only. + [TargetedMessages ]: + [Attachments ]: References to attached objects like files, tabs, meetings etc. + [Body ]: itemBody + [ChannelIdentity ]: channelIdentity + [ChatId ]: If the message was sent in a chat, represents the identity of the chat. + [CreatedDateTime ]: Timestamp of when the chat message was created. + [DeletedDateTime ]: Read only. +Timestamp at which the chat message was deleted, or null if not deleted. + [Etag ]: Read-only. +Version number of the chat message. + [EventDetail ]: eventMessageDetail + [From ]: chatMessageFromIdentitySet + [HostedContents ]: Content in a message hosted by Microsoft Teams - for example, images or code snippets. + [Importance ]: chatMessageImportance + [LastEditedDateTime ]: Read only. +Timestamp when edits to the chat message were made. +Triggers an 'Edited' flag in the Teams UI. +If no edits are made the value is null. + [LastModifiedDateTime ]: Read only. +Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + [Locale ]: Locale of the chat message set by the client. +Always set to en-us. + [Mentions ]: List of entities mentioned in the chat message. +Supported entities are: user, bot, team, channel, chat, and tag. + [MessageHistory ]: List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. + [MessageType ]: chatMessageType + [PolicyViolation ]: chatMessagePolicyViolation + [Reactions ]: Reactions for this chat message (for example, Like). + [Replies ]: Replies for a specified message. +Supports $expand for channel messages. + [ReplyToId ]: Read-only. +ID of the parent chat message or root chat message of the thread. +(Only applies to chat messages in channels, not chats.) + [Subject ]: The subject of the chat message, in plaintext. + [Summary ]: Summary text of the chat message that could be used for push notifications and summary views or fall back views. +Only applies to channel chat messages, not chat messages in a chat. + [WebUrl ]: Read-only. +Link to the message in Microsoft Teams. + [Id ]: The unique identifier for an entity. +Read-only. + [Recipient ]: identity [TenantId ]: The identifier of the tenant in which the chat was created. Read-only. [Topic ]: (Optional) Subject or topic for the chat. @@ -3526,7 +3576,8 @@ The default value is false. A navigation property. Nullable. [MigrationMode ]: migrationMode - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the channel. +The value is null if the channel never entered migration mode. [SharedWithTeams ]: A collection of teams with which a channel is shared. [DisplayName ]: The name of the team. [Team ]: team @@ -3731,6 +3782,7 @@ Supported only on the Get group API (GET /groups/{ID}). The default value is false. Requires $select to retrieve. Supported only on the Get group API (GET /groups/{ID}). + [InfoCatalogs ]: [IsArchived ]: When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. [IsAssignableToRole ]: Indicates whether this group can be assigned to a Microsoft Entra role. @@ -5511,7 +5563,7 @@ Users can control this setting in Office Delve. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [PrimaryMailboxId ]: + [PrimaryMailboxId ]: The unique identifier for the user's primary mailbox. [ItemInsights ]: userInsightsSettings [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -5772,8 +5824,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, - +Only the following characters are allowed A - Z, a - z, 0 - 9, ' . +- _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -5783,7 +5835,7 @@ Requires $select to retrieve. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for members and guests, see What are the default user permissions in Microsoft Entra ID? -BODYPARAMETER ``: cloudPcProvisioningPolicyAssignment +BODYPARAMETER : cloudPcProvisioningPolicyAssignment [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -6053,11 +6105,14 @@ Read-only. [(Any) ]: This indicates any property can be added to this object. [ClientExtensionResults ]: webauthnAuthenticationExtensionsClientOutputs [(Any) ]: This indicates any property can be added to this object. - [Id ]: + [Id ]: The credential ID created by the WebAuthn Authenticator. +This value is Base64URL-encoded without padding. [Response ]: webauthnAuthenticatorAttestationResponse [(Any) ]: This indicates any property can be added to this object. - [AttestationObject ]: - [ClientDataJson ]: + [AttestationObject ]: A CBOR-encoded attestation object containing the authenticator data and attestation statement. +This value is Base64URL-encoded without padding. + [ClientDataJson ]: Contains the JSON-compatible serialization of client data passed to the authenticator by the client. +This value is Base64URL-encoded without padding. [Methods ]: Represents all authentication methods registered to a user. [Id ]: The unique identifier for an entity. Read-only. @@ -6685,7 +6740,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding `` tag in the message body. +Matches the {index} value in the corresponding tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -6753,7 +6808,8 @@ For example, if a user changes their display name the API might show the new val [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [UserIdentityType ]: teamworkUserIdentityType - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the chat. +The value is null if the chat never entered migration mode. [PermissionGrants ]: A collection of permissions granted to apps for the chat. [DeletedDateTime ]: Date and time when this object was deleted. Always null when the object hasn't been deleted. @@ -6790,6 +6846,47 @@ Required. [TeamsApp ]: teamsApp [WebUrl ]: Deep link URL of the tab instance. Read-only. + [TargetedMessages ]: + [Attachments ]: References to attached objects like files, tabs, meetings etc. + [Body ]: itemBody + [ChannelIdentity ]: channelIdentity + [ChatId ]: If the message was sent in a chat, represents the identity of the chat. + [CreatedDateTime ]: Timestamp of when the chat message was created. + [DeletedDateTime ]: Read only. +Timestamp at which the chat message was deleted, or null if not deleted. + [Etag ]: Read-only. +Version number of the chat message. + [EventDetail ]: eventMessageDetail + [From ]: chatMessageFromIdentitySet + [HostedContents ]: Content in a message hosted by Microsoft Teams - for example, images or code snippets. + [Importance ]: chatMessageImportance + [LastEditedDateTime ]: Read only. +Timestamp when edits to the chat message were made. +Triggers an 'Edited' flag in the Teams UI. +If no edits are made the value is null. + [LastModifiedDateTime ]: Read only. +Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. + [Locale ]: Locale of the chat message set by the client. +Always set to en-us. + [Mentions ]: List of entities mentioned in the chat message. +Supported entities are: user, bot, team, channel, chat, and tag. + [MessageHistory ]: List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. + [MessageType ]: chatMessageType + [PolicyViolation ]: chatMessagePolicyViolation + [Reactions ]: Reactions for this chat message (for example, Like). + [Replies ]: Replies for a specified message. +Supports $expand for channel messages. + [ReplyToId ]: Read-only. +ID of the parent chat message or root chat message of the thread. +(Only applies to chat messages in channels, not chats.) + [Subject ]: The subject of the chat message, in plaintext. + [Summary ]: Summary text of the chat message that could be used for push notifications and summary views or fall back views. +Only applies to channel chat messages, not chat messages in a chat. + [WebUrl ]: Read-only. +Link to the message in Microsoft Teams. + [Id ]: The unique identifier for an entity. +Read-only. + [Recipient ]: identity [TenantId ]: The identifier of the tenant in which the chat was created. Read-only. [Topic ]: (Optional) Subject or topic for the chat. @@ -8765,7 +8862,8 @@ The default value is false. A navigation property. Nullable. [MigrationMode ]: migrationMode - [OriginalCreatedDateTime ]: + [OriginalCreatedDateTime ]: Timestamp of the original creation time for the channel. +The value is null if the channel never entered migration mode. [SharedWithTeams ]: A collection of teams with which a channel is shared. [DisplayName ]: The name of the team. [Team ]: team @@ -8970,6 +9068,7 @@ Supported only on the Get group API (GET /groups/{ID}). The default value is false. Requires $select to retrieve. Supported only on the Get group API (GET /groups/{ID}). + [InfoCatalogs ]: [IsArchived ]: When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. [IsAssignableToRole ]: Indicates whether this group can be assigned to a Microsoft Entra role. @@ -10750,7 +10849,7 @@ Users can control this setting in Office Delve. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [PrimaryMailboxId ]: + [PrimaryMailboxId ]: The unique identifier for the user's primary mailbox. [ItemInsights ]: userInsightsSettings [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -11011,8 +11110,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, - +Only the following characters are allowed A - Z, a - z, 0 - 9, ' . +- _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -11024,7 +11123,7 @@ NOTE: For more information about the permissions for members and guests, see Wha [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -11055,27 +11154,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md index bf0d6ac71c468..08e9122e5cfb5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassignedusermailboxsetting Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssig Update property mailboxSettings value. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -32,7 +29,7 @@ Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser [-UserPurpose ] [-WorkingHours ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -44,7 +41,6 @@ Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -59,7 +55,6 @@ Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser [-WorkingHours ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -70,7 +65,7 @@ Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -82,6 +77,16 @@ This cmdlet has the following aliases, Update property mailboxSettings value. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -741,7 +746,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. -AUTOMATICREPLIESSETTING ``: automaticRepliesSetting +AUTOMATICREPLIESSETTING : automaticRepliesSetting [(Any) ]: This indicates any property can be added to this object. [ExternalAudience ]: externalAudienceScope [ExternalReplyMessage ]: The automatic reply to send to the specified external audience, if Status is AlwaysEnabled or Scheduled. @@ -754,7 +759,7 @@ See below for more possible values. [ScheduledStartDateTime ]: dateTimeTimeZone [Status ]: automaticRepliesStatus -BODYPARAMETER ``: mailboxSettings +BODYPARAMETER : mailboxSettings [(Any) ]: This indicates any property can be added to this object. [ArchiveFolder ]: Folder ID of an archive folder for the user. [AutomaticRepliesSetting ]: automaticRepliesSetting @@ -790,7 +795,7 @@ The language component follows 2-letter codes as defined in ISO 639-1, and the c [Name ]: The name of a time zone. It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or 'Customized Time Zone' for a custom time zone. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -818,14 +823,14 @@ INPUTOBJECT ``: Identity Parameter [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -LANGUAGE ``: localeInfo +LANGUAGE : localeInfo [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: A name representing the user's locale in natural language, for example, 'English (United States)'. [Locale ]: A locale representation for the user, which includes the user's preferred language and country/region. For example, 'en-us'. The language component follows 2-letter codes as defined in ISO 639-1, and the country component follows 2-letter codes as defined in ISO 3166-1 alpha-2. -WORKINGHOURS ``: workingHours +WORKINGHOURS : workingHours [(Any) ]: This indicates any property can be added to this object. [DaysOfWeek ]: The days of the week on which the user works. [EndTime ]: The time of the day that the user stops working. @@ -838,27 +843,4 @@ It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or ## RELATED LINKS -- [Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassignedusermailboxsetting) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassignedusermailboxsetting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md index f5c5ef8f37986..9dd68974b1386 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointreport Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementVirtualEndpointReport --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementVirtualEndpointReport Update the navigation property report in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementVirtualEndpointReport](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementVirtualEndpointReport?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -27,7 +24,6 @@ Update-MgDeviceManagementVirtualEndpointReport [-ResponseHeadersVariable ] [-Id ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -37,7 +33,6 @@ Update-MgDeviceManagementVirtualEndpointReport -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Update the navigation property report in deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -355,27 +360,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Update-MgDeviceManagementVirtualEndpointReport](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointreport) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointreport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md index 1102daa2234f7..fe0a3798e6828 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointusersetting Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementVirtualEndpointUserSetting --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementVirtualEndpointUserSetting Update the properties of a cloudPcUserSetting object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementVirtualEndpointUserSetting](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementVirtualEndpointUserSetting?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,7 @@ Update-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,7 @@ Update-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -54,7 +51,7 @@ Update-MgDeviceManagementVirtualEndpointUserSetting [-RestorePointSetting ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +62,7 @@ Update-MgDeviceManagementVirtualEndpointUserSetting -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -78,9 +75,8 @@ This cmdlet has the following aliases, Update the properties of a cloudPcUserSetting object. ## EXAMPLES -### Example 1: Code snippet -```powershell +### EXAMPLE 1 Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -97,10 +93,6 @@ $params = @{ Update-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId $cloudPcUserSettingId -BodyParameter $params -``` -This example shows how to use the Update-MgDeviceManagementVirtualEndpointUserSetting Cmdlet. - - ## PARAMETERS ### -AdditionalProperties @@ -702,7 +694,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER ``: cloudPcUserSetting +BODYPARAMETER : cloudPcUserSetting [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -737,7 +729,7 @@ The default value is false. [UserRestoreEnabled ]: If true, the user has the ability to use snapshots to restore Cloud PCs. If false, non-admin users can't use snapshots to restore the Cloud PC. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -765,7 +757,7 @@ INPUTOBJECT ``: Identity Parameter [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -RESTOREPOINTSETTING ``: cloudPcRestorePointSetting +RESTOREPOINTSETTING : cloudPcRestorePointSetting [(Any) ]: This indicates any property can be added to this object. [FrequencyType ]: cloudPcRestorePointFrequencyType [UserRestoreEnabled ]: If true, the user has the ability to use snapshots to restore Cloud PCs. @@ -774,27 +766,5 @@ If false, non-admin users can't use snapshots to restore the Cloud PC. ## RELATED LINKS -- [Update-MgDeviceManagementVirtualEndpointUserSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointusersetting) -- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcusersetting-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointusersetting) +- [](https://learn.microsoft.com/graph/api/cloudpcusersetting-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index b33237adac7f9..92305919f4da5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.DeviceManagement.Administration-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointusersettingassignment Locale: en-US Module Name: Microsoft.Graph.DeviceManagement.Administration -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgDeviceManagementVirtualEndpointUserSettingAssignment --- @@ -15,9 +15,6 @@ title: Update-MgDeviceManagementVirtualEndpointUserSettingAssignment Update the navigation property assignments in deviceManagement -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgDeviceManagementVirtualEndpointUserSettingAssignment [-CreatedDateTime ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,7 @@ Update-MgDeviceManagementVirtualEndpointUserSettingAssignment -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -51,7 +48,7 @@ Update-MgDeviceManagementVirtualEndpointUserSettingAssignment [-AdditionalProperties ] [-CreatedDateTime ] [-Id ] [-Target ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -62,7 +59,7 @@ Update-MgDeviceManagementVirtualEndpointUserSettingAssignment -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -74,6 +71,16 @@ This cmdlet has the following aliases, Update the navigation property assignments in deviceManagement +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -544,7 +551,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 ``: cloudPcUserSettingAssignment +BODYPARAMETER : cloudPcUserSettingAssignment [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -554,7 +561,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -585,27 +592,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Update-MgDeviceManagementVirtualEndpointUserSettingAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointusersettingassignment) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointusersettingassignment) From 409c31f2bd174c80dcda25ac6683fc4613d49274 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:14:28 +0000 Subject: [PATCH 11/17] Escaped disallowed html tags --- ...DeviceManagementRemoteAssistancePartner.md | 24 +++++++++- ...agementApplePushNotificationCertificate.md | 22 ++++++++++ .../Get-MgDeviceManagementAuditEvent.md | 24 +++++++++- ...ceManagementAuditEventAuditActivityType.md | 24 +++++++++- ...DeviceManagementAuditEventAuditCategory.md | 22 ++++++++++ .../Get-MgDeviceManagementAuditEventCount.md | 22 ++++++++++ ...ceManagementComplianceManagementPartner.md | 24 +++++++++- ...agementComplianceManagementPartnerCount.md | 22 ++++++++++ ...Get-MgDeviceManagementExchangeConnector.md | 24 +++++++++- ...gDeviceManagementExchangeConnectorCount.md | 22 ++++++++++ .../Get-MgDeviceManagementIoUpdateStatus.md | 24 +++++++++- ...t-MgDeviceManagementIoUpdateStatusCount.md | 22 ++++++++++ ...eManagementMobileThreatDefenseConnector.md | 24 +++++++++- ...gementMobileThreatDefenseConnectorCount.md | 22 ++++++++++ .../Get-MgDeviceManagementPartner.md | 24 +++++++++- .../Get-MgDeviceManagementPartnerCount.md | 22 ++++++++++ ...DeviceManagementRemoteAssistancePartner.md | 24 +++++++++- ...eManagementRemoteAssistancePartnerCount.md | 22 ++++++++++ ...Get-MgDeviceManagementResourceOperation.md | 24 +++++++++- ...gDeviceManagementResourceOperationCount.md | 22 ++++++++++ .../Get-MgDeviceManagementRoleAssignment.md | 24 +++++++++- ...t-MgDeviceManagementRoleAssignmentCount.md | 22 ++++++++++ ...eManagementRoleAssignmentRoleDefinition.md | 24 +++++++++- .../Get-MgDeviceManagementRoleDefinition.md | 24 +++++++++- ...t-MgDeviceManagementRoleDefinitionCount.md | 22 ++++++++++ ...eManagementRoleDefinitionRoleAssignment.md | 24 +++++++++- ...gementRoleDefinitionRoleAssignmentCount.md | 24 +++++++++- ...eDefinitionRoleAssignmentRoleDefinition.md | 24 +++++++++- .../Get-MgDeviceManagementTermAndCondition.md | 24 +++++++++- ...agementTermAndConditionAcceptanceStatus.md | 24 +++++++++- ...ntTermAndConditionAcceptanceStatusCount.md | 24 +++++++++- ...nditionAcceptanceStatusTermAndCondition.md | 24 +++++++++- ...iceManagementTermAndConditionAssignment.md | 24 +++++++++- ...nagementTermAndConditionAssignmentCount.md | 24 +++++++++- ...MgDeviceManagementTermAndConditionCount.md | 22 ++++++++++ .../Get-MgDeviceManagementVirtualEndpoint.md | 22 ++++++++++ ...viceManagementVirtualEndpointAuditEvent.md | 24 +++++++++- ...tualEndpointAuditEventAuditActivityType.md | 22 ++++++++++ ...anagementVirtualEndpointAuditEventCount.md | 22 ++++++++++ ...gDeviceManagementVirtualEndpointCloudPc.md | 24 +++++++++- ...ceManagementVirtualEndpointCloudPcCount.md | 22 ++++++++++ ...ementVirtualEndpointCloudPcLaunchDetail.md | 24 +++++++++- ...iceManagementVirtualEndpointDeviceImage.md | 24 +++++++++- ...nagementVirtualEndpointDeviceImageCount.md | 22 ++++++++++ ...ntVirtualEndpointDeviceImageSourceImage.md | 22 ++++++++++ ...ceManagementVirtualEndpointGalleryImage.md | 24 +++++++++- ...agementVirtualEndpointGalleryImageCount.md | 22 ++++++++++ ...ementVirtualEndpointOnPremiseConnection.md | 24 +++++++++- ...VirtualEndpointOnPremiseConnectionCount.md | 22 ++++++++++ ...gementVirtualEndpointProvisioningPolicy.md | 24 +++++++++- ...ualEndpointProvisioningPolicyAssignment.md | 24 +++++++++- ...rovisioningPolicyAssignmentAssignedUser.md | 24 +++++++++- ...signmentAssignedUserByUserPrincipalName.md | 24 +++++++++- ...ioningPolicyAssignmentAssignedUserCount.md | 24 +++++++++- ...icyAssignmentAssignedUserMailboxSetting.md | 24 +++++++++- ...entAssignedUserServiceProvisioningError.md | 22 ++++++++++ ...signedUserServiceProvisioningErrorCount.md | 24 +++++++++- ...dpointProvisioningPolicyAssignmentCount.md | 24 +++++++++- ...tVirtualEndpointProvisioningPolicyCount.md | 22 ++++++++++ ...MgDeviceManagementVirtualEndpointReport.md | 22 ++++++++++ ...dpointReportCloudPcRecommendationReport.md | 24 +++++++++- ...iceManagementVirtualEndpointUserSetting.md | 24 +++++++++- ...entVirtualEndpointUserSettingAssignment.md | 24 +++++++++- ...rtualEndpointUserSettingAssignmentCount.md | 24 +++++++++- ...nagementVirtualEndpointUserSettingCount.md | 22 ++++++++++ ...gementRemoteAssistancePartnerOnboarding.md | 24 +++++++++- ...shNotificationCertificateSigningRequest.md | 22 ++++++++++ ...nDeviceManagementVirtualEndpointCloudPc.md | 26 ++++++++++- ...voke-MgTerminateDeviceManagementPartner.md | 24 +++++++++- ...tDeviceManagementVirtualEndpointCloudPc.md | 24 +++++++++- ...t.Graph.DeviceManagement.Administration.md | 19 ++++++++ .../New-MgDeviceManagementAuditEvent.md | 26 ++++++++++- ...ceManagementComplianceManagementPartner.md | 24 +++++++++- ...New-MgDeviceManagementExchangeConnector.md | 24 +++++++++- .../New-MgDeviceManagementIoUpdateStatus.md | 24 +++++++++- ...eManagementMobileThreatDefenseConnector.md | 24 +++++++++- .../New-MgDeviceManagementPartner.md | 24 +++++++++- ...DeviceManagementRemoteAssistancePartner.md | 24 +++++++++- ...New-MgDeviceManagementResourceOperation.md | 24 +++++++++- .../New-MgDeviceManagementRoleAssignment.md | 26 ++++++++++- .../New-MgDeviceManagementRoleDefinition.md | 24 +++++++++- ...eManagementRoleDefinitionRoleAssignment.md | 28 ++++++++++-- .../New-MgDeviceManagementTermAndCondition.md | 24 +++++++++- ...agementTermAndConditionAcceptanceStatus.md | 28 ++++++++++-- ...iceManagementTermAndConditionAssignment.md | 26 ++++++++++- ...iceManagementVirtualEndpointDeviceImage.md | 24 +++++++++- ...ceManagementVirtualEndpointGalleryImage.md | 24 +++++++++- ...ementVirtualEndpointOnPremiseConnection.md | 26 ++++++++++- ...gementVirtualEndpointProvisioningPolicy.md | 42 +++++++++++++----- ...ualEndpointProvisioningPolicyAssignment.md | 38 ++++++++++++---- ...iceManagementVirtualEndpointUserSetting.md | 26 ++++++++++- ...entVirtualEndpointUserSettingAssignment.md | 26 ++++++++++- ...agementApplePushNotificationCertificate.md | 22 ++++++++++ .../Remove-MgDeviceManagementAuditEvent.md | 24 +++++++++- ...ceManagementComplianceManagementPartner.md | 24 +++++++++- ...ove-MgDeviceManagementExchangeConnector.md | 24 +++++++++- ...Remove-MgDeviceManagementIoUpdateStatus.md | 24 +++++++++- ...eManagementMobileThreatDefenseConnector.md | 24 +++++++++- .../Remove-MgDeviceManagementPartner.md | 24 +++++++++- ...DeviceManagementRemoteAssistancePartner.md | 24 +++++++++- ...ove-MgDeviceManagementResourceOperation.md | 24 +++++++++- ...Remove-MgDeviceManagementRoleAssignment.md | 24 +++++++++- ...Remove-MgDeviceManagementRoleDefinition.md | 24 +++++++++- ...eManagementRoleDefinitionRoleAssignment.md | 24 +++++++++- ...move-MgDeviceManagementTermAndCondition.md | 24 +++++++++- ...agementTermAndConditionAcceptanceStatus.md | 24 +++++++++- ...iceManagementTermAndConditionAssignment.md | 24 +++++++++- ...iceManagementVirtualEndpointDeviceImage.md | 24 +++++++++- ...ceManagementVirtualEndpointGalleryImage.md | 24 +++++++++- ...ementVirtualEndpointOnPremiseConnection.md | 24 +++++++++- ...gementVirtualEndpointProvisioningPolicy.md | 24 +++++++++- ...ualEndpointProvisioningPolicyAssignment.md | 24 +++++++++- ...MgDeviceManagementVirtualEndpointReport.md | 22 ++++++++++ ...iceManagementVirtualEndpointUserSetting.md | 24 +++++++++- ...entVirtualEndpointUserSettingAssignment.md | 24 +++++++++- ...gDeviceManagementVirtualEndpointCloudPc.md | 26 ++++++++++- ...gDeviceManagementVirtualEndpointCloudPc.md | 26 ++++++++++- ...gDeviceManagementVirtualEndpointCloudPc.md | 24 +++++++++- ...gDeviceManagementVirtualEndpointCloudPc.md | 26 ++++++++++- ...gementVirtualEndpointProvisioningPolicy.md | 38 ++++++++++++---- ...iceManagementVirtualEndpointUserSetting.md | 26 ++++++++++- ...lEndpointOnPremiseConnectionHealthCheck.md | 24 +++++++++- ...gementVirtualEndpointCloudPcGracePeriod.md | 24 +++++++++- ...ync-MgDeviceManagementExchangeConnector.md | 26 ++++++++++- ...agementApplePushNotificationCertificate.md | 24 +++++++++- .../Update-MgDeviceManagementAuditEvent.md | 28 ++++++++++-- ...ceManagementComplianceManagementPartner.md | 26 ++++++++++- ...ate-MgDeviceManagementExchangeConnector.md | 26 ++++++++++- ...Update-MgDeviceManagementIoUpdateStatus.md | 26 ++++++++++- ...eManagementMobileThreatDefenseConnector.md | 26 ++++++++++- .../Update-MgDeviceManagementPartner.md | 26 ++++++++++- ...DeviceManagementRemoteAssistancePartner.md | 26 ++++++++++- ...ate-MgDeviceManagementResourceOperation.md | 26 ++++++++++- ...Update-MgDeviceManagementRoleAssignment.md | 28 ++++++++++-- ...Update-MgDeviceManagementRoleDefinition.md | 26 ++++++++++- ...eManagementRoleDefinitionRoleAssignment.md | 28 ++++++++++-- ...date-MgDeviceManagementTermAndCondition.md | 26 ++++++++++- ...agementTermAndConditionAcceptanceStatus.md | 28 ++++++++++-- ...iceManagementTermAndConditionAssignment.md | 26 ++++++++++- ...iceManagementVirtualEndpointDeviceImage.md | 26 ++++++++++- ...ceManagementVirtualEndpointGalleryImage.md | 26 ++++++++++- ...ementVirtualEndpointOnPremiseConnection.md | 28 ++++++++++-- ...ointOnPremiseConnectionAdDomainPassword.md | 26 ++++++++++- ...gementVirtualEndpointProvisioningPolicy.md | 44 ++++++++++++++----- ...ualEndpointProvisioningPolicyAssignment.md | 38 ++++++++++++---- ...icyAssignmentAssignedUserMailboxSetting.md | 32 +++++++++++--- ...MgDeviceManagementVirtualEndpointReport.md | 22 ++++++++++ ...iceManagementVirtualEndpointUserSetting.md | 28 ++++++++++-- ...entVirtualEndpointUserSettingAssignment.md | 26 ++++++++++- 149 files changed, 3480 insertions(+), 205 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md index 525e7a5caa4e3..e6eeb2d265174 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md @@ -362,7 +362,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/disconnect-mgdevicemanagementremoteassistancepartner) - [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-disconnect?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md index 4c55d6b47c356..c45f83e02701d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.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.administration/get-mgdevicemanagementapplepushnotificationcertificate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md index 6887d4cc20564..ac6ab0d03873e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md @@ -524,7 +524,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -556,3 +556,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md index b5bc9069100e7..9b262f779ceb9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md @@ -407,7 +407,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -439,3 +439,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditeventauditactivitytype) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md index 1670d5f2d1662..fc4b374489b02 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md @@ -344,3 +344,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditeventauditcategory) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md index 3784f4d88cfc0..ac457d9d9b47c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.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.administration/get-mgdevicemanagementauditeventcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md index 649f9ac5e0300..8a898c522733d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -557,3 +557,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementcompliancemanagementpartner) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md index a3ceec0caa942..32dc349c43b4b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.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.administration/get-mgdevicemanagementcompliancemanagementpartnercount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md index 553e5b2cd6450..febc19fe3b2e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -557,3 +557,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementexchangeconnector) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.md index 7c82a9b479271..66f05932fd583 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.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.administration/get-mgdevicemanagementexchangeconnectorcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md index fccd44ca840fa..24ae0e262811a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md @@ -524,7 +524,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -556,3 +556,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementioupdatestatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md index 61c0c3db629de..707f4a329cd4f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.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.administration/get-mgdevicemanagementioupdatestatuscount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md index cf25113168027..8379db110fac1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -557,3 +557,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementmobilethreatdefenseconnector) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md index c4861b513a4df..a5cfb65b648c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.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.administration/get-mgdevicemanagementmobilethreatdefenseconnectorcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md index 353b35ae7584e..ac3a8cbf2f074 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md @@ -524,7 +524,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -556,3 +556,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementpartner) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.md index 127ff52924457..90a90cbcfb587 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.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.administration/get-mgdevicemanagementpartnercount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md index 19e8b5d1b3119..896d35b3cbd22 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -559,3 +559,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementremoteassistancepartner) - [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-list?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md index f31710ab2ff73..ee90c20fd2948 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.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.administration/get-mgdevicemanagementremoteassistancepartnercount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md index f056051b8115b..e793956ac66eb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md @@ -524,7 +524,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -556,3 +556,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementresourceoperation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md index cf9ee0072f83d..14fb44d9bb9bc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.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.administration/get-mgdevicemanagementresourceoperationcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md index 67ab862c0495f..a048079e537f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -557,3 +557,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroleassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md index 681688f2fb3c1..8066d46d5c0e5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.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.administration/get-mgdevicemanagementroleassignmentcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md index be765d112c5d9..23fd16429bf70 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md @@ -344,7 +344,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -376,3 +376,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroleassignmentroledefinition) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md index d6a421e6e5bf3..8d7cae69322ba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md @@ -524,7 +524,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -556,3 +556,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinition) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md index a3e673d8d1a9a..cb63c74de81d2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.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.administration/get-mgdevicemanagementroledefinitioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md index 9440a5f7141da..cc6744a2e8be7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -552,7 +552,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -584,3 +584,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitionroleassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md index 30ce21032f68d..3410479cbc3a2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -374,3 +374,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitionroleassignmentcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md index 9b7b9a9db6639..be9ba5f01c7b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md @@ -365,7 +365,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -397,3 +397,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitionroleassignmentroledefinition) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md index 1f54af5840b1a..43106e5ada0d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md @@ -524,7 +524,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -556,3 +556,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandcondition) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md index bd3dba0272358..74b87bb1e70d3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -553,7 +553,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -585,3 +585,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionacceptancestatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md index 749c645fc4ea1..0b21d03857313 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -374,3 +374,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionacceptancestatuscount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md index 4e0393792e18a..d0e01c8715bf6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md @@ -366,7 +366,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -398,3 +398,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionacceptancestatustermandcondition) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md index 44e52a60be75d..f5cfc0a7242b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md @@ -552,7 +552,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -584,3 +584,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md index b2135670a196d..21caa661def48 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -374,3 +374,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionassignmentcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md index cbda0507143ba..dd17c2d49a837 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.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.administration/get-mgdevicemanagementtermandconditioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.md index 5662f57bceb1c..034a5df414df8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.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.administration/get-mgdevicemanagementvirtualendpoint) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md index 92e2eaf864b7c..88f5253516758 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -559,3 +559,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointauditevent) - [](https://learn.microsoft.com/graph/api/cloudpcauditevent-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/virtualendpoint-list-auditevents?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md index a56e244ed19a1..e96f5e21e8a78 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md @@ -346,3 +346,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointauditeventauditactivitytype) - [](https://learn.microsoft.com/graph/api/cloudpcauditevent-getauditactivitytypes?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md index 1abd02fc14378..1fbcfdfb63880 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.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.administration/get-mgdevicemanagementvirtualendpointauditeventcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md index 5f32016b8c8f8..24b176725ad33 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md @@ -530,7 +530,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -564,3 +564,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointcloudpc) - [](https://learn.microsoft.com/graph/api/cloudpc-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/virtualendpoint-list-cloudpcs?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md index 9e01fd5f5073b..d739fe4058056 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.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.administration/get-mgdevicemanagementvirtualendpointcloudpccount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail.md index be3e486b09769..2b673dffee25d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail.md @@ -299,7 +299,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -332,3 +332,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointcloudpclaunchdetail) - [](https://learn.microsoft.com/graph/api/cloudpc-retrievecloudpclaunchdetail?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md index f42a202afa3f0..8f0d398def4f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -559,3 +559,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointdeviceimage) - [](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/virtualendpoint-list-deviceimages?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md index cc6438fee7765..9a5e6106ab0ad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.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.administration/get-mgdevicemanagementvirtualendpointdeviceimagecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md index 3d4a833c7115a..0c06472392133 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md @@ -348,3 +348,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointdeviceimagesourceimage) - [](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-getsourceimages?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md index d6b6888459c8f..ece7b519f68bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -559,3 +559,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointgalleryimage) - [](https://learn.microsoft.com/graph/api/cloudpcgalleryimage-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/virtualendpoint-list-galleryimages?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md index f6ad27af222bb..c229f573614c5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.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.administration/get-mgdevicemanagementvirtualendpointgalleryimagecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index 7a096b4e9a480..6b6e0aee633bf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.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. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -565,3 +565,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointonpremiseconnection) - [](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/virtualendpoint-list-onpremisesconnections?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md index 1e7d54161e3cc..30c5c9b003502 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.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.administration/get-mgdevicemanagementvirtualendpointonpremiseconnectioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index da7febaf7f343..0acf8bb155feb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -537,7 +537,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -571,3 +571,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicy) - [](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/virtualendpoint-list-provisioningpolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index 47abf28efba74..88987e998f000 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -562,7 +562,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -594,3 +594,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md index 0506f63f91f26..0b09e8d34ea8f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md @@ -589,7 +589,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -621,3 +621,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduser) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName.md index 5026e8bfef834..61cacf82e7f14 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName.md @@ -393,7 +393,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -425,3 +425,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduserbyuserprincipalname) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md index a71fe306ca69b..e4a2a48e80338 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md @@ -364,7 +364,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -396,3 +396,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassignedusercount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md index 145c3485b7f2f..633f7cef1a7b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md @@ -391,7 +391,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassignedusermailboxsetting) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md index 4144480e8376a..e37c8e3b385ba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md @@ -525,3 +525,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduserserviceprovisioningerror) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md index 019815a44a5cd..b47543fe20f7f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md @@ -385,7 +385,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -417,3 +417,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduserserviceprovisioningerrorcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md index ce144f9f948e0..03af263269fe1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -374,3 +374,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md index 233cbb0125fa6..1064ac0df1283 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.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.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicycount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md index b55b06cb997d9..2236830c979a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md @@ -286,3 +286,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointreport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md index b73e956917032..859ce4fa2cb1a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md @@ -596,7 +596,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. -BODY : . +BODY ``: . [(Any) ]: This indicates any property can be added to this object. [Filter ]: [GroupBy ]: @@ -612,3 +612,25 @@ BODY : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -565,3 +565,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersetting) - [](https://learn.microsoft.com/graph/api/cloudpcusersetting-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/virtualendpoint-list-usersettings?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index fea569758fc0b..f4e1833c05786 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -558,7 +558,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -590,3 +590,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersettingassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md index ca189a2d32b9b..4b263345d6525 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -374,3 +374,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersettingassignmentcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md index 3147dbc4a34e8..6bd282b44234d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.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.administration/get-mgdevicemanagementvirtualendpointusersettingcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md index 768b392f7ae87..1341293ba123d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md @@ -364,7 +364,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -397,3 +397,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgbegindevicemanagementremoteassistancepartneronboarding) - [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-beginonboarding?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md index 4bc8839feb02b..91c5cf285cc7b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md @@ -238,3 +238,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgdownloaddevicemanagementapplepushnotificationcertificateapplepushnotificationcertificatesigningrequest) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md index 15b77afae2e9e..9dc08dfd1c1d6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md @@ -515,12 +515,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. [OSVersion ]: cloudPcOperatingSystem [UserAccountType ]: cloudPcUserAccountType -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -553,3 +553,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgreprovisiondevicemanagementvirtualendpointcloudpc) - [](https://learn.microsoft.com/graph/api/cloudpc-reprovision?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.md index e705e24f6d5d8..a4c7486556c79 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgterminatedevicemanagementpartner) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md index 659a9e8aa60c9..d5e1914fd38d6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md @@ -364,7 +364,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -397,3 +397,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgtroubleshootdevicemanagementvirtualendpointcloudpc) - [](https://learn.microsoft.com/graph/api/cloudpc-troubleshoot?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Microsoft.Graph.DeviceManagement.Administration.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Microsoft.Graph.DeviceManagement.Administration.md index d1cbed4bc24a4..b2a09b4ea883e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Microsoft.Graph.DeviceManagement.Administration.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Microsoft.Graph.DeviceManagement.Administration.md @@ -355,3 +355,22 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgDeviceManagementVirtualEndpointUserSettingAssignment](Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md) + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md index 99c45786dcff7..89f9956edc0b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md @@ -642,7 +642,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. -ACTOR : A class containing the properties for Audit Actor. +ACTOR ``: A class containing the properties for Audit Actor. [(Any) ]: This indicates any property can be added to this object. [ApplicationDisplayName ]: Name of the Application. [ApplicationId ]: AAD Application Id. @@ -653,7 +653,7 @@ ACTOR : A class containing the properties for Audit A [UserPermissions ]: List of user permissions when the audit was performed. [UserPrincipalName ]: User Principal Name (UPN). -BODYPARAMETER : A class containing the properties for Audit Event. +BODYPARAMETER ``: A class containing the properties for Audit Event. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -698,3 +698,25 @@ RESOURCES : Resources being modified. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementauditevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md index 161927ff26771..c720bf4f7e2aa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md @@ -603,7 +603,7 @@ ANDROIDENROLLMENTASSIGNMENTS ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER : Compliance management partner for all platforms +BODYPARAMETER ``: Compliance management partner for all platforms [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -631,3 +631,25 @@ MACOSENROLLMENTASSIGNMENTS : Entity which represents a connection to an Exchange environment. +BODYPARAMETER ``: Entity which represents a connection to an Exchange environment. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -587,3 +587,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementexchangeconnector) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md index 83433cc3ff656..4427e3c330740 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md @@ -612,7 +612,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 : iosUpdateDeviceStatus +BODYPARAMETER ``: iosUpdateDeviceStatus [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -632,3 +632,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementioupdatestatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md index 6bbebe4a39316..dad259ac46c8b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md @@ -730,7 +730,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 : Entity which represents a connection to Mobile Threat Defense partner. +BODYPARAMETER ``: Entity which represents a connection to Mobile Threat Defense partner. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -780,3 +780,25 @@ Default value is FALSE. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementmobilethreatdefenseconnector) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md index 4e1c0211b21f6..8d4402255aa85 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md @@ -579,7 +579,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 : Entity which represents a connection to device management partner. +BODYPARAMETER ``: Entity which represents a connection to device management partner. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -603,3 +603,25 @@ GROUPSREQUIRINGPARTNERENROLLMENT : RemoteAssistPartner resources represent the metadata and status of a given Remote Assistance partner service. +BODYPARAMETER ``: RemoteAssistPartner resources represent the metadata and status of a given Remote Assistance partner service. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -471,3 +471,25 @@ Read-only. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementremoteassistancepartner) - [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-create?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md index cddd92905cbfe..19d7f7a84de60 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md @@ -435,7 +435,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 : Describes the resourceOperation resource (entity) of the Microsoft Graph API (REST), which supports Intune workflows related to role-based access control (RBAC). +BODYPARAMETER ``: Describes the resourceOperation resource (entity) of the Microsoft Graph API (REST), which supports Intune workflows related to role-based access control (RBAC). [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -449,3 +449,25 @@ The description is used in mouse-over text for the operation when shown in the A ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementresourceoperation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md index 49f6e21286ab0..53181f96c7a78 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md @@ -497,7 +497,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 Role Assignment resource. +BODYPARAMETER ``: The Role Assignment resource. Role assignments tie together a role definition with members and scopes. There can be one or more role assignments per role. This applies to custom and built-in roles. @@ -550,7 +550,7 @@ Read-only. [Members ]: Indicates the list of role member security group Entra IDs. For example: {dec942f4-6777-4998-96b4-522e383b08e2}. -ROLEDEFINITION : The Role Definition resource. +ROLEDEFINITION ``: The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. @@ -591,3 +591,25 @@ These must match the actionName that is defined as part of the rolePermission. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementroleassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md index a6d5499cbfc6a..dc17ce9d57dd7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md @@ -502,7 +502,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 Role Definition resource. +BODYPARAMETER ``: The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. @@ -580,3 +580,25 @@ These must match the actionName that is defined as part of the rolePermission. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementroledefinition) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md index 43253fb24d17e..c7685d32f0ab1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -596,7 +596,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 Role Assignment resource. +BODYPARAMETER ``: The Role Assignment resource. Role assignments tie together a role definition with members and scopes. There can be one or more role assignments per role. This applies to custom and built-in roles. @@ -631,7 +631,7 @@ These must match the actionName that is defined as part of the rolePermission. [AllowedResourceActions ]: Allowed Actions [NotAllowedResourceActions ]: Not Allowed Actions. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -659,7 +659,7 @@ INPUTOBJECT : Identity Parameter [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -ROLEDEFINITION : The Role Definition resource. +ROLEDEFINITION ``: The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. @@ -700,3 +700,25 @@ These must match the actionName that is defined as part of the rolePermission. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementroledefinitionroleassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md index 3c6f635ea45ec..1e68afffe3879 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md @@ -633,7 +633,7 @@ Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER : A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. +BODYPARAMETER ``: A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. T&C policies’ contents are presented to users upon their first attempt to enroll into Intune and subsequently upon edits where an administrator has required re-acceptance. They enable administrators to communicate the provisions to which a user must agree in order to have devices enrolled into Intune. [(Any) ]: This indicates any property can be added to this object. @@ -671,3 +671,25 @@ Incremented when an administrator makes a change to the terms and wishes to requ ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementtermandcondition) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md index f64ff99515066..e3e48bad0c2b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -613,7 +613,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 : A termsAndConditionsAcceptanceStatus entity represents the acceptance status of a given Terms and Conditions (T&C) policy by a given user. +BODYPARAMETER ``: A termsAndConditionsAcceptanceStatus entity represents the acceptance status of a given Terms and Conditions (T&C) policy by a given user. Users must accept the most up-to-date version of the terms in order to retain access to the Company Portal. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -647,7 +647,7 @@ Incremented when an administrator makes a change to the terms and wishes to requ [UserDisplayName ]: Display name of the user whose acceptance the entity represents. [UserPrincipalName ]: The userPrincipalName of the User that accepted the term. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -675,7 +675,7 @@ INPUTOBJECT : Identity Parameter [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -TERMSANDCONDITIONS : A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. +TERMSANDCONDITIONS ``: A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. T&C policies’ contents are presented to users upon their first attempt to enroll into Intune and subsequently upon edits where an administrator has required re-acceptance. They enable administrators to communicate the provisions to which a user must agree in order to have devices enrolled into Intune. [(Any) ]: This indicates any property can be added to this object. @@ -713,3 +713,25 @@ Incremented when an administrator makes a change to the terms and wishes to requ ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementtermandconditionacceptancestatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md index 9e597c50e4d14..da20543624c57 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md @@ -499,7 +499,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 : A termsAndConditionsAssignment entity represents the assignment of a given Terms and Conditions (T&C) policy to a given group. +BODYPARAMETER ``: A termsAndConditionsAssignment entity represents the assignment of a given Terms and Conditions (T&C) policy to a given group. Users in the group will be required to accept the terms in order to have devices enrolled into Intune. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -507,7 +507,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -539,3 +539,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementtermandconditionassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md index 8b3d59ef2b52d..c257801fab40c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -644,7 +644,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 : cloudPcDeviceImage +BODYPARAMETER ``: cloudPcDeviceImage [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -684,3 +684,25 @@ Read-only. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointdeviceimage) - [](https://learn.microsoft.com/graph/api/virtualendpoint-post-deviceimages?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md index 09312480b43d9..7e05e494e9298 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -596,7 +596,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 : cloudPcGalleryImage +BODYPARAMETER ``: cloudPcGalleryImage [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -633,3 +633,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointgalleryimage) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index ce5fb29599e74..8564b619a93ce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -811,7 +811,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 : cloudPcOnPremisesConnection +BODYPARAMETER ``: cloudPcOnPremisesConnection [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -896,7 +896,7 @@ Required format: '/subscriptions/{subscription-id}/resourceGroups/{resourceGroup For example, the location can be eastus2, westeurope, etc. Read-only (computed value). -HEALTHCHECKSTATUSDETAIL : cloudPcOnPremisesConnectionStatusDetail +HEALTHCHECKSTATUSDETAIL ``: cloudPcOnPremisesConnectionStatusDetail [(Any) ]: This indicates any property can be added to this object. [EndDateTime ]: The end time of the connection health check. The Timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). @@ -934,3 +934,25 @@ Read-Only. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointonpremiseconnection) - [](https://learn.microsoft.com/graph/api/virtualendpoint-post-onpremisesconnections?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index fcd84d1d7006f..f3f71b0a5c03a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -1688,7 +1688,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding tag in the message body. +Matches the {index} value in the corresponding `` tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -6058,8 +6058,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ' . -- _ ! # ^ ~. +Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, + For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -6071,14 +6071,14 @@ NOTE: For more information about the permissions for members and guests, see Wha [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -AUTOPATCH : cloudPcProvisioningPolicyAutopatch +AUTOPATCH ``: cloudPcProvisioningPolicyAutopatch [(Any) ]: This indicates any property can be added to this object. [AutopatchGroupId ]: The unique identifier (ID) of a Windows Autopatch group. An Autopatch group is a logical container or unit that groups several Microsoft Entra groups and software update policies. Devices with the same Autopatch group ID share unified software update management. The default value is null that indicates that no Autopatch group is associated with the provisioning policy. -BODYPARAMETER : cloudPcProvisioningPolicy +BODYPARAMETER ``: cloudPcProvisioningPolicy [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -6991,7 +6991,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding tag in the message body. +Matches the {index} value in the corresponding `` tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -11361,8 +11361,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ' . -- _ ! # ^ ~. +Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, + For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -11439,12 +11439,12 @@ Within this region, the Windows 365 service creates and manages the underlying v This option is available only when the IT admin selects Microsoft Entra joined as the domain join type. If you enter a regionName, leave the onPremisesConnectionId property empty. -MICROSOFTMANAGEDDESKTOP : microsoftManagedDesktop +MICROSOFTMANAGEDDESKTOP ``: microsoftManagedDesktop [(Any) ]: This indicates any property can be added to this object. [ManagedType ]: microsoftManagedDesktopType [Profile ]: The name of the Microsoft Managed Desktop profile that the Windows 365 Cloud PC is associated with. -WINDOWSSETTING : cloudPcWindowsSetting +WINDOWSSETTING ``: cloudPcWindowsSetting [(Any) ]: This indicates any property can be added to this object. [Locale ]: The Windows language or region tag to use for language pack configuration and localization of the Cloud PC. The default value is en-US, which corresponds to English (United States). @@ -11454,3 +11454,25 @@ The default value is en-US, which corresponds to English (United States). - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointprovisioningpolicy) - [](https://learn.microsoft.com/graph/api/virtualendpoint-post-provisioningpolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index 7a179d3a4f691..36ed06591cc4c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -1426,7 +1426,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding tag in the message body. +Matches the {index} value in the corresponding `` tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -5796,8 +5796,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ' . -- _ ! # ^ ~. +Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, + For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -5807,7 +5807,7 @@ Requires $select to retrieve. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for members and guests, see What are the default user permissions in Microsoft Entra ID? -BODYPARAMETER : cloudPcProvisioningPolicyAssignment +BODYPARAMETER ``: cloudPcProvisioningPolicyAssignment [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -6712,7 +6712,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding tag in the message body. +Matches the {index} value in the corresponding `` tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -11082,8 +11082,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ' . -- _ ! # ^ ~. +Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, + For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -11095,7 +11095,7 @@ NOTE: For more information about the permissions for members and guests, see Wha [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -11127,3 +11127,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md index 762c84c97adca..014ec3066b7c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md @@ -548,7 +548,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER : cloudPcUserSetting +BODYPARAMETER ``: cloudPcUserSetting [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -583,7 +583,7 @@ The default value is false. [UserRestoreEnabled ]: If true, the user has the ability to use snapshots to restore Cloud PCs. If false, non-admin users can't use snapshots to restore the Cloud PC. -RESTOREPOINTSETTING : cloudPcRestorePointSetting +RESTOREPOINTSETTING ``: cloudPcRestorePointSetting [(Any) ]: This indicates any property can be added to this object. [FrequencyType ]: cloudPcRestorePointFrequencyType [UserRestoreEnabled ]: If true, the user has the ability to use snapshots to restore Cloud PCs. @@ -594,3 +594,25 @@ If false, non-admin users can't use snapshots to restore the Cloud PC. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointusersetting) - [](https://learn.microsoft.com/graph/api/virtualendpoint-post-usersettings?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index 81dc248487a4f..da667fba3dc9e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -522,7 +522,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 : cloudPcUserSettingAssignment +BODYPARAMETER ``: cloudPcUserSettingAssignment [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -532,7 +532,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -564,3 +564,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointusersettingassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.md index 80968f0262af7..604c3051793f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.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.administration/remove-mgdevicemanagementapplepushnotificationcertificate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md index bf43556d464ed..c5fe44f51a691 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md @@ -382,7 +382,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -414,3 +414,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementauditevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md index 427008e01be99..906e6a0474341 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -415,3 +415,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementcompliancemanagementpartner) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md index d74d5d44c8ec0..c21e261cc18ad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md @@ -382,7 +382,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -414,3 +414,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementexchangeconnector) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md index 80324a48dbda7..4c0baa04c365f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md @@ -382,7 +382,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -414,3 +414,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementioupdatestatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md index b072346f16c07..6b68ef7e7d5b9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -415,3 +415,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementmobilethreatdefenseconnector) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md index 7e04786de5ccf..ad23261d1803e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md @@ -382,7 +382,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -414,3 +414,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementpartner) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md index c623a23d1dfb5..23f98777a242d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -416,3 +416,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementremoteassistancepartner) - [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md index 6b2b4bb88680f..f9eaaa83939ea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md @@ -382,7 +382,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -414,3 +414,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementresourceoperation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md index 064c1b3e1fcec..7ba14e6716f98 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md @@ -382,7 +382,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -414,3 +414,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementroleassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md index 453a5bfabdc9e..816fa23855e8d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md @@ -382,7 +382,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -414,3 +414,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementroledefinition) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md index 80e50041f8e98..41ec3e96c6c80 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -437,3 +437,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementroledefinitionroleassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md index 839121afea575..12f50d2cc0c1e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md @@ -382,7 +382,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -414,3 +414,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementtermandcondition) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md index 0684897f686f9..c75d9a13536b1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -437,3 +437,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementtermandconditionacceptancestatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md index 4a62379e7e208..223fa5e28d7cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -437,3 +437,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementtermandconditionassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md index fab9e3c9c1176..0c2d8ae22cf2b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -416,3 +416,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointdeviceimage) - [](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md index 40fed59d293a4..ad6b8cf0b1f93 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -385,7 +385,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -417,3 +417,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointgalleryimage) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index 400d0debb6bc1..a8b5828ef7264 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.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. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -420,3 +420,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointonpremiseconnection) - [](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index b996b1fe0f069..2a9ecb5feffc5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -385,7 +385,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -418,3 +418,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointprovisioningpolicy) - [](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index 980d000cd9512..6f9ffbd82dc64 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -407,7 +407,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -439,3 +439,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.md index 7b8f13eed92ba..e3d850749af15 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.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.administration/remove-mgdevicemanagementvirtualendpointreport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md index ace9fae5e813e..70be03e0e6017 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -416,3 +416,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointusersetting) - [](https://learn.microsoft.com/graph/api/cloudpcusersetting-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index 218a450f13474..62e31d0901f55 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -407,7 +407,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -439,3 +439,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointusersettingassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md index 5768c6ca31b4d..d048623a640c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md @@ -486,11 +486,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. [DisplayName ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -523,3 +523,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/rename-mgdevicemanagementvirtualendpointcloudpc) - [](https://learn.microsoft.com/graph/api/cloudpc-rename?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md index 042a1786dac87..b2622acab7ceb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md @@ -487,11 +487,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. [TargetServicePlanId ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -524,3 +524,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/resize-mgdevicemanagementvirtualendpointcloudpc) - [](https://learn.microsoft.com/graph/api/cloudpc-resize?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md index 6eaf787e877db..affb3817fab9d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md @@ -362,7 +362,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -395,3 +395,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/restart-mgdevicemanagementvirtualendpointcloudpc) - [](https://learn.microsoft.com/graph/api/cloudpc-reboot?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md index 3add713af591a..58767a36fcf99 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md @@ -488,11 +488,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. [CloudPcSnapshotId ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -525,3 +525,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/restore-mgdevicemanagementvirtualendpointcloudpc) - [](https://learn.microsoft.com/graph/api/cloudpc-restore?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 53a453786e822..99e098556b0b2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -1401,7 +1401,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding tag in the message body. +Matches the {index} value in the corresponding `` tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -5771,8 +5771,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ' . -- _ ! # ^ ~. +Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, + For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -5784,7 +5784,7 @@ NOTE: For more information about the permissions for members and guests, see Wha [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Assignments ]: [Id ]: The unique identifier for an entity. @@ -6690,7 +6690,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding tag in the message body. +Matches the {index} value in the corresponding `` tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -11060,8 +11060,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ' . -- _ ! # ^ ~. +Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, + For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -11073,7 +11073,7 @@ NOTE: For more information about the permissions for members and guests, see Wha [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -11106,3 +11106,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/set-mgdevicemanagementvirtualendpointprovisioningpolicy) - [](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-assign?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md index a06d8a681b7b4..7ba3290aefe66 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md @@ -505,7 +505,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [Assignments ]: [Id ]: The unique identifier for an entity. @@ -516,7 +516,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -549,3 +549,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/set-mgdevicemanagementvirtualendpointusersetting) - [](https://learn.microsoft.com/graph/api/cloudpcusersetting-assign?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck.md index 35088e6eef5a4..424a33e87b1b3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck.md @@ -365,7 +365,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -398,3 +398,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/start-mgdevicemanagementvirtualendpointonpremiseconnectionhealthcheck) - [](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-runhealthcheck?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md index 8b3222de222b0..a90098efec986 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md @@ -368,7 +368,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -401,3 +401,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/stop-mgdevicemanagementvirtualendpointcloudpcgraceperiod) - [](https://learn.microsoft.com/graph/api/cloudpc-endgraceperiod?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md index 2309ff68a1942..8c1261fda38ed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md @@ -483,11 +483,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. [SyncType ]: The type of Exchange Connector sync requested. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -519,3 +519,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/sync-mgdevicemanagementexchangeconnector) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md index 6d1abb0c520b5..d4fad35cead6d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md @@ -524,7 +524,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 : Apple push notification certificate. +BODYPARAMETER ``: Apple push notification certificate. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -540,3 +540,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementapplepushnotificationcertificate) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md index e887412db1b2c..1e2b9d3e46acd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md @@ -810,7 +810,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. -ACTOR : A class containing the properties for Audit Actor. +ACTOR ``: A class containing the properties for Audit Actor. [(Any) ]: This indicates any property can be added to this object. [ApplicationDisplayName ]: Name of the Application. [ApplicationId ]: AAD Application Id. @@ -821,7 +821,7 @@ ACTOR : A class containing the properties for Audit A [UserPermissions ]: List of user permissions when the audit was performed. [UserPrincipalName ]: User Principal Name (UPN). -BODYPARAMETER : A class containing the properties for Audit Event. +BODYPARAMETER ``: A class containing the properties for Audit Event. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -853,7 +853,7 @@ Read-only. [OldValue ]: Old value. [ResourceId ]: Audit resource's Id. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -894,3 +894,25 @@ RESOURCES : Resources being modified. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementauditevent) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md index a2a0ac2af8e40..fafc5eb008702 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md @@ -762,7 +762,7 @@ ANDROIDENROLLMENTASSIGNMENTS ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER : Compliance management partner for all platforms +BODYPARAMETER ``: Compliance management partner for all platforms [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -778,7 +778,7 @@ Read-only. [MacOSOnboarded ]: Partner onboarded for Mac devices. [PartnerState ]: Partner state of this tenant. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -818,3 +818,25 @@ MACOSENROLLMENTASSIGNMENTS : Entity which represents a connection to an Exchange environment. +BODYPARAMETER ``: Entity which represents a connection to an Exchange environment. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -739,7 +739,7 @@ Read-only. [Status ]: The current status of the Exchange Connector. [Version ]: The version of the ExchangeConnectorAgent -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -771,3 +771,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementexchangeconnector) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md index fc54e02f57bc7..45f9479646d2f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md @@ -779,7 +779,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 : iosUpdateDeviceStatus +BODYPARAMETER ``: iosUpdateDeviceStatus [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -795,7 +795,7 @@ Read-only. [UserName ]: The User Name that is being reported [UserPrincipalName ]: UserPrincipalName. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -827,3 +827,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementioupdatestatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md index 053077b5acb18..b36ce09e4ba92 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md @@ -926,7 +926,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 : Entity which represents a connection to Mobile Threat Defense partner. +BODYPARAMETER ``: Entity which represents a connection to Mobile Threat Defense partner. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -972,7 +972,7 @@ Default value is FALSE. When FALSE, indicates that data from the Mobile Threat Defense partner will not be used during compliance evaluations for Windows. Default value is FALSE. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -1004,3 +1004,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementmobilethreatdefenseconnector) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md index 1fcd34e84fd91..5e2209425916f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md @@ -736,7 +736,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 : Entity which represents a connection to device management partner. +BODYPARAMETER ``: Entity which represents a connection to device management partner. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -756,7 +756,7 @@ GROUPSREQUIRINGPARTNERENROLLMENT ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -788,3 +788,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementpartner) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md index 25a8395cdb8bf..677e3af5a260c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md @@ -582,7 +582,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 : RemoteAssistPartner resources represent the metadata and status of a given Remote Assistance partner service. +BODYPARAMETER ``: RemoteAssistPartner resources represent the metadata and status of a given Remote Assistance partner service. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -591,7 +591,7 @@ Read-only. [OnboardingStatus ]: The current TeamViewer connector status [OnboardingUrl ]: URL of the partner's onboarding portal, where an administrator can configure their Remote Assistance service. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -624,3 +624,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementremoteassistancepartner) - [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md index a6c907ec2b109..7903d90945b5e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md @@ -551,7 +551,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 : Describes the resourceOperation resource (entity) of the Microsoft Graph API (REST), which supports Intune workflows related to role-based access control (RBAC). +BODYPARAMETER ``: Describes the resourceOperation resource (entity) of the Microsoft Graph API (REST), which supports Intune workflows related to role-based access control (RBAC). [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -561,7 +561,7 @@ The actionName should be concise and limited to as few words as possible. The description is used in mouse-over text for the operation when shown in the Azure Portal. [ResourceName ]: Name of the Resource this operation is performed on. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -593,3 +593,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementresourceoperation) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md index 11aef60e985a0..4914744272db7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md @@ -625,7 +625,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 Role Assignment resource. +BODYPARAMETER ``: The Role Assignment resource. Role assignments tie together a role definition with members and scopes. There can be one or more role assignments per role. This applies to custom and built-in roles. @@ -678,7 +678,7 @@ Read-only. [Members ]: Indicates the list of role member security group Entra IDs. For example: {dec942f4-6777-4998-96b4-522e383b08e2}. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -706,7 +706,7 @@ INPUTOBJECT : Identity Parameter [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -ROLEDEFINITION : The Role Definition resource. +ROLEDEFINITION ``: The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. @@ -747,3 +747,25 @@ These must match the actionName that is defined as part of the rolePermission. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementroleassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md index d13add97b59e0..d60aa0b571dfa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md @@ -633,7 +633,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 Role Definition resource. +BODYPARAMETER ``: The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. @@ -670,7 +670,7 @@ These must match the actionName that is defined as part of the rolePermission. [AllowedResourceActions ]: Allowed Actions [NotAllowedResourceActions ]: Not Allowed Actions. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -739,3 +739,25 @@ These must match the actionName that is defined as part of the rolePermission. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementroledefinition) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md index 566e1e2e21e62..3c680d8927fff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -623,7 +623,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 Role Assignment resource. +BODYPARAMETER ``: The Role Assignment resource. Role assignments tie together a role definition with members and scopes. There can be one or more role assignments per role. This applies to custom and built-in roles. @@ -658,7 +658,7 @@ These must match the actionName that is defined as part of the rolePermission. [AllowedResourceActions ]: Allowed Actions [NotAllowedResourceActions ]: Not Allowed Actions. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -686,7 +686,7 @@ INPUTOBJECT : Identity Parameter [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -ROLEDEFINITION : The Role Definition resource. +ROLEDEFINITION ``: The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. @@ -727,3 +727,25 @@ These must match the actionName that is defined as part of the rolePermission. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementroledefinitionroleassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md index d85ef11a8ad7f..79f9642dab474 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md @@ -795,7 +795,7 @@ Read-only. [Target ]: Base type for assignment targets. [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER : A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. +BODYPARAMETER ``: A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. T&C policies’ contents are presented to users upon their first attempt to enroll into Intune and subsequently upon edits where an administrator has required re-acceptance. They enable administrators to communicate the provisions to which a user must agree in order to have devices enrolled into Intune. [(Any) ]: This indicates any property can be added to this object. @@ -829,7 +829,7 @@ This is shown to the user on prompts to accept the T&C policy. [Version ]: Integer indicating the current version of the terms. Incremented when an administrator makes a change to the terms and wishes to require users to re-accept the modified T&C policy. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -861,3 +861,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementtermandcondition) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md index f277ffc99fa44..a8d76afd3afa0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -642,7 +642,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 : A termsAndConditionsAcceptanceStatus entity represents the acceptance status of a given Terms and Conditions (T&C) policy by a given user. +BODYPARAMETER ``: A termsAndConditionsAcceptanceStatus entity represents the acceptance status of a given Terms and Conditions (T&C) policy by a given user. Users must accept the most up-to-date version of the terms in order to retain access to the Company Portal. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -676,7 +676,7 @@ Incremented when an administrator makes a change to the terms and wishes to requ [UserDisplayName ]: Display name of the user whose acceptance the entity represents. [UserPrincipalName ]: The userPrincipalName of the User that accepted the term. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -704,7 +704,7 @@ INPUTOBJECT : Identity Parameter [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -TERMSANDCONDITIONS : A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. +TERMSANDCONDITIONS ``: A termsAndConditions entity represents the metadata and contents of a given Terms and Conditions (T&C) policy. T&C policies’ contents are presented to users upon their first attempt to enroll into Intune and subsequently upon edits where an administrator has required re-acceptance. They enable administrators to communicate the provisions to which a user must agree in order to have devices enrolled into Intune. [(Any) ]: This indicates any property can be added to this object. @@ -742,3 +742,25 @@ Incremented when an administrator makes a change to the terms and wishes to requ ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementtermandconditionacceptancestatus) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md index a5315c4c21a35..72a96990cfc3c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md @@ -527,7 +527,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 : A termsAndConditionsAssignment entity represents the assignment of a given Terms and Conditions (T&C) policy to a given group. +BODYPARAMETER ``: A termsAndConditionsAssignment entity represents the assignment of a given Terms and Conditions (T&C) policy to a given group. Users in the group will be required to accept the terms in order to have devices enrolled into Intune. [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. @@ -535,7 +535,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 [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -567,3 +567,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementtermandconditionassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md index 5054d6b7472d3..1166e199859a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -814,7 +814,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 : cloudPcDeviceImage +BODYPARAMETER ``: cloudPcDeviceImage [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -849,7 +849,7 @@ Read-only. For example, 0.0.1 and 1.5.13. Read-only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -881,3 +881,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointdeviceimage) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md index d3950d51df15d..6da301b4e6eda 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -757,7 +757,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 : cloudPcGalleryImage +BODYPARAMETER ``: cloudPcGalleryImage [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -790,7 +790,7 @@ For example, 2022-09-20. Read-only. [Status ]: cloudPcGalleryImageStatus -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -822,3 +822,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointgalleryimage) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index a9b903529295e..26d7f41f17410 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -1031,7 +1031,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 : cloudPcOnPremisesConnection +BODYPARAMETER ``: cloudPcOnPremisesConnection [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -1116,7 +1116,7 @@ Required format: '/subscriptions/{subscription-id}/resourceGroups/{resourceGroup For example, the location can be eastus2, westeurope, etc. Read-only (computed value). -HEALTHCHECKSTATUSDETAIL : cloudPcOnPremisesConnectionStatusDetail +HEALTHCHECKSTATUSDETAIL ``: cloudPcOnPremisesConnectionStatusDetail [(Any) ]: This indicates any property can be added to this object. [EndDateTime ]: The end time of the connection health check. The Timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). @@ -1149,7 +1149,7 @@ The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appear as 2014-01-01T00:00:00Z. Read-Only. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -1182,3 +1182,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointonpremiseconnection) - [](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md index 91adf973ffcfe..1e6007906c5e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md @@ -489,11 +489,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. [AdDomainPassword ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -526,3 +526,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointonpremiseconnectionaddomainpassword) - [](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-updateaddomainpassword?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 7c3ddf08f2d69..c43e373562e76 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -1886,7 +1886,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding tag in the message body. +Matches the {index} value in the corresponding `` tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -6256,8 +6256,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ' . -- _ ! # ^ ~. +Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, + For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -6269,14 +6269,14 @@ NOTE: For more information about the permissions for members and guests, see Wha [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -AUTOPATCH : cloudPcProvisioningPolicyAutopatch +AUTOPATCH ``: cloudPcProvisioningPolicyAutopatch [(Any) ]: This indicates any property can be added to this object. [AutopatchGroupId ]: The unique identifier (ID) of a Windows Autopatch group. An Autopatch group is a logical container or unit that groups several Microsoft Entra groups and software update policies. Devices with the same Autopatch group ID share unified software update management. The default value is null that indicates that no Autopatch group is associated with the provisioning policy. -BODYPARAMETER : cloudPcProvisioningPolicy +BODYPARAMETER ``: cloudPcProvisioningPolicy [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -7189,7 +7189,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding tag in the message body. +Matches the {index} value in the corresponding `` tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -11559,8 +11559,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ' . -- _ ! # ^ ~. +Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, + For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -11637,7 +11637,7 @@ Within this region, the Windows 365 service creates and manages the underlying v This option is available only when the IT admin selects Microsoft Entra joined as the domain join type. If you enter a regionName, leave the onPremisesConnectionId property empty. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -11665,12 +11665,12 @@ INPUTOBJECT : Identity Parameter [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -MICROSOFTMANAGEDDESKTOP : microsoftManagedDesktop +MICROSOFTMANAGEDDESKTOP ``: microsoftManagedDesktop [(Any) ]: This indicates any property can be added to this object. [ManagedType ]: microsoftManagedDesktopType [Profile ]: The name of the Microsoft Managed Desktop profile that the Windows 365 Cloud PC is associated with. -WINDOWSSETTING : cloudPcWindowsSetting +WINDOWSSETTING ``: cloudPcWindowsSetting [(Any) ]: This indicates any property can be added to this object. [Locale ]: The Windows language or region tag to use for language pack configuration and localization of the Cloud PC. The default value is en-US, which corresponds to English (United States). @@ -11680,3 +11680,25 @@ The default value is en-US, which corresponds to English (United States). - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointprovisioningpolicy) - [](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index c27c13b182f95..855e616c222f5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -1454,7 +1454,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding tag in the message body. +Matches the {index} value in the corresponding `` tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -5824,8 +5824,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ' . -- _ ! # ^ ~. +Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, + For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -5835,7 +5835,7 @@ Requires $select to retrieve. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for members and guests, see What are the default user permissions in Microsoft Entra ID? -BODYPARAMETER : cloudPcProvisioningPolicyAssignment +BODYPARAMETER ``: cloudPcProvisioningPolicyAssignment [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -6740,7 +6740,7 @@ Always set to en-us. [Mentions ]: List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. [Id ]: Index of an entity being mentioned in the specified chatMessage. -Matches the {index} value in the corresponding tag in the message body. +Matches the {index} value in the corresponding `` tag in the message body. [MentionText ]: String used to represent the mention. For example, a user's display name, a team name. [Mentioned ]: chatMessageMentionedIdentitySet @@ -11110,8 +11110,8 @@ By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. -Only the following characters are allowed A - Z, a - z, 0 - 9, ' . -- _ ! # ^ ~. +Only the following characters are allowed A - Z, a - z, 0 - 9, ', ., -, _, !, #, ^, ~, + For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. @@ -11123,7 +11123,7 @@ NOTE: For more information about the permissions for members and guests, see Wha [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -11155,3 +11155,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md index 08e9122e5cfb5..64adce0fef03d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md @@ -746,7 +746,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. -AUTOMATICREPLIESSETTING : automaticRepliesSetting +AUTOMATICREPLIESSETTING ``: automaticRepliesSetting [(Any) ]: This indicates any property can be added to this object. [ExternalAudience ]: externalAudienceScope [ExternalReplyMessage ]: The automatic reply to send to the specified external audience, if Status is AlwaysEnabled or Scheduled. @@ -759,7 +759,7 @@ See below for more possible values. [ScheduledStartDateTime ]: dateTimeTimeZone [Status ]: automaticRepliesStatus -BODYPARAMETER : mailboxSettings +BODYPARAMETER ``: mailboxSettings [(Any) ]: This indicates any property can be added to this object. [ArchiveFolder ]: Folder ID of an archive folder for the user. [AutomaticRepliesSetting ]: automaticRepliesSetting @@ -795,7 +795,7 @@ The language component follows 2-letter codes as defined in ISO 639-1, and the c [Name ]: The name of a time zone. It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or 'Customized Time Zone' for a custom time zone. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -823,14 +823,14 @@ INPUTOBJECT : Identity Parameter [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -LANGUAGE : localeInfo +LANGUAGE ``: localeInfo [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: A name representing the user's locale in natural language, for example, 'English (United States)'. [Locale ]: A locale representation for the user, which includes the user's preferred language and country/region. For example, 'en-us'. The language component follows 2-letter codes as defined in ISO 639-1, and the country component follows 2-letter codes as defined in ISO 3166-1 alpha-2. -WORKINGHOURS : workingHours +WORKINGHOURS ``: workingHours [(Any) ]: This indicates any property can be added to this object. [DaysOfWeek ]: The days of the week on which the user works. [EndTime ]: The time of the day that the user stops working. @@ -844,3 +844,25 @@ It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassignedusermailboxsetting) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md index 9dd68974b1386..dac3025c30df3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md @@ -361,3 +361,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointreport) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md index fe0a3798e6828..162e48ff13abc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md @@ -694,7 +694,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -BODYPARAMETER : cloudPcUserSetting +BODYPARAMETER ``: cloudPcUserSetting [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -729,7 +729,7 @@ The default value is false. [UserRestoreEnabled ]: If true, the user has the ability to use snapshots to restore Cloud PCs. If false, non-admin users can't use snapshots to restore the Cloud PC. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -757,7 +757,7 @@ INPUTOBJECT : Identity Parameter [UserId ]: The unique identifier of user [UserPrincipalName ]: Alternate key of user -RESTOREPOINTSETTING : cloudPcRestorePointSetting +RESTOREPOINTSETTING ``: cloudPcRestorePointSetting [(Any) ]: This indicates any property can be added to this object. [FrequencyType ]: cloudPcRestorePointFrequencyType [UserRestoreEnabled ]: If true, the user has the ability to use snapshots to restore Cloud PCs. @@ -768,3 +768,25 @@ If false, non-admin users can't use snapshots to restore the Cloud PC. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointusersetting) - [](https://learn.microsoft.com/graph/api/cloudpcusersetting-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index 92305919f4da5..d839cbf4f67e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -551,7 +551,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 : cloudPcUserSettingAssignment +BODYPARAMETER ``: cloudPcUserSettingAssignment [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -561,7 +561,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Target ]: cloudPcManagementAssignmentTarget [(Any) ]: This indicates any property can be added to this object. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [AuditEventId ]: The unique identifier of auditEvent [Category ]: Usage: category='{category}' [CloudPcAuditEventId ]: The unique identifier of cloudPcAuditEvent @@ -593,3 +593,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointusersettingassignment) + + + + + + + + + + + + + + + + + + + + + + From 1a02609d4aab7a44c2e5c61c8bc8071021730e8e Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:27:14 +0000 Subject: [PATCH 12/17] Inserted permissions Table --- ...isconnect-MgDeviceManagementRemoteAssistancePartner.md | 8 ++++++++ ...-MgDeviceManagementApplePushNotificationCertificate.md | 8 ++++++++ .../Get-MgDeviceManagementAuditEvent.md | 8 ++++++++ .../Get-MgDeviceManagementAuditEventAuditActivityType.md | 8 ++++++++ .../Get-MgDeviceManagementAuditEventAuditCategory.md | 8 ++++++++ .../Get-MgDeviceManagementAuditEventCount.md | 8 ++++++++ .../Get-MgDeviceManagementComplianceManagementPartner.md | 8 ++++++++ ...-MgDeviceManagementComplianceManagementPartnerCount.md | 8 ++++++++ .../Get-MgDeviceManagementExchangeConnector.md | 8 ++++++++ .../Get-MgDeviceManagementExchangeConnectorCount.md | 8 ++++++++ .../Get-MgDeviceManagementIoUpdateStatus.md | 8 ++++++++ .../Get-MgDeviceManagementIoUpdateStatusCount.md | 8 ++++++++ .../Get-MgDeviceManagementMobileThreatDefenseConnector.md | 8 ++++++++ ...MgDeviceManagementMobileThreatDefenseConnectorCount.md | 8 ++++++++ .../Get-MgDeviceManagementPartner.md | 8 ++++++++ .../Get-MgDeviceManagementPartnerCount.md | 8 ++++++++ .../Get-MgDeviceManagementRemoteAssistancePartner.md | 8 ++++++++ .../Get-MgDeviceManagementRemoteAssistancePartnerCount.md | 8 ++++++++ .../Get-MgDeviceManagementResourceOperation.md | 8 ++++++++ .../Get-MgDeviceManagementResourceOperationCount.md | 8 ++++++++ .../Get-MgDeviceManagementRoleAssignment.md | 8 ++++++++ .../Get-MgDeviceManagementRoleAssignmentCount.md | 8 ++++++++ .../Get-MgDeviceManagementRoleDefinition.md | 8 ++++++++ .../Get-MgDeviceManagementRoleDefinitionCount.md | 8 ++++++++ .../Get-MgDeviceManagementRoleDefinitionRoleAssignment.md | 8 ++++++++ ...MgDeviceManagementRoleDefinitionRoleAssignmentCount.md | 8 ++++++++ ...anagementRoleDefinitionRoleAssignmentRoleDefinition.md | 8 ++++++++ .../Get-MgDeviceManagementTermAndCondition.md | 8 ++++++++ ...-MgDeviceManagementTermAndConditionAcceptanceStatus.md | 8 ++++++++ ...viceManagementTermAndConditionAcceptanceStatusCount.md | 8 ++++++++ ...entTermAndConditionAcceptanceStatusTermAndCondition.md | 8 ++++++++ .../Get-MgDeviceManagementTermAndConditionAssignment.md | 8 ++++++++ ...t-MgDeviceManagementTermAndConditionAssignmentCount.md | 8 ++++++++ .../Get-MgDeviceManagementTermAndConditionCount.md | 8 ++++++++ .../Get-MgDeviceManagementVirtualEndpointAuditEvent.md | 8 ++++++++ ...anagementVirtualEndpointAuditEventAuditActivityType.md | 8 ++++++++ ...et-MgDeviceManagementVirtualEndpointAuditEventCount.md | 8 ++++++++ .../Get-MgDeviceManagementVirtualEndpointCloudPc.md | 8 ++++++++ .../Get-MgDeviceManagementVirtualEndpointCloudPcCount.md | 8 ++++++++ .../Get-MgDeviceManagementVirtualEndpointDeviceImage.md | 8 ++++++++ ...t-MgDeviceManagementVirtualEndpointDeviceImageCount.md | 8 ++++++++ ...viceManagementVirtualEndpointDeviceImageSourceImage.md | 8 ++++++++ .../Get-MgDeviceManagementVirtualEndpointGalleryImage.md | 8 ++++++++ ...-MgDeviceManagementVirtualEndpointGalleryImageCount.md | 8 ++++++++ ...gDeviceManagementVirtualEndpointOnPremiseConnection.md | 8 ++++++++ ...ceManagementVirtualEndpointOnPremiseConnectionCount.md | 8 ++++++++ ...MgDeviceManagementVirtualEndpointProvisioningPolicy.md | 8 ++++++++ ...iceManagementVirtualEndpointProvisioningPolicyCount.md | 8 ++++++++ ...entVirtualEndpointReportCloudPcRecommendationReport.md | 8 ++++++++ .../Get-MgDeviceManagementVirtualEndpointUserSetting.md | 8 ++++++++ ...t-MgDeviceManagementVirtualEndpointUserSettingCount.md | 8 ++++++++ ...inDeviceManagementRemoteAssistancePartnerOnboarding.md | 8 ++++++++ ...icateApplePushNotificationCertificateSigningRequest.md | 8 ++++++++ ...MgReprovisionDeviceManagementVirtualEndpointCloudPc.md | 8 ++++++++ .../Invoke-MgTerminateDeviceManagementPartner.md | 8 ++++++++ ...gTroubleshootDeviceManagementVirtualEndpointCloudPc.md | 8 ++++++++ .../New-MgDeviceManagementAuditEvent.md | 8 ++++++++ .../New-MgDeviceManagementComplianceManagementPartner.md | 8 ++++++++ .../New-MgDeviceManagementExchangeConnector.md | 8 ++++++++ .../New-MgDeviceManagementIoUpdateStatus.md | 8 ++++++++ .../New-MgDeviceManagementMobileThreatDefenseConnector.md | 8 ++++++++ .../New-MgDeviceManagementPartner.md | 8 ++++++++ .../New-MgDeviceManagementRemoteAssistancePartner.md | 8 ++++++++ .../New-MgDeviceManagementResourceOperation.md | 8 ++++++++ .../New-MgDeviceManagementRoleAssignment.md | 8 ++++++++ .../New-MgDeviceManagementRoleDefinition.md | 8 ++++++++ .../New-MgDeviceManagementRoleDefinitionRoleAssignment.md | 8 ++++++++ .../New-MgDeviceManagementTermAndCondition.md | 8 ++++++++ ...-MgDeviceManagementTermAndConditionAcceptanceStatus.md | 8 ++++++++ .../New-MgDeviceManagementTermAndConditionAssignment.md | 8 ++++++++ .../New-MgDeviceManagementVirtualEndpointDeviceImage.md | 8 ++++++++ ...MgDeviceManagementVirtualEndpointProvisioningPolicy.md | 8 ++++++++ .../New-MgDeviceManagementVirtualEndpointUserSetting.md | 8 ++++++++ .../Remove-MgDeviceManagementAuditEvent.md | 8 ++++++++ ...emove-MgDeviceManagementComplianceManagementPartner.md | 8 ++++++++ .../Remove-MgDeviceManagementExchangeConnector.md | 8 ++++++++ .../Remove-MgDeviceManagementIoUpdateStatus.md | 8 ++++++++ ...move-MgDeviceManagementMobileThreatDefenseConnector.md | 8 ++++++++ .../Remove-MgDeviceManagementPartner.md | 8 ++++++++ .../Remove-MgDeviceManagementRemoteAssistancePartner.md | 8 ++++++++ .../Remove-MgDeviceManagementResourceOperation.md | 8 ++++++++ .../Remove-MgDeviceManagementRoleAssignment.md | 8 ++++++++ .../Remove-MgDeviceManagementRoleDefinition.md | 8 ++++++++ ...move-MgDeviceManagementRoleDefinitionRoleAssignment.md | 8 ++++++++ .../Remove-MgDeviceManagementTermAndCondition.md | 8 ++++++++ ...-MgDeviceManagementTermAndConditionAcceptanceStatus.md | 8 ++++++++ ...Remove-MgDeviceManagementTermAndConditionAssignment.md | 8 ++++++++ ...Remove-MgDeviceManagementVirtualEndpointDeviceImage.md | 8 ++++++++ ...MgDeviceManagementVirtualEndpointProvisioningPolicy.md | 8 ++++++++ ...Remove-MgDeviceManagementVirtualEndpointUserSetting.md | 8 ++++++++ .../Rename-MgDeviceManagementVirtualEndpointCloudPc.md | 8 ++++++++ .../Resize-MgDeviceManagementVirtualEndpointCloudPc.md | 8 ++++++++ .../Restart-MgDeviceManagementVirtualEndpointCloudPc.md | 8 ++++++++ .../Restore-MgDeviceManagementVirtualEndpointCloudPc.md | 8 ++++++++ ...MgDeviceManagementVirtualEndpointProvisioningPolicy.md | 8 ++++++++ .../Set-MgDeviceManagementVirtualEndpointUserSetting.md | 8 ++++++++ ...MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md | 8 ++++++++ .../Sync-MgDeviceManagementExchangeConnector.md | 8 ++++++++ ...-MgDeviceManagementApplePushNotificationCertificate.md | 8 ++++++++ .../Update-MgDeviceManagementAuditEvent.md | 8 ++++++++ ...pdate-MgDeviceManagementComplianceManagementPartner.md | 8 ++++++++ .../Update-MgDeviceManagementExchangeConnector.md | 8 ++++++++ .../Update-MgDeviceManagementIoUpdateStatus.md | 8 ++++++++ ...date-MgDeviceManagementMobileThreatDefenseConnector.md | 8 ++++++++ .../Update-MgDeviceManagementPartner.md | 8 ++++++++ .../Update-MgDeviceManagementRemoteAssistancePartner.md | 8 ++++++++ .../Update-MgDeviceManagementResourceOperation.md | 8 ++++++++ .../Update-MgDeviceManagementRoleAssignment.md | 8 ++++++++ .../Update-MgDeviceManagementRoleDefinition.md | 8 ++++++++ ...date-MgDeviceManagementRoleDefinitionRoleAssignment.md | 8 ++++++++ .../Update-MgDeviceManagementTermAndCondition.md | 8 ++++++++ ...-MgDeviceManagementTermAndConditionAcceptanceStatus.md | 8 ++++++++ ...Update-MgDeviceManagementTermAndConditionAssignment.md | 8 ++++++++ ...tVirtualEndpointOnPremiseConnectionAdDomainPassword.md | 8 ++++++++ ...MgDeviceManagementVirtualEndpointProvisioningPolicy.md | 8 ++++++++ 115 files changed, 920 insertions(+) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md index e6eeb2d265174..b09034da03c64 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, A request to remove the active TeamViewer connector +**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.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md index c45f83e02701d..83b513002b8e1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md @@ -35,6 +35,14 @@ This cmdlet has the following aliases, Apple push notification certificate. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md index ac6ab0d03873e..97f3b17fd44b3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md @@ -56,6 +56,14 @@ This cmdlet has the following aliases, The Audit Events +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md index 9b262f779ceb9..809111a449c56 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md @@ -47,6 +47,14 @@ This cmdlet has the following aliases, Invoke function getAuditActivityTypes +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md index fc4b374489b02..b1df0feebfa74 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md @@ -35,6 +35,14 @@ This cmdlet has the following aliases, Invoke function getAuditCategories +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md index ac457d9d9b47c..03acf5b8c466b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.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) | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md index 8a898c522733d..439fe0a0e0ab0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The list of Compliance Management Partners configured by the tenant. +**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.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md index 32dc349c43b4b..279742be964e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.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.Administration/Get-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md index febc19fe3b2e7..0566b463caac8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The list of Exchange Connectors configured by the tenant. +**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.Administration/Get-MgDeviceManagementExchangeConnectorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.md index 66f05932fd583..1464489d24256 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.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.Administration/Get-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md index 24ae0e262811a..73a799d93041f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md @@ -56,6 +56,14 @@ This cmdlet has the following aliases, The IOS software update installation statuses for this account. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md index 707f4a329cd4f..9285f86166a2d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.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) | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md index 8379db110fac1..01447559e8ab7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The list of Mobile threat Defense connectors configured by the tenant. +**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.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md index a5cfb65b648c1..1d4f2046ad00c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.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.Administration/Get-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md index ac3a8cbf2f074..1e2dfffb46d7f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md @@ -56,6 +56,14 @@ This cmdlet has the following aliases, The list of Device Management Partners configured by the tenant. +**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.Administration/Get-MgDeviceManagementPartnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.md index 90a90cbcfb587..3071551917e84 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.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.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md index 896d35b3cbd22..56e5a11d524bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Read properties and relationships of the remoteAssistancePartner object. +**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.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md index ee90c20fd2948..24c93207e899c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.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.Administration/Get-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md index e793956ac66eb..55627567539e5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md @@ -56,6 +56,14 @@ This cmdlet has the following aliases, The Resource Operations. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md index 14fb44d9bb9bc..1bd62d597c7e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.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) | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md index a048079e537f2..a0fdaf1e30bc5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The Role Assignments. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md index 8066d46d5c0e5..8db666def24de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.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) | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md index 8d7cae69322ba..5fcd3a0d489f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md @@ -56,6 +56,14 @@ This cmdlet has the following aliases, The Role Definitions. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md index cb63c74de81d2..d9d8cf88b76c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.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) | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md index cc6744a2e8be7..de24d7867128d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, List of Role assignments for this role definition. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md index 3410479cbc3a2..c66466c1a8813 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.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) | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md index be9ba5f01c7b6..5fdbef967fa5d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Indicates the role definition for this role assignment. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md index 43106e5ada0d0..8275057187b0e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md @@ -56,6 +56,14 @@ This cmdlet has the following aliases, The terms and conditions associated with device management of the company. +**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.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md index 74b87bb1e70d3..729071006b42e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -58,6 +58,14 @@ This cmdlet has the following aliases, The list of acceptance statuses for this T&C policy. +**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.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md index 0b21d03857313..8f104b4a4c1a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.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, 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.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md index d0e01c8715bf6..678fa360c4277 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md @@ -47,6 +47,14 @@ This cmdlet has the following aliases, Navigation link to the terms and conditions that are assigned. +**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.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md index f5cfc0a7242b4..d9fe06b8fbf51 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, The list of assignments for this T&C policy. +**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.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md index 21caa661def48..e450cc031e62c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.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, 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.Administration/Get-MgDeviceManagementTermAndConditionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md index dd17c2d49a837..03bd4ec7440a2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.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.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md index 88f5253516758..f9938933903a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a cloudPcAuditEvent object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md index e96f5e21e8a78..2d7b806087956 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md @@ -36,6 +36,14 @@ This cmdlet has the following aliases, Get audit activity types by tenant ID. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md index 1fbcfdfb63880..04d4ce96e0481 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.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) | CloudPC.Read.All, CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md index 24b176725ad33..c49bce58030d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md @@ -56,6 +56,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a specific cloudPC object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md index d739fe4058056..714256d2e8a6b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.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) | CloudPC.Read.All, CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md index 8f0d398def4f2..03aa8913ce6ce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a specific cloudPcDeviceImage object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md index 9a5e6106ab0ad..c672fa90b268e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.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) | CloudPC.Read.All, CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md index 0c06472392133..527234d33c9f8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md @@ -38,6 +38,14 @@ This cmdlet has the following aliases, Get cloudPcSourceDeviceImage objects that can be uploaded and used on Cloud PCs. View a list of all the managed image resources from your Microsoft Entra subscriptions. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md index ece7b519f68bd..29e1d905be634 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a specific cloudPcGalleryImage object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md index c229f573614c5..21d897583e89f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.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) | CloudPC.Read.All, CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index 6b6e0aee633bf..8eb09c62a3f46 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Read the properties and relationships of the cloudPcOnPremisesConnection object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md index 30c5c9b003502..68e38cbb42985 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.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) | CloudPC.Read.All, CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 0acf8bb155feb..89561a746e1c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a cloudPcProvisioningPolicy object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md index 1064ac0df1283..b31bce863df58 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.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) | CloudPC.Read.All, CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md index 859ce4fa2cb1a..f1bb387e15fb5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md @@ -49,6 +49,14 @@ This cmdlet has the following aliases, Retrieve Cloud PC recommendation reports for usage optimization and cost savings. The usage category report categorizes a Cloud PC as Undersized, Oversized, Rightsized, or Underutilized, and also provides the recommended SKU when the Cloud PC isn't Rightsized. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSetting.md index afb09f0c23d9e..5577937ed3429 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSetting.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Read the properties and relationships of a cloudPcUserSetting object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.Read.All, CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md index 6bd282b44234d..2bfd29332fabe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.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) | CloudPC.Read.All, CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md index 1341293ba123d..bd530f41fbda1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md @@ -47,6 +47,14 @@ This cmdlet has the following aliases, A request to start onboarding. Must be coupled with the appropriate TeamViewer account information +**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.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md index 91c5cf285cc7b..375a5c95a347f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md @@ -35,6 +35,14 @@ This cmdlet has the following aliases, Download Apple push notification certificate signing request +**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.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md index 9dc08dfd1c1d6..c3008ab107435 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Reprovision a specific Cloud PC. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.md index a4c7486556c79..3ed83759a8c10 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Invoke action terminate +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md index d5e1914fd38d6..3fac0f98b141f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md @@ -47,6 +47,14 @@ This cmdlet has the following aliases, Troubleshoot a specific cloudPC object. Use this API to check the health status of the Cloud PC and the session host. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md index 89f9956edc0b6..88fb10f2385eb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md @@ -47,6 +47,14 @@ This cmdlet has the following aliases, Create new navigation property to auditEvents for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementApps.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementApps.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md index c720bf4f7e2aa..8a1118f4f15a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md @@ -52,6 +52,14 @@ This cmdlet has the following aliases, Create new navigation property to complianceManagementPartners 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.Administration/New-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementExchangeConnector.md index 757819691f8ea..1bf70e7edaff6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementExchangeConnector.md @@ -49,6 +49,14 @@ This cmdlet has the following aliases, Create new navigation property to exchangeConnectors 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.Administration/New-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md index 4427e3c330740..00fa85f95704d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md @@ -48,6 +48,14 @@ This cmdlet has the following aliases, Create new navigation property to iosUpdateStatuses for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md index dad259ac46c8b..b2f99d589ae97 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md @@ -52,6 +52,14 @@ This cmdlet has the following aliases, Create new navigation property to mobileThreatDefenseConnectors 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.Administration/New-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md index 8d4402255aa85..760fe44096d3a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md @@ -50,6 +50,14 @@ This cmdlet has the following aliases, Create new navigation property to deviceManagementPartners 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.Administration/New-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRemoteAssistancePartner.md index d546d0e022361..5d83ecb888143 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRemoteAssistancePartner.md @@ -47,6 +47,14 @@ This cmdlet has the following aliases, Create a new remoteAssistancePartner object. +**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.Administration/New-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md index 19d7f7a84de60..0b9b17567a552 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Create new navigation property to resourceOperations for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md index 53181f96c7a78..5bdf23338c230 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md @@ -47,6 +47,14 @@ This cmdlet has the following aliases, Create new navigation property to roleAssignments for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md index dc17ce9d57dd7..1f43371e227ba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Create new navigation property to roleDefinitions for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md index c7685d32f0ab1..2a36bddbcca67 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -70,6 +70,14 @@ This cmdlet has the following aliases, Create new navigation property to roleAssignments for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md index 1e68afffe3879..b22bf52063d73 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md @@ -49,6 +49,14 @@ This cmdlet has the following aliases, Create new navigation property to termsAndConditions 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.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md index e3e48bad0c2b6..8507d8c85d48e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -71,6 +71,14 @@ This cmdlet has the following aliases, Create new navigation property to acceptanceStatuses 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.Administration/New-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md index da20543624c57..27aac63c9ae59 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md @@ -68,6 +68,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, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md index c257801fab40c..263b1028a23b3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -50,6 +50,14 @@ This cmdlet has the following aliases, Create a new cloudPcDeviceImage object. Upload a custom OS image that you can later provision on Cloud PCs. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index f3f71b0a5c03a..db4b32180cca7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -54,6 +54,14 @@ This cmdlet has the following aliases, Create a new cloudPcProvisioningPolicy object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md index 014ec3066b7c3..c3a1278231de2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md @@ -48,6 +48,14 @@ This cmdlet has the following aliases, Create a new cloudPcUserSetting object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md index c5fe44f51a691..a39ed225cb053 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property auditEvents for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementApps.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementApps.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md index 906e6a0474341..5018aabf9bc90 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Delete navigation property complianceManagementPartners 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.Administration/Remove-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md index c21e261cc18ad..772576ceb8782 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property exchangeConnectors 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.Administration/Remove-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md index 4c0baa04c365f..02bfb3a353df8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property iosUpdateStatuses for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md index 6b68ef7e7d5b9..6a9c2ec1d9698 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Delete navigation property mobileThreatDefenseConnectors 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.Administration/Remove-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md index ad23261d1803e..f9caf1b1ca10a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property deviceManagementPartners 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.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md index 23f98777a242d..139d7c86ded72 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Deletes a remoteAssistancePartner. +**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.Administration/Remove-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md index f9eaaa83939ea..e5bdfdcbb6aa5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property resourceOperations for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md index 7ba14e6716f98..a2baa447cacde 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property roleAssignments for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md index 816fa23855e8d..ed0cc4a336029 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property roleDefinitions for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md index 41ec3e96c6c80..e109d4f13b5a7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete navigation property roleAssignments for deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md index 12f50d2cc0c1e..ffbf5eb4164f7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md @@ -44,6 +44,14 @@ This cmdlet has the following aliases, Delete navigation property termsAndConditions 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.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md index c75d9a13536b1..00024ac8d93ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Delete navigation property acceptanceStatuses 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.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md index 223fa5e28d7cd..983d06169c991 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.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, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md index 0c2d8ae22cf2b..4ecf6e7924e79 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Delete a cloudPcDeviceImage object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 2a9ecb5feffc5..5cf9130eed886 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -47,6 +47,14 @@ This cmdlet has the following aliases, Delete a cloudPcProvisioningPolicy object. You can’t delete a policy that’s in use. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md index 70be03e0e6017..e339a79f0a75c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Delete a cloudPcUserSetting object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md index d048623a640c8..d9c31f588fefb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md @@ -69,6 +69,14 @@ This cmdlet has the following aliases, Rename a specific cloudPC object. Use this API to update the displayName of a Cloud PC entity. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md index b2622acab7ceb..d6863da4c62e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Upgrade or downgrade an existing Cloud PC to a configuration with a new virtual CPU (vCPU) and storage size. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md index affb3817fab9d..6069707038083 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md @@ -45,6 +45,14 @@ This cmdlet has the following aliases, Reboot a specific cloudPC object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md index 58767a36fcf99..715f6355a9a5e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md @@ -69,6 +69,14 @@ This cmdlet has the following aliases, Restore a specific cloudPC object to a previous state from a snapshot. Use this API to trigger a remote action that restores a Cloud PC device to a previous state. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 99e098556b0b2..3921d3a70daea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -70,6 +70,14 @@ This cmdlet has the following aliases, Assign a cloudPcProvisioningPolicy to user groups. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md index 7ba3290aefe66..8c06869c0d8d6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Assign a cloudPcUserSetting to user groups. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md index a90098efec986..51a22ef0ae2bc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md @@ -51,6 +51,14 @@ The grace period is triggered when the Cloud PC license is removed or the provis It allows users to access Cloud PCs for up to seven days before deprovisioning occurs. Ending the grace period immediately deprovisions the Cloud PC without waiting the seven days. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md index 8c1261fda38ed..a4d7b5a9e21b7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Invoke action sync +**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.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md index d4fad35cead6d..8e1f4dfafc5f7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md @@ -48,6 +48,14 @@ This cmdlet has the following aliases, Update the navigation property applePushNotificationCertificate 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.Administration/Update-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md index 1e2b9d3e46acd..df5202525a5a2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md @@ -72,6 +72,14 @@ This cmdlet has the following aliases, Update the navigation property auditEvents in deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementApps.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementApps.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md index fafc5eb008702..b85094b20ee5c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md @@ -80,6 +80,14 @@ This cmdlet has the following aliases, Update the navigation property complianceManagementPartners 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.Administration/Update-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementExchangeConnector.md index ba80902749e62..e84088e06be81 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementExchangeConnector.md @@ -74,6 +74,14 @@ This cmdlet has the following aliases, Update the navigation property exchangeConnectors 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.Administration/Update-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md index 45f9479646d2f..cab2415879bb5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md @@ -72,6 +72,14 @@ This cmdlet has the following aliases, Update the navigation property iosUpdateStatuses in deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md index b36ce09e4ba92..24f6bf2f2d25f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md @@ -81,6 +81,14 @@ This cmdlet has the following aliases, Update the navigation property mobileThreatDefenseConnectors 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.Administration/Update-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md index 5e2209425916f..a06a44646f365 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md @@ -76,6 +76,14 @@ This cmdlet has the following aliases, Update the navigation property deviceManagementPartners 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.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md index 677e3af5a260c..25f59f1bc12d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md @@ -71,6 +71,14 @@ This cmdlet has the following aliases, Update the properties of a remoteAssistancePartner object. +**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.Administration/Update-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md index 7903d90945b5e..58c6b1c585054 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md @@ -66,6 +66,14 @@ This cmdlet has the following aliases, Update the navigation property resourceOperations in deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md index 4914744272db7..38819897d8976 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md @@ -68,6 +68,14 @@ This cmdlet has the following aliases, Update the navigation property roleAssignments in deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md index d60aa0b571dfa..a4006779e3eea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md @@ -70,6 +70,14 @@ This cmdlet has the following aliases, Update the navigation property roleDefinitions in deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md index 3c680d8927fff..7baed5cd95d69 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -70,6 +70,14 @@ This cmdlet has the following aliases, Update the navigation property roleAssignments in deviceManagement +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md index 79f9642dab474..f694e07d19e4d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md @@ -74,6 +74,14 @@ This cmdlet has the following aliases, Update the navigation property termsAndConditions in 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.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md index a8d76afd3afa0..5691e6f2dd1d5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -73,6 +73,14 @@ This cmdlet has the following aliases, Update the navigation property acceptanceStatuses in 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.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md index 72a96990cfc3c..d567edb8e718f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md @@ -69,6 +69,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, | +| Delegated (personal Microsoft account) | Not supported | +| Application | DeviceManagementServiceConfig.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md index 1e6007906c5e2..90b7094319c15 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md @@ -70,6 +70,14 @@ This cmdlet has the following aliases, Update the Active Directory domain password for a successful cloudPcOnPremisesConnection. This API is supported when the type of the cloudPcOnPremisesConnection object is hybridAzureADJoin. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index c43e373562e76..b06330c758af2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -85,6 +85,14 @@ This cmdlet has the following aliases, Update the properties of a cloudPcProvisioningPolicy object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | CloudPC.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | CloudPC.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 From 25cd9965990f4f997de58cb139da74dec1085bac Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:27:48 +0000 Subject: [PATCH 13/17] Updated metadata parameters --- .../Get-MgDeviceManagementApplePushNotificationCertificate.md | 3 +++ .../Get-MgDeviceManagementAuditEvent.md | 3 +++ .../Get-MgDeviceManagementAuditEventCount.md | 3 +++ .../Get-MgDeviceManagementComplianceManagementPartner.md | 3 +++ .../Get-MgDeviceManagementComplianceManagementPartnerCount.md | 3 +++ .../Get-MgDeviceManagementExchangeConnector.md | 3 +++ .../Get-MgDeviceManagementExchangeConnectorCount.md | 3 +++ .../Get-MgDeviceManagementIoUpdateStatus.md | 3 +++ .../Get-MgDeviceManagementIoUpdateStatusCount.md | 3 +++ .../Get-MgDeviceManagementMobileThreatDefenseConnector.md | 3 +++ .../Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md | 3 +++ .../Get-MgDeviceManagementPartner.md | 3 +++ .../Get-MgDeviceManagementPartnerCount.md | 3 +++ .../Get-MgDeviceManagementRemoteAssistancePartner.md | 3 +++ .../Get-MgDeviceManagementRemoteAssistancePartnerCount.md | 3 +++ .../Get-MgDeviceManagementResourceOperation.md | 3 +++ .../Get-MgDeviceManagementResourceOperationCount.md | 3 +++ .../Get-MgDeviceManagementRoleAssignment.md | 3 +++ .../Get-MgDeviceManagementRoleAssignmentCount.md | 3 +++ .../Get-MgDeviceManagementRoleAssignmentRoleDefinition.md | 3 +++ .../Get-MgDeviceManagementRoleDefinition.md | 3 +++ .../Get-MgDeviceManagementRoleDefinitionCount.md | 3 +++ .../Get-MgDeviceManagementRoleDefinitionRoleAssignment.md | 3 +++ .../Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md | 3 +++ ...viceManagementRoleDefinitionRoleAssignmentRoleDefinition.md | 3 +++ .../Get-MgDeviceManagementTermAndCondition.md | 3 +++ .../Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md | 3 +++ ...-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md | 3 +++ ...nagementTermAndConditionAcceptanceStatusTermAndCondition.md | 3 +++ .../Get-MgDeviceManagementTermAndConditionAssignment.md | 3 +++ .../Get-MgDeviceManagementTermAndConditionAssignmentCount.md | 3 +++ .../Get-MgDeviceManagementTermAndConditionCount.md | 3 +++ .../Get-MgDeviceManagementVirtualEndpoint.md | 3 +++ .../Get-MgDeviceManagementVirtualEndpointAuditEvent.md | 3 +++ .../Get-MgDeviceManagementVirtualEndpointAuditEventCount.md | 3 +++ .../Get-MgDeviceManagementVirtualEndpointCloudPc.md | 3 +++ .../Get-MgDeviceManagementVirtualEndpointCloudPcCount.md | 3 +++ .../Get-MgDeviceManagementVirtualEndpointDeviceImage.md | 3 +++ .../Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md | 3 +++ .../Get-MgDeviceManagementVirtualEndpointGalleryImage.md | 3 +++ .../Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md | 3 +++ ...Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md | 3 +++ ...gDeviceManagementVirtualEndpointOnPremiseConnectionCount.md | 3 +++ .../Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md | 3 +++ ...iceManagementVirtualEndpointProvisioningPolicyAssignment.md | 3 +++ ...tVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md | 3 +++ ...ualEndpointProvisioningPolicyAssignmentAssignedUserCount.md | 3 +++ ...ntProvisioningPolicyAssignmentAssignedUserMailboxSetting.md | 3 +++ ...ningPolicyAssignmentAssignedUserServiceProvisioningError.md | 3 +++ ...olicyAssignmentAssignedUserServiceProvisioningErrorCount.md | 3 +++ ...nagementVirtualEndpointProvisioningPolicyAssignmentCount.md | 3 +++ ...MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md | 3 +++ .../Get-MgDeviceManagementVirtualEndpointReport.md | 3 +++ .../Get-MgDeviceManagementVirtualEndpointUserSetting.md | 3 +++ ...t-MgDeviceManagementVirtualEndpointUserSettingAssignment.md | 3 +++ ...eviceManagementVirtualEndpointUserSettingAssignmentCount.md | 3 +++ .../Get-MgDeviceManagementVirtualEndpointUserSettingCount.md | 3 +++ .../New-MgDeviceManagementAuditEvent.md | 3 +++ .../New-MgDeviceManagementComplianceManagementPartner.md | 3 +++ .../New-MgDeviceManagementExchangeConnector.md | 3 +++ .../New-MgDeviceManagementIoUpdateStatus.md | 3 +++ .../New-MgDeviceManagementMobileThreatDefenseConnector.md | 3 +++ .../New-MgDeviceManagementPartner.md | 3 +++ .../New-MgDeviceManagementRemoteAssistancePartner.md | 3 +++ .../New-MgDeviceManagementResourceOperation.md | 3 +++ .../New-MgDeviceManagementRoleAssignment.md | 3 +++ .../New-MgDeviceManagementRoleDefinition.md | 3 +++ .../New-MgDeviceManagementRoleDefinitionRoleAssignment.md | 3 +++ .../New-MgDeviceManagementTermAndCondition.md | 3 +++ .../New-MgDeviceManagementTermAndConditionAcceptanceStatus.md | 3 +++ .../New-MgDeviceManagementTermAndConditionAssignment.md | 3 +++ .../New-MgDeviceManagementVirtualEndpointDeviceImage.md | 3 +++ .../New-MgDeviceManagementVirtualEndpointGalleryImage.md | 3 +++ ...New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md | 3 +++ .../New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md | 3 +++ ...iceManagementVirtualEndpointProvisioningPolicyAssignment.md | 3 +++ .../New-MgDeviceManagementVirtualEndpointUserSetting.md | 3 +++ ...w-MgDeviceManagementVirtualEndpointUserSettingAssignment.md | 3 +++ ...emove-MgDeviceManagementApplePushNotificationCertificate.md | 3 +++ .../Remove-MgDeviceManagementAuditEvent.md | 3 +++ .../Remove-MgDeviceManagementComplianceManagementPartner.md | 3 +++ .../Remove-MgDeviceManagementExchangeConnector.md | 3 +++ .../Remove-MgDeviceManagementIoUpdateStatus.md | 3 +++ .../Remove-MgDeviceManagementMobileThreatDefenseConnector.md | 3 +++ .../Remove-MgDeviceManagementPartner.md | 3 +++ .../Remove-MgDeviceManagementRemoteAssistancePartner.md | 3 +++ .../Remove-MgDeviceManagementResourceOperation.md | 3 +++ .../Remove-MgDeviceManagementRoleAssignment.md | 3 +++ .../Remove-MgDeviceManagementRoleDefinition.md | 3 +++ .../Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md | 3 +++ .../Remove-MgDeviceManagementTermAndCondition.md | 3 +++ ...emove-MgDeviceManagementTermAndConditionAcceptanceStatus.md | 3 +++ .../Remove-MgDeviceManagementTermAndConditionAssignment.md | 3 +++ .../Remove-MgDeviceManagementVirtualEndpointDeviceImage.md | 3 +++ .../Remove-MgDeviceManagementVirtualEndpointGalleryImage.md | 3 +++ ...ove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md | 3 +++ ...move-MgDeviceManagementVirtualEndpointProvisioningPolicy.md | 3 +++ ...iceManagementVirtualEndpointProvisioningPolicyAssignment.md | 3 +++ .../Remove-MgDeviceManagementVirtualEndpointReport.md | 3 +++ .../Remove-MgDeviceManagementVirtualEndpointUserSetting.md | 3 +++ ...e-MgDeviceManagementVirtualEndpointUserSettingAssignment.md | 3 +++ ...pdate-MgDeviceManagementApplePushNotificationCertificate.md | 3 +++ .../Update-MgDeviceManagementAuditEvent.md | 3 +++ .../Update-MgDeviceManagementComplianceManagementPartner.md | 3 +++ .../Update-MgDeviceManagementExchangeConnector.md | 3 +++ .../Update-MgDeviceManagementIoUpdateStatus.md | 3 +++ .../Update-MgDeviceManagementMobileThreatDefenseConnector.md | 3 +++ .../Update-MgDeviceManagementPartner.md | 3 +++ .../Update-MgDeviceManagementRemoteAssistancePartner.md | 3 +++ .../Update-MgDeviceManagementResourceOperation.md | 3 +++ .../Update-MgDeviceManagementRoleAssignment.md | 3 +++ .../Update-MgDeviceManagementRoleDefinition.md | 3 +++ .../Update-MgDeviceManagementRoleDefinitionRoleAssignment.md | 3 +++ .../Update-MgDeviceManagementTermAndCondition.md | 3 +++ ...pdate-MgDeviceManagementTermAndConditionAcceptanceStatus.md | 3 +++ .../Update-MgDeviceManagementTermAndConditionAssignment.md | 3 +++ .../Update-MgDeviceManagementVirtualEndpointDeviceImage.md | 3 +++ .../Update-MgDeviceManagementVirtualEndpointGalleryImage.md | 3 +++ ...ate-MgDeviceManagementVirtualEndpointOnPremiseConnection.md | 3 +++ ...date-MgDeviceManagementVirtualEndpointProvisioningPolicy.md | 3 +++ ...iceManagementVirtualEndpointProvisioningPolicyAssignment.md | 3 +++ ...ntProvisioningPolicyAssignmentAssignedUserMailboxSetting.md | 3 +++ .../Update-MgDeviceManagementVirtualEndpointReport.md | 3 +++ .../Update-MgDeviceManagementVirtualEndpointUserSetting.md | 3 +++ ...e-MgDeviceManagementVirtualEndpointUserSettingAssignment.md | 3 +++ 125 files changed, 375 insertions(+) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md index 83b513002b8e1..98dcf1f3c6c12 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementApplePushNotificationCertificate Apple push notification certificate. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementApplePushNotificationCertificate](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementApplePushNotificationCertificate?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md index 97f3b17fd44b3..4542b9a7c34f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementAuditEvent The Audit Events +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementAuditEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementAuditEvent?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md index 03acf5b8c466b..1a4cd2a29ba10 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementAuditEventCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementAuditEventCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementAuditEventCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md index 439fe0a0e0ab0..a10cc0ff48cdc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementComplianceManagementPartner The list of Compliance Management Partners configured by the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementComplianceManagementPartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementComplianceManagementPartner?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md index 279742be964e2..91435c5142f5a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementComplianceManagementPartnerCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementComplianceManagementPartnerCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementComplianceManagementPartnerCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md index 0566b463caac8..1f7588ba5c109 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementExchangeConnector The list of Exchange Connectors configured by the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementExchangeConnector](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementExchangeConnector?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.md index 1464489d24256..7961e2b048910 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementExchangeConnectorCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementExchangeConnectorCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementExchangeConnectorCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md index 73a799d93041f..b371db907d57d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementIoUpdateStatus The IOS software update installation statuses for this account. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementIoUpdateStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementIoUpdateStatus?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md index 9285f86166a2d..a71004c9f3a56 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementIoUpdateStatusCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementIoUpdateStatusCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementIoUpdateStatusCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md index 01447559e8ab7..5d46aa496ddae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementMobileThreatDefenseConnector The list of Mobile threat Defense connectors configured by the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementMobileThreatDefenseConnector](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementMobileThreatDefenseConnector?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md index 1d4f2046ad00c..c3899b92843c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementMobileThreatDefenseConnectorCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementMobileThreatDefenseConnectorCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementMobileThreatDefenseConnectorCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md index 1e2dfffb46d7f..7cac0379d2d7c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementPartner The list of Device Management Partners configured by the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementPartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementPartner?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.md index 3071551917e84..a30f509ee961a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementPartnerCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementPartnerCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementPartnerCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md index 56e5a11d524bb..25c34d92b85f5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementRemoteAssistancePartner Read properties and relationships of the remoteAssistancePartner object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRemoteAssistancePartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRemoteAssistancePartner?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md index 24c93207e899c..a795e57c0666d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementRemoteAssistancePartnerCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRemoteAssistancePartnerCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRemoteAssistancePartnerCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md index 55627567539e5..f3371749bba69 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementResourceOperation The Resource Operations. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementResourceOperation](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementResourceOperation?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md index 1bd62d597c7e2..d775a9a649017 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementResourceOperationCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementResourceOperationCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementResourceOperationCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md index a0fdaf1e30bc5..7b8fe2fe8a22d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementRoleAssignment The Role Assignments. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRoleAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md index 8db666def24de..9ccc784ecce80 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementRoleAssignmentCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRoleAssignmentCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRoleAssignmentCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md index 23fd16429bf70..5fc631fb5a127 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementRoleAssignmentRoleDefinition Indicates the role definition for this role assignment. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRoleAssignmentRoleDefinition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRoleAssignmentRoleDefinition?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md index 5fcd3a0d489f1..ef509d976e0f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementRoleDefinition The Role Definitions. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRoleDefinition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRoleDefinition?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md index d9d8cf88b76c2..a2b902c2f0f28 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementRoleDefinitionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRoleDefinitionCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRoleDefinitionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md index de24d7867128d..f6717682fa2c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementRoleDefinitionRoleAssignment List of Role assignments for this role definition. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRoleDefinitionRoleAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRoleDefinitionRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md index c66466c1a8813..c2ae1088837ba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRoleDefinitionRoleAssignmentCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRoleDefinitionRoleAssignmentCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md index 5fdbef967fa5d..0426bf439f547 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition Indicates the role definition for this role assignment. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md index 8275057187b0e..d8674a3ee4b3a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementTermAndCondition The terms and conditions associated with device management of the company. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementTermAndCondition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementTermAndCondition?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md index 729071006b42e..f5f967dec43e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementTermAndConditionAcceptanceStatus The list of acceptance statuses for this T&C policy. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatus?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md index 8f104b4a4c1a8..e41c7af9d9405 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatusCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatusCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md index 678fa360c4277..049351f04a940 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition Navigation link to the terms and conditions that are assigned. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md index d9fe06b8fbf51..e07ebebe849e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementTermAndConditionAssignment The list of assignments for this T&C policy. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementTermAndConditionAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementTermAndConditionAssignment?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md index e450cc031e62c..77edd04c3736a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementTermAndConditionAssignmentCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementTermAndConditionAssignmentCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementTermAndConditionAssignmentCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md index 03bd4ec7440a2..47b2ced9d9b97 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementTermAndConditionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementTermAndConditionCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementTermAndConditionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.md index 034a5df414df8..0887ef15914c5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpoint Get virtualEndpoint from deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpoint](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpoint?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md index f9938933903a5..acfc5fffb5176 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpointAuditEvent Read the properties and relationships of a cloudPcAuditEvent object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointAuditEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointAuditEvent?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md index 04d4ce96e0481..a6570820e6933 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpointAuditEventCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointAuditEventCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointAuditEventCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md index c49bce58030d9..7c484ea9bd62a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpointCloudPc Read the properties and relationships of a specific cloudPC object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointCloudPc](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointCloudPc?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md index 714256d2e8a6b..6c44020f52f4b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpointCloudPcCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointCloudPcCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointCloudPcCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md index 03aa8913ce6ce..b1836932ed537 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpointDeviceImage Read the properties and relationships of a specific cloudPcDeviceImage object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointDeviceImage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointDeviceImage?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md index c672fa90b268e..0172d30785d7b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpointDeviceImageCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointDeviceImageCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointDeviceImageCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md index 29e1d905be634..ba092142203f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpointGalleryImage Read the properties and relationships of a specific cloudPcGalleryImage object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointGalleryImage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointGalleryImage?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md index 21d897583e89f..a11a827199998 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpointGalleryImageCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointGalleryImageCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointGalleryImageCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index 8eb09c62a3f46..95f44a81442a7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpointOnPremiseConnection Read the properties and relationships of the cloudPcOnPremisesConnection object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md index 68e38cbb42985..12765a99d8f9b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnectionCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnectionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 89561a746e1c1..9e6e65c408798 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicy Read the properties and relationships of a cloudPcProvisioningPolicy object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index 88987e998f000..8ccc6cb011adb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -18,6 +18,9 @@ Represents the set of Microsoft 365 groups and security groups in Microsoft Entr Returned only on $expand. For an example about how to get the assignments relationship, see Get cloudPcProvisioningPolicy. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md index 0b09e8d34ea8f..209041714a163 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md @@ -18,6 +18,9 @@ This list of users is computed based on assignments, licenses, group memberships Read-only. Supports$expand. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md index e4a2a48e80338..be6c062ffe24a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssigned Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md index 633f7cef1a7b6..183b43909a324 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md @@ -17,6 +17,9 @@ Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Requires $select to retrieve. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md index e37c8e3b385ba..cb1776be442ee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md @@ -16,6 +16,9 @@ title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssigned Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md index b47543fe20f7f..b2bdc58dfde36 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssigned Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md index 03af263269fe1..373e3f8c09ff4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md index b31bce863df58..08c79ff5a21a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md index 2236830c979a8..7456b4d87c21c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md @@ -16,6 +16,9 @@ title: Get-MgDeviceManagementVirtualEndpointReport Cloud PC-related reports. Read-only. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointReport](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointReport?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSetting.md index 5577937ed3429..af4f0702cddab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSetting.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpointUserSetting Read the properties and relationships of a cloudPcUserSetting object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointUserSetting](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointUserSetting?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index f4e1833c05786..6da73b97e13a4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -17,6 +17,9 @@ Represents the set of Microsoft 365 groups and security groups in Microsoft Entr Returned only on $expand. For an example, see Get cloudPcUserSetting. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md index 4b263345d6525..31fa1df6fba90 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignmentCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignmentCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md index 2bfd29332fabe..1915848adbf59 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md @@ -15,6 +15,9 @@ title: Get-MgDeviceManagementVirtualEndpointUserSettingCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaDeviceManagementVirtualEndpointUserSettingCount](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Get-MgBetaDeviceManagementVirtualEndpointUserSettingCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md index 88fb10f2385eb..32d408f5cc7c6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementAuditEvent Create new navigation property to auditEvents for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementAuditEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementAuditEvent?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md index 8a1118f4f15a8..74029abc3e707 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementComplianceManagementPartner Create new navigation property to complianceManagementPartners for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementComplianceManagementPartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementComplianceManagementPartner?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementExchangeConnector.md index 1bf70e7edaff6..115ab0ae3f217 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementExchangeConnector.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementExchangeConnector Create new navigation property to exchangeConnectors for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementExchangeConnector](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementExchangeConnector?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md index 00fa85f95704d..20e19b3a1c1bf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementIoUpdateStatus Create new navigation property to iosUpdateStatuses for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementIoUpdateStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementIoUpdateStatus?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md index b2f99d589ae97..8bef5779192aa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementMobileThreatDefenseConnector Create new navigation property to mobileThreatDefenseConnectors for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementMobileThreatDefenseConnector](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementMobileThreatDefenseConnector?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md index 760fe44096d3a..903fe7dac8516 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementPartner Create new navigation property to deviceManagementPartners for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementPartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementPartner?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRemoteAssistancePartner.md index 5d83ecb888143..cb3ecc936b864 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRemoteAssistancePartner.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementRemoteAssistancePartner Create a new remoteAssistancePartner object. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementRemoteAssistancePartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementRemoteAssistancePartner?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md index 0b9b17567a552..43fa3ee39645f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementResourceOperation Create new navigation property to resourceOperations for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementResourceOperation](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementResourceOperation?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md index 5bdf23338c230..21309f2692eff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementRoleAssignment Create new navigation property to roleAssignments for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementRoleAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md index 1f43371e227ba..ec6f6cfd41d89 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementRoleDefinition Create new navigation property to roleDefinitions for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementRoleDefinition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementRoleDefinition?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md index 2a36bddbcca67..ed83be708e492 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementRoleDefinitionRoleAssignment Create new navigation property to roleAssignments for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementRoleDefinitionRoleAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementRoleDefinitionRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md index b22bf52063d73..426e0e2b81001 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementTermAndCondition Create new navigation property to termsAndConditions for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementTermAndCondition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementTermAndCondition?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md index 8507d8c85d48e..756f84dd1eabf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementTermAndConditionAcceptanceStatus Create new navigation property to acceptanceStatuses for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementTermAndConditionAcceptanceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementTermAndConditionAcceptanceStatus?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md index 27aac63c9ae59..eb8c73e692bb3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementTermAndConditionAssignment Create new navigation property to assignments for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementTermAndConditionAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementTermAndConditionAssignment?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md index 263b1028a23b3..f5ff66da26e01 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -16,6 +16,9 @@ title: New-MgDeviceManagementVirtualEndpointDeviceImage Create a new cloudPcDeviceImage object. Upload a custom OS image that you can later provision on Cloud PCs. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementVirtualEndpointDeviceImage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementVirtualEndpointDeviceImage?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md index 7e05e494e9298..0562932f0bd5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementVirtualEndpointGalleryImage Create new navigation property to galleryImages for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementVirtualEndpointGalleryImage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementVirtualEndpointGalleryImage?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index 8564b619a93ce..99e1bf7816e6d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementVirtualEndpointOnPremiseConnection Create a new cloudPcOnPremisesConnection object for provisioning Cloud PCs. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index db4b32180cca7..972dd25df1abe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementVirtualEndpointProvisioningPolicy Create a new cloudPcProvisioningPolicy object. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index 36ed06591cc4c..ab02e0e7f12f8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment Create new navigation property to assignments for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md index c3a1278231de2..80df07bf5c4dc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementVirtualEndpointUserSetting Create a new cloudPcUserSetting object. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementVirtualEndpointUserSetting](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementVirtualEndpointUserSetting?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index da667fba3dc9e..907ad91e12022 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -15,6 +15,9 @@ title: New-MgDeviceManagementVirtualEndpointUserSettingAssignment Create new navigation property to assignments for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/New-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.md index 604c3051793f9..1a47f73441a75 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementApplePushNotificationCertificate Delete navigation property applePushNotificationCertificate for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementApplePushNotificationCertificate](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementApplePushNotificationCertificate?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md index a39ed225cb053..2394bac8b9f54 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementAuditEvent Delete navigation property auditEvents for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementAuditEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementAuditEvent?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md index 5018aabf9bc90..51544093dd316 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementComplianceManagementPartner Delete navigation property complianceManagementPartners for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementComplianceManagementPartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementComplianceManagementPartner?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md index 772576ceb8782..71f413fdb005b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementExchangeConnector Delete navigation property exchangeConnectors for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementExchangeConnector](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementExchangeConnector?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md index 02bfb3a353df8..de5ba5a7e7d4c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementIoUpdateStatus Delete navigation property iosUpdateStatuses for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementIoUpdateStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementIoUpdateStatus?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md index 6a9c2ec1d9698..7a19907d62f19 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementMobileThreatDefenseConnector Delete navigation property mobileThreatDefenseConnectors for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementMobileThreatDefenseConnector](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementMobileThreatDefenseConnector?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md index f9caf1b1ca10a..d8308e2d0ff56 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementPartner Delete navigation property deviceManagementPartners for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementPartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementPartner?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md index 139d7c86ded72..a6eab8cd9beb6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementRemoteAssistancePartner Deletes a remoteAssistancePartner. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementRemoteAssistancePartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementRemoteAssistancePartner?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md index e5bdfdcbb6aa5..ce66374b33494 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementResourceOperation Delete navigation property resourceOperations for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementResourceOperation](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementResourceOperation?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md index a2baa447cacde..a4a9c2b96dc4f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementRoleAssignment Delete navigation property roleAssignments for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementRoleAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md index ed0cc4a336029..569e5479c4f00 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementRoleDefinition Delete navigation property roleDefinitions for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementRoleDefinition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementRoleDefinition?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md index e109d4f13b5a7..6b08292f5a458 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementRoleDefinitionRoleAssignment Delete navigation property roleAssignments for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementRoleDefinitionRoleAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementRoleDefinitionRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md index ffbf5eb4164f7..8f16d3c6f2803 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementTermAndCondition Delete navigation property termsAndConditions for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementTermAndCondition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementTermAndCondition?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md index 00024ac8d93ec..f07e9e9c52f2b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementTermAndConditionAcceptanceStatus Delete navigation property acceptanceStatuses for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementTermAndConditionAcceptanceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementTermAndConditionAcceptanceStatus?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md index 983d06169c991..257fc10aa7a80 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementTermAndConditionAssignment Delete navigation property assignments for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementTermAndConditionAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementTermAndConditionAssignment?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md index 4ecf6e7924e79..cd551fc8cc6c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementVirtualEndpointDeviceImage Delete a cloudPcDeviceImage object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementVirtualEndpointDeviceImage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementVirtualEndpointDeviceImage?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md index ad6b8cf0b1f93..89980ab66ed18 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementVirtualEndpointGalleryImage Delete navigation property galleryImages for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementVirtualEndpointGalleryImage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementVirtualEndpointGalleryImage?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index a8b5828ef7264..ad2938fb84604 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -17,6 +17,9 @@ Delete a specific cloudPcOnPremisesConnection object. When you delete an Azure network connection, permissions to the service are removed from the specified Azure resources. You cannot delete an Azure network connection when it's in use, as indicated by the inUse property. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 5cf9130eed886..10e2686567d06 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -16,6 +16,9 @@ title: Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy Delete a cloudPcProvisioningPolicy object. You can’t delete a policy that’s in use. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index 6f9ffbd82dc64..801171de47886 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment Delete navigation property assignments for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.md index e3d850749af15..8b3b63b159a3c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementVirtualEndpointReport Delete navigation property report for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementVirtualEndpointReport](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementVirtualEndpointReport?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md index e339a79f0a75c..8dc876eceb361 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementVirtualEndpointUserSetting Delete a cloudPcUserSetting object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementVirtualEndpointUserSetting](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementVirtualEndpointUserSetting?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index 62e31d0901f55..1d2754d95747b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -15,6 +15,9 @@ title: Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment Delete navigation property assignments for deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Remove-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md index 8e1f4dfafc5f7..41ce7a1c8cb12 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementApplePushNotificationCertificate Update the navigation property applePushNotificationCertificate in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementApplePushNotificationCertificate](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementApplePushNotificationCertificate?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md index df5202525a5a2..4408e951e5384 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementAuditEvent Update the navigation property auditEvents in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementAuditEvent](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementAuditEvent?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md index b85094b20ee5c..b6c2f2c278cbb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementComplianceManagementPartner Update the navigation property complianceManagementPartners in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementComplianceManagementPartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementComplianceManagementPartner?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementExchangeConnector.md index e84088e06be81..800dd5a705d90 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementExchangeConnector.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementExchangeConnector Update the navigation property exchangeConnectors in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementExchangeConnector](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementExchangeConnector?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md index cab2415879bb5..905728ef881da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementIoUpdateStatus Update the navigation property iosUpdateStatuses in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementIoUpdateStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementIoUpdateStatus?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md index 24f6bf2f2d25f..3447125c477f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementMobileThreatDefenseConnector Update the navigation property mobileThreatDefenseConnectors in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementMobileThreatDefenseConnector](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementMobileThreatDefenseConnector?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md index a06a44646f365..2e814d02859aa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementPartner Update the navigation property deviceManagementPartners in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementPartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementPartner?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md index 25f59f1bc12d0..183e69a09afad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementRemoteAssistancePartner Update the properties of a remoteAssistancePartner object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementRemoteAssistancePartner](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementRemoteAssistancePartner?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md index 58c6b1c585054..a23699018efe1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementResourceOperation Update the navigation property resourceOperations in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementResourceOperation](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementResourceOperation?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md index 38819897d8976..ce6bdbfe29155 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementRoleAssignment Update the navigation property roleAssignments in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementRoleAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md index a4006779e3eea..84b3f9a26e29e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementRoleDefinition Update the navigation property roleDefinitions in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementRoleDefinition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementRoleDefinition?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md index 7baed5cd95d69..c3adc8321e1f7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementRoleDefinitionRoleAssignment Update the navigation property roleAssignments in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementRoleDefinitionRoleAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementRoleDefinitionRoleAssignment?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md index f694e07d19e4d..5edbeb3b9f694 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementTermAndCondition Update the navigation property termsAndConditions in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementTermAndCondition](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementTermAndCondition?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md index 5691e6f2dd1d5..1ba90c230a0e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementTermAndConditionAcceptanceStatus Update the navigation property acceptanceStatuses in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementTermAndConditionAcceptanceStatus](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementTermAndConditionAcceptanceStatus?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md index d567edb8e718f..07e8631603213 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementTermAndConditionAssignment Update the navigation property assignments in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementTermAndConditionAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementTermAndConditionAssignment?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md index 1166e199859a0..cd7068b05ea6e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementVirtualEndpointDeviceImage Update the navigation property deviceImages in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementVirtualEndpointDeviceImage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementVirtualEndpointDeviceImage?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md index 6da301b4e6eda..4ceedcb25cc3d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementVirtualEndpointGalleryImage Update the navigation property galleryImages in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementVirtualEndpointGalleryImage](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementVirtualEndpointGalleryImage?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index 26d7f41f17410..cf80f9f6edc1d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementVirtualEndpointOnPremiseConnection Update the properties of a cloudPcOnPremisesConnection object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index b06330c758af2..2bd248d2939df 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementVirtualEndpointProvisioningPolicy Update the properties of a cloudPcProvisioningPolicy object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index 855e616c222f5..e5b0e67760bb2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment Update the navigation property assignments in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md index 64adce0fef03d..e8d66711869e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssig Update property mailboxSettings value. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md index dac3025c30df3..54c48abfaf36e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementVirtualEndpointReport Update the navigation property report in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementVirtualEndpointReport](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementVirtualEndpointReport?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md index 162e48ff13abc..4bae12da9358c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementVirtualEndpointUserSetting Update the properties of a cloudPcUserSetting object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementVirtualEndpointUserSetting](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementVirtualEndpointUserSetting?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index d839cbf4f67e9..dc5cb813edb09 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -15,6 +15,9 @@ title: Update-MgDeviceManagementVirtualEndpointUserSettingAssignment Update the navigation property assignments in deviceManagement +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment](/powershell/module/Microsoft.Graph.Beta.DeviceManagement.Administration/Update-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) From eb93d190f3c648961c7307e669a7c7d9cfa2d4c3 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:27:55 +0000 Subject: [PATCH 14/17] Repaired examples and descriptions --- ...DeviceManagementRemoteAssistancePartner.md | 7 +++++- ...agementApplePushNotificationCertificate.md | 7 +++++- .../Get-MgDeviceManagementAuditEvent.md | 7 +++++- ...DeviceManagementAuditEventAuditCategory.md | 7 +++++- ...ceManagementComplianceManagementPartner.md | 7 +++++- ...Get-MgDeviceManagementExchangeConnector.md | 7 +++++- .../Get-MgDeviceManagementIoUpdateStatus.md | 7 +++++- ...eManagementMobileThreatDefenseConnector.md | 7 +++++- .../Get-MgDeviceManagementPartner.md | 7 +++++- ...DeviceManagementRemoteAssistancePartner.md | 7 +++++- ...Get-MgDeviceManagementResourceOperation.md | 7 +++++- .../Get-MgDeviceManagementRoleAssignment.md | 7 +++++- .../Get-MgDeviceManagementRoleDefinition.md | 7 +++++- ...eManagementRoleDefinitionRoleAssignment.md | 7 +++++- ...eDefinitionRoleAssignmentRoleDefinition.md | 11 +------- .../Get-MgDeviceManagementTermAndCondition.md | 7 +++++- ...agementTermAndConditionAcceptanceStatus.md | 7 +++++- ...iceManagementTermAndConditionAssignment.md | 7 +++++- ...viceManagementVirtualEndpointAuditEvent.md | 7 +++++- ...tualEndpointAuditEventAuditActivityType.md | 7 +++++- ...gDeviceManagementVirtualEndpointCloudPc.md | 16 +++++++++--- ...ementVirtualEndpointCloudPcLaunchDetail.md | 11 +------- ...iceManagementVirtualEndpointDeviceImage.md | 7 +++++- ...ntVirtualEndpointDeviceImageSourceImage.md | 7 +++++- ...ceManagementVirtualEndpointGalleryImage.md | 7 +++++- ...ementVirtualEndpointOnPremiseConnection.md | 16 +++++++++--- ...gementVirtualEndpointProvisioningPolicy.md | 25 +++++++++++++++---- ...dpointReportCloudPcRecommendationReport.md | 14 +++++++++-- ...iceManagementVirtualEndpointUserSetting.md | 16 +++++++++--- ...gementRemoteAssistancePartnerOnboarding.md | 7 +++++- ...shNotificationCertificateSigningRequest.md | 7 +++++- ...nDeviceManagementVirtualEndpointCloudPc.md | 7 +++++- ...tDeviceManagementVirtualEndpointCloudPc.md | 7 +++++- .../New-MgDeviceManagementAuditEvent.md | 7 +++++- ...ceManagementComplianceManagementPartner.md | 7 +++++- ...New-MgDeviceManagementExchangeConnector.md | 7 +++++- .../New-MgDeviceManagementIoUpdateStatus.md | 7 +++++- ...eManagementMobileThreatDefenseConnector.md | 7 +++++- .../New-MgDeviceManagementPartner.md | 7 +++++- ...DeviceManagementRemoteAssistancePartner.md | 7 +++++- ...New-MgDeviceManagementResourceOperation.md | 7 +++++- .../New-MgDeviceManagementRoleAssignment.md | 7 +++++- .../New-MgDeviceManagementRoleDefinition.md | 7 +++++- ...eManagementRoleDefinitionRoleAssignment.md | 7 +++++- .../New-MgDeviceManagementTermAndCondition.md | 7 +++++- ...agementTermAndConditionAcceptanceStatus.md | 7 +++++- ...iceManagementTermAndConditionAssignment.md | 7 +++++- ...iceManagementVirtualEndpointDeviceImage.md | 7 +++++- ...ementVirtualEndpointOnPremiseConnection.md | 7 +++++- ...gementVirtualEndpointProvisioningPolicy.md | 7 +++++- ...iceManagementVirtualEndpointUserSetting.md | 7 +++++- ...agementApplePushNotificationCertificate.md | 11 +------- .../Remove-MgDeviceManagementAuditEvent.md | 7 +++++- ...ceManagementComplianceManagementPartner.md | 7 +++++- ...ove-MgDeviceManagementExchangeConnector.md | 7 +++++- ...Remove-MgDeviceManagementIoUpdateStatus.md | 7 +++++- ...eManagementMobileThreatDefenseConnector.md | 7 +++++- .../Remove-MgDeviceManagementPartner.md | 7 +++++- ...DeviceManagementRemoteAssistancePartner.md | 7 +++++- ...ove-MgDeviceManagementResourceOperation.md | 7 +++++- ...Remove-MgDeviceManagementRoleAssignment.md | 7 +++++- ...Remove-MgDeviceManagementRoleDefinition.md | 7 +++++- ...eManagementRoleDefinitionRoleAssignment.md | 7 +++++- ...move-MgDeviceManagementTermAndCondition.md | 7 +++++- ...agementTermAndConditionAcceptanceStatus.md | 7 +++++- ...iceManagementTermAndConditionAssignment.md | 7 +++++- ...iceManagementVirtualEndpointDeviceImage.md | 7 +++++- ...ementVirtualEndpointOnPremiseConnection.md | 7 +++++- ...gementVirtualEndpointProvisioningPolicy.md | 7 +++++- ...iceManagementVirtualEndpointUserSetting.md | 7 +++++- ...gDeviceManagementVirtualEndpointCloudPc.md | 11 +------- ...gDeviceManagementVirtualEndpointCloudPc.md | 7 +++++- ...gDeviceManagementVirtualEndpointCloudPc.md | 7 +++++- ...gDeviceManagementVirtualEndpointCloudPc.md | 7 +++++- ...gementVirtualEndpointProvisioningPolicy.md | 7 +++++- ...iceManagementVirtualEndpointUserSetting.md | 7 +++++- ...lEndpointOnPremiseConnectionHealthCheck.md | 7 +++++- ...gementVirtualEndpointCloudPcGracePeriod.md | 7 +++++- ...agementApplePushNotificationCertificate.md | 7 +++++- .../Update-MgDeviceManagementAuditEvent.md | 7 +++++- ...ceManagementComplianceManagementPartner.md | 7 +++++- ...ate-MgDeviceManagementExchangeConnector.md | 7 +++++- ...Update-MgDeviceManagementIoUpdateStatus.md | 7 +++++- ...eManagementMobileThreatDefenseConnector.md | 7 +++++- .../Update-MgDeviceManagementPartner.md | 7 +++++- ...DeviceManagementRemoteAssistancePartner.md | 7 +++++- ...ate-MgDeviceManagementResourceOperation.md | 7 +++++- ...Update-MgDeviceManagementRoleAssignment.md | 7 +++++- ...Update-MgDeviceManagementRoleDefinition.md | 7 +++++- ...eManagementRoleDefinitionRoleAssignment.md | 7 +++++- ...date-MgDeviceManagementTermAndCondition.md | 7 +++++- ...agementTermAndConditionAcceptanceStatus.md | 7 +++++- ...iceManagementTermAndConditionAssignment.md | 7 +++++- ...ementVirtualEndpointOnPremiseConnection.md | 7 +++++- ...ointOnPremiseConnectionAdDomainPassword.md | 7 +++++- ...gementVirtualEndpointProvisioningPolicy.md | 7 +++++- ...iceManagementVirtualEndpointUserSetting.md | 7 +++++- 97 files changed, 603 insertions(+), 144 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md index b09034da03c64..9149b9f1dfa60 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md @@ -54,13 +54,18 @@ A request to remove the active TeamViewer connector | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Disconnect-MgDeviceManagementRemoteAssistancePartner -RemoteAssistancePartnerId $remoteAssistancePartnerId +``` +This example shows how to use the Disconnect-MgDeviceManagementRemoteAssistancePartner Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md index 98dcf1f3c6c12..4c4c56c2b5551 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md @@ -47,13 +47,18 @@ Apple push notification certificate. | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementApplePushNotificationCertificate +``` +This example shows how to use the Get-MgDeviceManagementApplePushNotificationCertificate Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md index 4542b9a7c34f1..8a2c0ee165f19 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md @@ -68,13 +68,18 @@ The Audit Events | Application | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementAuditEvent +``` +This example shows how to use the Get-MgDeviceManagementAuditEvent Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md index b1df0feebfa74..e457cd1740c40 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md @@ -44,13 +44,18 @@ Invoke function getAuditCategories | Application | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementAuditEventAuditCategory +``` +This example shows how to use the Get-MgDeviceManagementAuditEventAuditCategory Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md index a10cc0ff48cdc..ce61fd48e56ce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md @@ -69,13 +69,18 @@ The list of Compliance Management Partners configured by the tenant. | 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.Administration Get-MgDeviceManagementComplianceManagementPartner +``` +This example shows how to use the Get-MgDeviceManagementComplianceManagementPartner Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md index 1f7588ba5c109..44597ebc7b684 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md @@ -69,13 +69,18 @@ The list of Exchange Connectors configured by the tenant. | 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.Administration Get-MgDeviceManagementExchangeConnector +``` +This example shows how to use the Get-MgDeviceManagementExchangeConnector Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md index b371db907d57d..4732b63aad06e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md @@ -68,13 +68,18 @@ The IOS software update installation statuses for this account. | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementIoUpdateStatus +``` +This example shows how to use the Get-MgDeviceManagementIoUpdateStatus Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md index 5d46aa496ddae..29bcdbf22b89e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md @@ -69,13 +69,18 @@ The list of Mobile threat Defense connectors configured by the tenant. | 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.Administration Get-MgDeviceManagementMobileThreatDefenseConnector +``` +This example shows how to use the Get-MgDeviceManagementMobileThreatDefenseConnector Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md index 7cac0379d2d7c..7926e587df9d7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md @@ -68,13 +68,18 @@ The list of Device Management Partners configured by the tenant. | 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.Administration Get-MgDeviceManagementPartner +``` +This example shows how to use the Get-MgDeviceManagementPartner Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md index 25c34d92b85f5..6834bbe32a5b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md @@ -69,13 +69,18 @@ Read properties and relationships of the remoteAssistancePartner object. | 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.Administration Get-MgDeviceManagementRemoteAssistancePartner +``` +This example shows how to use the Get-MgDeviceManagementRemoteAssistancePartner Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md index f3371749bba69..c281fe5add224 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md @@ -68,13 +68,18 @@ The Resource Operations. | Application | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementResourceOperation +``` +This example shows how to use the Get-MgDeviceManagementResourceOperation Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md index 7b8fe2fe8a22d..ae9ba4d66782b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md @@ -69,13 +69,18 @@ The Role Assignments. | Application | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementRoleAssignment +``` +This example shows how to use the Get-MgDeviceManagementRoleAssignment Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md index ef509d976e0f6..4853fcbf6bc88 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md @@ -68,13 +68,18 @@ The Role Definitions. | Application | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementRoleDefinition +``` +This example shows how to use the Get-MgDeviceManagementRoleDefinition Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md index f6717682fa2c8..8d076eb19039f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -69,13 +69,18 @@ List of Role assignments for this role definition. | Application | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementRoleDefinitionRoleAssignment -RoleDefinitionId $roleDefinitionId +``` +This example shows how to use the Get-MgDeviceManagementRoleDefinitionRoleAssignment Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md index 0426bf439f547..b3fb2bbec599a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md @@ -57,16 +57,6 @@ Indicates the role definition for this role assignment. | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -428,5 +418,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md index d8674a3ee4b3a..3dfe4b7d080b3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md @@ -68,13 +68,18 @@ The terms and conditions associated with device management of the company. | Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementTermAndCondition +``` +This example shows how to use the Get-MgDeviceManagementTermAndCondition Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md index f5f967dec43e2..0111fa1cbe8c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -70,13 +70,18 @@ The list of acceptance statuses for this T&C policy. | Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementTermAndConditionAcceptanceStatus -TermsAndConditionsId $termsAndConditionsId +``` +This example shows how to use the Get-MgDeviceManagementTermAndConditionAcceptanceStatus Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md index e07ebebe849e9..3ca0a40dfd460 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md @@ -69,13 +69,18 @@ The list of assignments for this T&C policy. | Application | DeviceManagementServiceConfig.Read.All, DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementTermAndConditionAssignment -TermsAndConditionsId $termsAndConditionsId +``` +This example shows how to use the Get-MgDeviceManagementTermAndConditionAssignment Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md index acfc5fffb5176..3e007df52e6b3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md @@ -69,13 +69,18 @@ Read the properties and relationships of a cloudPcAuditEvent object. | Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementVirtualEndpointAuditEvent +``` +This example shows how to use the Get-MgDeviceManagementVirtualEndpointAuditEvent Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md index 2d7b806087956..5b3264fb9bb11 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md @@ -45,13 +45,18 @@ Get audit activity types by tenant ID. | Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType +``` +This example shows how to use the Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md index 7c484ea9bd62a..98f1e239a0ac9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md @@ -68,18 +68,28 @@ Read the properties and relationships of a specific cloudPC object. | Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: List all cloudPC devices in a tenant -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementVirtualEndpointCloudPc -### EXAMPLE 2 +``` +This example will list all cloudpc devices in a tenant + +### Example 2: Get the top two cloudPC devices in a tenant + +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration -Get-MgDeviceManagementVirtualEndpointCloudPc -Top 2 +Get-MgDeviceManagementVirtualEndpointCloudPc -Top 2 + +``` +This example will get the top two cloudpc devices in a tenant + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail.md index 2b673dffee25d..5d9db6972b84f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail.md @@ -45,16 +45,6 @@ This cmdlet has the following aliases, Get the cloudPcLaunchDetail for a specific cloudPC that belongs to the current signed-in user. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -352,5 +342,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md index b1836932ed537..0619b6e9ec512 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -69,13 +69,18 @@ Read the properties and relationships of a specific cloudPcDeviceImage object. | Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementVirtualEndpointDeviceImage +``` +This example shows how to use the Get-MgDeviceManagementVirtualEndpointDeviceImage Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md index 527234d33c9f8..1c3467a724a31 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md @@ -47,13 +47,18 @@ View a list of all the managed image resources from your Microsoft Entra subscri | Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage +``` +This example shows how to use the Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md index ba092142203f9..65763c4ac37b3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -69,13 +69,18 @@ Read the properties and relationships of a specific cloudPcGalleryImage object. | Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementVirtualEndpointGalleryImage +``` +This example shows how to use the Get-MgDeviceManagementVirtualEndpointGalleryImage Cmdlet. + + ## PARAMETERS ### -All diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index 95f44a81442a7..90db283683b0c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -69,18 +69,28 @@ Read the properties and relationships of the cloudPcOnPremisesConnection object. | Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Get the default properties of an Azure network connection -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementVirtualEndpointOnPremiseConnection -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId -### EXAMPLE 2 +``` +This example will get the default properties of an azure network connection + +### Example 2: Get the selected properties of an Azure network connection, including healthCheckStatusDetail + +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration -Get-MgDeviceManagementVirtualEndpointOnPremiseConnection -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId -Property "id,displayName,healthCheckStatus,healthCheckStatusDetail,inUse" +Get-MgDeviceManagementVirtualEndpointOnPremiseConnection -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId -Property "id,displayName,healthCheckStatus,healthCheckStatusDetail,inUse" + +``` +This example will get the selected properties of an azure network connection, including healthcheckstatusdetail + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 9e6e65c408798..422ace03262fa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -69,24 +69,39 @@ Read the properties and relationships of a cloudPcProvisioningPolicy object. | Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Get the properties of the specified provisioning policy -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -### EXAMPLE 2 +``` +This example will get the properties of the specified provisioning policy + +### Example 2: Get the properties of the specified provisioning policy and expand on the assignments + +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration -Get-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -ExpandProperty "assignments" +Get-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -ExpandProperty "assignments" + +``` +This example will get the properties of the specified provisioning policy and expand on the assignments -### EXAMPLE 3 +### Example 3: Get the selected properties of the specified provisioning policy + +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration -Get-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -Property "id,description,displayName,domainJoinConfigurations,imageDisplayName,imageId,imageType,windowsSetting,cloudPcGroupDisplayName,gracePeriodInHours,localAdminEnabled,alternateResourceUrl" +Get-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -Property "id,description,displayName,domainJoinConfigurations,imageDisplayName,imageId,imageType,windowsSetting,cloudPcGroupDisplayName,gracePeriodInHours,localAdminEnabled,alternateResourceUrl" + +``` +This example will get the selected properties of the specified provisioning policy + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md index f1bb387e15fb5..3246a875af1c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md @@ -58,8 +58,9 @@ The usage category report categorizes a Cloud PC as Undersized, Oversized, Right | Application | CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Get device recommendation reports grouped by service plan and usage category -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -79,7 +80,12 @@ groupBy = @( Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport -BodyParameter $params -### EXAMPLE 2 +``` +This example will get device recommendation reports grouped by service plan and usage category + +### Example 2: Get device usage category reports for Cloud PCs + +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -103,6 +109,10 @@ top = 15 Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport -BodyParameter $params +``` +This example will get device usage category reports for cloud pcs + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSetting.md index af4f0702cddab..50d09964bf678 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSetting.md @@ -69,18 +69,28 @@ Read the properties and relationships of a cloudPcUserSetting object. | Application | CloudPC.Read.All, CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Get the properties of the specified user setting -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Get-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId $cloudPcUserSettingId -### EXAMPLE 2 +``` +This example will get the properties of the specified user setting + +### Example 2: Get the properties of the specified user setting and expand on the assignments + +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration -Get-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId $cloudPcUserSettingId -ExpandProperty "assignments" +Get-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId $cloudPcUserSettingId -ExpandProperty "assignments" + +``` +This example will get the properties of the specified user setting and expand on the assignments + ## PARAMETERS diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md index bd530f41fbda1..fbfe0e7233f7d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md @@ -56,13 +56,18 @@ Must be coupled with the appropriate TeamViewer account information | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding -RemoteAssistancePartnerId $remoteAssistancePartnerId +``` +This example shows how to use the Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md index 375a5c95a347f..daff98adb6351 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md @@ -44,13 +44,18 @@ Download Apple push notification certificate signing request | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest +``` +This example shows how to use the Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md index c3008ab107435..769a06e93c8bf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md @@ -77,8 +77,9 @@ Reprovision a specific Cloud PC. | Application | CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -89,6 +90,10 @@ $params = @{ Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc -CloudPCId $cloudPCId -BodyParameter $params +``` +This example shows how to use the Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md index 3fac0f98b141f..a4265cbd763c6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md @@ -56,13 +56,18 @@ Use this API to check the health status of the Cloud PC and the session host. | Application | CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc -CloudPCId $cloudPCId +``` +This example shows how to use the Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md index 32d408f5cc7c6..c88338d9759b9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md @@ -59,8 +59,9 @@ Create new navigation property to auditEvents for deviceManagement | Application | DeviceManagementApps.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -110,6 +111,10 @@ category = "Category value" New-MgDeviceManagementAuditEvent -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementAuditEvent Cmdlet. + + ## PARAMETERS ### -Activity diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md index 74029abc3e707..9cf8534ea2458 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md @@ -64,8 +64,9 @@ Create new navigation property to complianceManagementPartners for deviceManagem | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -108,6 +109,10 @@ $params = @{ New-MgDeviceManagementComplianceManagementPartner -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementComplianceManagementPartner Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementExchangeConnector.md index 115ab0ae3f217..05d5256fccaad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementExchangeConnector.md @@ -61,8 +61,9 @@ Create new navigation property to exchangeConnectors for deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -81,6 +82,10 @@ $params = @{ New-MgDeviceManagementExchangeConnector -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementExchangeConnector Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md index 20e19b3a1c1bf..ea2113829f0aa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementIoUpdateStatus.md @@ -60,8 +60,9 @@ Create new navigation property to iosUpdateStatuses for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -82,6 +83,10 @@ $params = @{ New-MgDeviceManagementIoUpdateStatus -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementIoUpdateStatus Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md index 8bef5779192aa..461e6e62c6147 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementMobileThreatDefenseConnector.md @@ -64,8 +64,9 @@ Create new navigation property to mobileThreatDefenseConnectors for deviceManage | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -90,6 +91,10 @@ $params = @{ New-MgDeviceManagementMobileThreatDefenseConnector -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementMobileThreatDefenseConnector Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md index 903fe7dac8516..04dd2f157348d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementPartner.md @@ -62,8 +62,9 @@ Create new navigation property to deviceManagementPartners for deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -90,6 +91,10 @@ $params = @{ New-MgDeviceManagementPartner -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementPartner Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRemoteAssistancePartner.md index cb3ecc936b864..554dc727b45dc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRemoteAssistancePartner.md @@ -59,8 +59,9 @@ Create a new remoteAssistancePartner object. | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -74,6 +75,10 @@ $params = @{ New-MgDeviceManagementRemoteAssistancePartner -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementRemoteAssistancePartner Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md index 43fa3ee39645f..4d1ddb0cdbc5e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementResourceOperation.md @@ -57,8 +57,9 @@ Create new navigation property to resourceOperations for deviceManagement | Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -71,6 +72,10 @@ $params = @{ New-MgDeviceManagementResourceOperation -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementResourceOperation Cmdlet. + + ## PARAMETERS ### -ActionName diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md index 21309f2692eff..2a5a1a81b4bf1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleAssignment.md @@ -59,8 +59,9 @@ Create new navigation property to roleAssignments for deviceManagement | Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -78,6 +79,10 @@ members = @( New-MgDeviceManagementRoleAssignment -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementRoleAssignment Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md index ec6f6cfd41d89..f97b23ac8cab4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinition.md @@ -58,8 +58,9 @@ Create new navigation property to roleDefinitions for deviceManagement | Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -88,6 +89,10 @@ isBuiltIn = $true New-MgDeviceManagementRoleDefinition -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementRoleDefinition Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md index ed83be708e492..d537c1e94f785 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -82,8 +82,9 @@ Create new navigation property to roleAssignments for deviceManagement | Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -98,6 +99,10 @@ $params = @{ New-MgDeviceManagementRoleDefinitionRoleAssignment -RoleDefinitionId $roleDefinitionId -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementRoleDefinitionRoleAssignment Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md index 426e0e2b81001..1ebb7bbceefe1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndCondition.md @@ -61,8 +61,9 @@ Create new navigation property to termsAndConditions for deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -78,6 +79,10 @@ $params = @{ New-MgDeviceManagementTermAndCondition -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementTermAndCondition Cmdlet. + + ## PARAMETERS ### -AcceptanceStatement diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md index 756f84dd1eabf..31cfaebbe4e5c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -83,8 +83,9 @@ Create new navigation property to acceptanceStatuses for deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -98,6 +99,10 @@ $params = @{ New-MgDeviceManagementTermAndConditionAcceptanceStatus -TermsAndConditionsId $termsAndConditionsId -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementTermAndConditionAcceptanceStatus Cmdlet. + + ## PARAMETERS ### -AcceptedDateTime diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md index eb8c73e692bb3..e1ab47d1df101 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementTermAndConditionAssignment.md @@ -80,8 +80,9 @@ Create new navigation property to assignments for deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -95,6 +96,10 @@ $params = @{ New-MgDeviceManagementTermAndConditionAssignment -TermsAndConditionsId $termsAndConditionsId -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementTermAndConditionAssignment Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md index f5ff66da26e01..d08b05b9db288 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -62,8 +62,9 @@ Upload a custom OS image that you can later provision on Cloud PCs. | Application | CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -75,6 +76,10 @@ $params = @{ New-MgDeviceManagementVirtualEndpointDeviceImage -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementVirtualEndpointDeviceImage Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index 99e1bf7816e6d..0951ab5196a04 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -55,8 +55,9 @@ This cmdlet has the following aliases, Create a new cloudPcOnPremisesConnection object for provisioning Cloud PCs. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -74,6 +75,10 @@ $params = @{ New-MgDeviceManagementVirtualEndpointOnPremiseConnection -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementVirtualEndpointOnPremiseConnection Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 972dd25df1abe..e57ed221391e3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -66,8 +66,9 @@ Create a new cloudPcProvisioningPolicy object. | Application | CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -98,6 +99,10 @@ $params = @{ New-MgDeviceManagementVirtualEndpointProvisioningPolicy -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md index 80df07bf5c4dc..3118e8ec328e3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md @@ -60,8 +60,9 @@ Create a new cloudPcUserSetting object. | Application | CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -77,6 +78,10 @@ $params = @{ New-MgDeviceManagementVirtualEndpointUserSetting -BodyParameter $params +``` +This example shows how to use the New-MgDeviceManagementVirtualEndpointUserSetting Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.md index 1a47f73441a75..08f2c0859707b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Delete navigation property applePushNotificationCertificate 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.Administration/Remove-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md index 2394bac8b9f54..6030140c0baf3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md @@ -56,13 +56,18 @@ Delete navigation property auditEvents for deviceManagement | Application | DeviceManagementApps.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementAuditEvent -AuditEventId $auditEventId +``` +This example shows how to use the Remove-MgDeviceManagementAuditEvent Cmdlet. + + ## PARAMETERS ### -AuditEventId diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md index 51544093dd316..cdb8b4ff696fa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md @@ -57,13 +57,18 @@ Delete navigation property complianceManagementPartners for deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementComplianceManagementPartner -ComplianceManagementPartnerId $complianceManagementPartnerId +``` +This example shows how to use the Remove-MgDeviceManagementComplianceManagementPartner Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md index 71f413fdb005b..ba60b59b40b44 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md @@ -56,13 +56,18 @@ Delete navigation property exchangeConnectors for deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementExchangeConnector -DeviceManagementExchangeConnectorId $deviceManagementExchangeConnectorId +``` +This example shows how to use the Remove-MgDeviceManagementExchangeConnector Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md index de5ba5a7e7d4c..68d3d23f3c5bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md @@ -56,13 +56,18 @@ Delete navigation property iosUpdateStatuses for deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementIoUpdateStatus -IosUpdateDeviceStatusId $iosUpdateDeviceStatusId +``` +This example shows how to use the Remove-MgDeviceManagementIoUpdateStatus Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md index 7a19907d62f19..b7e6a87e8c3d5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md @@ -57,13 +57,18 @@ Delete navigation property mobileThreatDefenseConnectors for deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementMobileThreatDefenseConnector -MobileThreatDefenseConnectorId $mobileThreatDefenseConnectorId +``` +This example shows how to use the Remove-MgDeviceManagementMobileThreatDefenseConnector Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md index d8308e2d0ff56..3c29706e337fd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md @@ -56,13 +56,18 @@ Delete navigation property deviceManagementPartners for deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementPartner -DeviceManagementPartnerId $deviceManagementPartnerId +``` +This example shows how to use the Remove-MgDeviceManagementPartner Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md index a6eab8cd9beb6..4b340c2f056a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md @@ -57,13 +57,18 @@ Deletes a remoteAssistancePartner. | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementRemoteAssistancePartner -RemoteAssistancePartnerId $remoteAssistancePartnerId +``` +This example shows how to use the Remove-MgDeviceManagementRemoteAssistancePartner Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md index ce66374b33494..58ff6ba400548 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md @@ -56,13 +56,18 @@ Delete navigation property resourceOperations for deviceManagement | Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementResourceOperation -ResourceOperationId $resourceOperationId +``` +This example shows how to use the Remove-MgDeviceManagementResourceOperation Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md index a4a9c2b96dc4f..66b8b18d55b37 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md @@ -56,13 +56,18 @@ Delete navigation property roleAssignments for deviceManagement | Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementRoleAssignment -DeviceAndAppManagementRoleAssignmentId $deviceAndAppManagementRoleAssignmentId +``` +This example shows how to use the Remove-MgDeviceManagementRoleAssignment Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md index 569e5479c4f00..ac477f54c0472 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md @@ -56,13 +56,18 @@ Delete navigation property roleDefinitions for deviceManagement | Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementRoleDefinition -RoleDefinitionId $roleDefinitionId +``` +This example shows how to use the Remove-MgDeviceManagementRoleDefinition Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md index 6b08292f5a458..0e31fb3f4f607 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -58,13 +58,18 @@ Delete navigation property roleAssignments for deviceManagement | Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementRoleDefinitionRoleAssignment -RoleDefinitionId $roleDefinitionId -RoleAssignmentId $roleAssignmentId +``` +This example shows how to use the Remove-MgDeviceManagementRoleDefinitionRoleAssignment Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md index 8f16d3c6f2803..e716353f07470 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md @@ -56,13 +56,18 @@ Delete navigation property termsAndConditions for deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementTermAndCondition -TermsAndConditionsId $termsAndConditionsId +``` +This example shows how to use the Remove-MgDeviceManagementTermAndCondition Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md index f07e9e9c52f2b..f7dbd112af0ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -58,13 +58,18 @@ Delete navigation property acceptanceStatuses for deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementTermAndConditionAcceptanceStatus -TermsAndConditionsId $termsAndConditionsId -TermsAndConditionsAcceptanceStatusId $termsAndConditionsAcceptanceStatusId +``` +This example shows how to use the Remove-MgDeviceManagementTermAndConditionAcceptanceStatus Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md index 257fc10aa7a80..75c7bc588a230 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md @@ -58,13 +58,18 @@ Delete navigation property assignments for deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementTermAndConditionAssignment -TermsAndConditionsId $termsAndConditionsId -TermsAndConditionsAssignmentId $termsAndConditionsAssignmentId +``` +This example shows how to use the Remove-MgDeviceManagementTermAndConditionAssignment Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md index cd551fc8cc6c3..2ccbe069c0df5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -57,13 +57,18 @@ Delete a cloudPcDeviceImage object. | Application | CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementVirtualEndpointDeviceImage -CloudPcDeviceImageId $cloudPcDeviceImageId +``` +This example shows how to use the Remove-MgDeviceManagementVirtualEndpointDeviceImage Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index ad2938fb84604..606a1eed60f4e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -53,13 +53,18 @@ When you delete an Azure network connection, permissions to the service are remo You cannot delete an Azure network connection when it's in use, as indicated by the inUse property. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId +``` +This example shows how to use the Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 10e2686567d06..55eab0dd2006b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -59,13 +59,18 @@ You can’t delete a policy that’s in use. | Application | CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId +``` +This example shows how to use the Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md index 8dc876eceb361..7cda9272d17e9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md @@ -57,13 +57,18 @@ Delete a cloudPcUserSetting object. | Application | CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Remove-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId $cloudPcUserSettingId +``` +This example shows how to use the Remove-MgDeviceManagementVirtualEndpointUserSetting Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md index d9c31f588fefb..3090cdf4fef1c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md @@ -77,16 +77,6 @@ Use this API to update the displayName of a Cloud PC entity. | Delegated (personal Microsoft account) | Not supported | | Application | CloudPC.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -551,5 +541,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md index d6863da4c62e7..a5acd8bcd318e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md @@ -77,8 +77,9 @@ Upgrade or downgrade an existing Cloud PC to a configuration with a new virtual | Application | CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -88,6 +89,10 @@ $params = @{ Resize-MgDeviceManagementVirtualEndpointCloudPc -CloudPCId $cloudPCId -BodyParameter $params +``` +This example shows how to use the Resize-MgDeviceManagementVirtualEndpointCloudPc Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md index 6069707038083..03b1f5316ddab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md @@ -54,13 +54,18 @@ Reboot a specific cloudPC object. | Application | CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Restart-MgDeviceManagementVirtualEndpointCloudPc -CloudPCId $cloudPCId +``` +This example shows how to use the Restart-MgDeviceManagementVirtualEndpointCloudPc Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md index 715f6355a9a5e..2d73169c6b98d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md @@ -78,8 +78,9 @@ Use this API to trigger a remote action that restores a Cloud PC device to a pre | Application | CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -89,6 +90,10 @@ $params = @{ Restore-MgDeviceManagementVirtualEndpointCloudPc -CloudPCId $cloudPCId -BodyParameter $params +``` +This example shows how to use the Restore-MgDeviceManagementVirtualEndpointCloudPc Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 3921d3a70daea..9bde7bf9954e1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -79,8 +79,9 @@ Assign a cloudPcProvisioningPolicy to user groups. | Application | CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -97,6 +98,10 @@ $params = @{ Set-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -BodyParameter $params +``` +This example shows how to use the Set-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md index 8c06869c0d8d6..dae8e124ef625 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md @@ -77,8 +77,9 @@ Assign a cloudPcUserSetting to user groups. | Application | CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -96,6 +97,10 @@ $params = @{ Set-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId $cloudPcUserSettingId -BodyParameter $params +``` +This example shows how to use the Set-MgDeviceManagementVirtualEndpointUserSetting Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck.md index 424a33e87b1b3..5cdb40df86195 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck.md @@ -49,13 +49,18 @@ Run health checks on the cloudPcOnPremisesConnection object. It triggers a new health check for the cloudPcOnPremisesConnection (../resources/cloudpconpremisesconnection.md) object and changes the healthCheckStatus and [healthCheckStatusDetail properties when check finished. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId +``` +This example shows how to use the Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md index 51a22ef0ae2bc..f1ce5f50202a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md @@ -60,13 +60,18 @@ Ending the grace period immediately deprovisions the Cloud PC without waiting th | Application | CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod -CloudPCId $cloudPCId +``` +This example shows how to use the Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod Cmdlet. + + ## PARAMETERS ### -Break diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md index 41ce7a1c8cb12..5222039012485 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md @@ -60,8 +60,9 @@ Update the navigation property applePushNotificationCertificate in deviceManagem | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -78,6 +79,10 @@ $params = @{ Update-MgDeviceManagementApplePushNotificationCertificate -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementApplePushNotificationCertificate Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md index 4408e951e5384..47fff348f1d7b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md @@ -84,8 +84,9 @@ Update the navigation property auditEvents in deviceManagement | Application | DeviceManagementApps.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -135,6 +136,10 @@ category = "Category value" Update-MgDeviceManagementAuditEvent -AuditEventId $auditEventId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementAuditEvent Cmdlet. + + ## PARAMETERS ### -Activity diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md index b6c2f2c278cbb..1d69229113504 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md @@ -92,8 +92,9 @@ Update the navigation property complianceManagementPartners in deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -136,6 +137,10 @@ $params = @{ Update-MgDeviceManagementComplianceManagementPartner -ComplianceManagementPartnerId $complianceManagementPartnerId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementComplianceManagementPartner Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementExchangeConnector.md index 800dd5a705d90..749334e7778f9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementExchangeConnector.md @@ -86,8 +86,9 @@ Update the navigation property exchangeConnectors in deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -106,6 +107,10 @@ $params = @{ Update-MgDeviceManagementExchangeConnector -DeviceManagementExchangeConnectorId $deviceManagementExchangeConnectorId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementExchangeConnector Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md index 905728ef881da..15a2636cca624 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md @@ -84,8 +84,9 @@ Update the navigation property iosUpdateStatuses in deviceManagement | Application | DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -106,6 +107,10 @@ $params = @{ Update-MgDeviceManagementIoUpdateStatus -IosUpdateDeviceStatusId $iosUpdateDeviceStatusId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementIoUpdateStatus Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md index 3447125c477f1..51f030a9395b0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md @@ -93,8 +93,9 @@ Update the navigation property mobileThreatDefenseConnectors in deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -119,6 +120,10 @@ $params = @{ Update-MgDeviceManagementMobileThreatDefenseConnector -MobileThreatDefenseConnectorId $mobileThreatDefenseConnectorId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementMobileThreatDefenseConnector Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md index 2e814d02859aa..17404a2ebb3fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md @@ -88,8 +88,9 @@ Update the navigation property deviceManagementPartners in deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -116,6 +117,10 @@ $params = @{ Update-MgDeviceManagementPartner -DeviceManagementPartnerId $deviceManagementPartnerId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementPartner Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md index 183e69a09afad..08add4fa67be2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md @@ -83,8 +83,9 @@ Update the properties of a remoteAssistancePartner object. | Application | DeviceManagementServiceConfig.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -98,6 +99,10 @@ $params = @{ Update-MgDeviceManagementRemoteAssistancePartner -RemoteAssistancePartnerId $remoteAssistancePartnerId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementRemoteAssistancePartner Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md index a23699018efe1..50b84887b5ace 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md @@ -78,8 +78,9 @@ Update the navigation property resourceOperations in deviceManagement | Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -92,6 +93,10 @@ $params = @{ Update-MgDeviceManagementResourceOperation -ResourceOperationId $resourceOperationId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementResourceOperation Cmdlet. + + ## PARAMETERS ### -ActionName diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md index ce6bdbfe29155..baa016727b4a7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md @@ -80,8 +80,9 @@ Update the navigation property roleAssignments in deviceManagement | Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -99,6 +100,10 @@ members = @( Update-MgDeviceManagementRoleAssignment -DeviceAndAppManagementRoleAssignmentId $deviceAndAppManagementRoleAssignmentId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementRoleAssignment Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md index 84b3f9a26e29e..f465b17e8e9ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md @@ -82,8 +82,9 @@ Update the navigation property roleDefinitions in deviceManagement | Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -112,6 +113,10 @@ isBuiltIn = $true Update-MgDeviceManagementRoleDefinition -RoleDefinitionId $roleDefinitionId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementRoleDefinition Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md index c3adc8321e1f7..ee263b86ac2ea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -82,8 +82,9 @@ Update the navigation property roleAssignments in deviceManagement | Application | DeviceManagementRBAC.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -98,6 +99,10 @@ $params = @{ Update-MgDeviceManagementRoleDefinitionRoleAssignment -RoleDefinitionId $roleDefinitionId -RoleAssignmentId $roleAssignmentId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementRoleDefinitionRoleAssignment Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md index 5edbeb3b9f694..d24dfd4b1c722 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md @@ -86,8 +86,9 @@ Update the navigation property termsAndConditions in deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -103,6 +104,10 @@ $params = @{ Update-MgDeviceManagementTermAndCondition -TermsAndConditionsId $termsAndConditionsId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementTermAndCondition Cmdlet. + + ## PARAMETERS ### -AcceptanceStatement diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md index 1ba90c230a0e0..f030ed781d32c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -85,8 +85,9 @@ Update the navigation property acceptanceStatuses in deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -100,6 +101,10 @@ $params = @{ Update-MgDeviceManagementTermAndConditionAcceptanceStatus -TermsAndConditionsId $termsAndConditionsId -TermsAndConditionsAcceptanceStatusId $termsAndConditionsAcceptanceStatusId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementTermAndConditionAcceptanceStatus Cmdlet. + + ## PARAMETERS ### -AcceptedDateTime diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md index 07e8631603213..0ef1923538072 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md @@ -81,8 +81,9 @@ Update the navigation property assignments in deviceManagement | Application | DeviceManagementServiceConfig.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -96,6 +97,10 @@ $params = @{ Update-MgDeviceManagementTermAndConditionAssignment -TermsAndConditionsId $termsAndConditionsId -TermsAndConditionsAssignmentId $termsAndConditionsAssignmentId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementTermAndConditionAssignment Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index cf80f9f6edc1d..6c7efd6e0db4e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -83,8 +83,9 @@ This cmdlet has the following aliases, Update the properties of a cloudPcOnPremisesConnection object. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -103,6 +104,10 @@ $params = @{ Update-MgDeviceManagementVirtualEndpointOnPremiseConnection -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementVirtualEndpointOnPremiseConnection Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md index 90b7094319c15..39d7a2e7ee500 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md @@ -79,8 +79,9 @@ This API is supported when the type of the cloudPcOnPremisesConnection object is | Application | CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -90,6 +91,10 @@ $params = @{ Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword -CloudPcOnPremisesConnectionId $cloudPcOnPremisesConnectionId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 2bd248d2939df..814659acdb56c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -97,8 +97,9 @@ Update the properties of a cloudPcProvisioningPolicy object. | Application | CloudPC.ReadWrite.All, | ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -117,6 +118,10 @@ $params = @{ Update-MgDeviceManagementVirtualEndpointProvisioningPolicy -CloudPcProvisioningPolicyId $cloudPcProvisioningPolicyId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementVirtualEndpointProvisioningPolicy Cmdlet. + + ## PARAMETERS ### -AdditionalProperties diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md index 4bae12da9358c..94343db35f404 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md @@ -78,8 +78,9 @@ This cmdlet has the following aliases, Update the properties of a cloudPcUserSetting object. ## EXAMPLES +### Example 1: Code snippet -### EXAMPLE 1 +```powershell Import-Module Microsoft.Graph.DeviceManagement.Administration @@ -96,6 +97,10 @@ $params = @{ Update-MgDeviceManagementVirtualEndpointUserSetting -CloudPcUserSettingId $cloudPcUserSettingId -BodyParameter $params +``` +This example shows how to use the Update-MgDeviceManagementVirtualEndpointUserSetting Cmdlet. + + ## PARAMETERS ### -AdditionalProperties From 2e7268decfff7426778bbc40d180c66b8caa8a4c Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:27:58 +0000 Subject: [PATCH 15/17] Remove boiler plate code injected by Autorest --- ...t-MgDeviceManagementAuditEventAuditActivityType.md | 11 +---------- .../Get-MgDeviceManagementAuditEventCount.md | 11 +---------- ...eviceManagementComplianceManagementPartnerCount.md | 11 +---------- .../Get-MgDeviceManagementExchangeConnectorCount.md | 11 +---------- .../Get-MgDeviceManagementIoUpdateStatusCount.md | 11 +---------- ...viceManagementMobileThreatDefenseConnectorCount.md | 11 +---------- .../Get-MgDeviceManagementPartnerCount.md | 11 +---------- ...-MgDeviceManagementRemoteAssistancePartnerCount.md | 11 +---------- .../Get-MgDeviceManagementResourceOperationCount.md | 11 +---------- .../Get-MgDeviceManagementRoleAssignmentCount.md | 11 +---------- ...-MgDeviceManagementRoleAssignmentRoleDefinition.md | 11 +---------- .../Get-MgDeviceManagementRoleDefinitionCount.md | 11 +---------- ...viceManagementRoleDefinitionRoleAssignmentCount.md | 11 +---------- ...ManagementTermAndConditionAcceptanceStatusCount.md | 11 +---------- ...ermAndConditionAcceptanceStatusTermAndCondition.md | 11 +---------- ...DeviceManagementTermAndConditionAssignmentCount.md | 11 +---------- .../Get-MgDeviceManagementTermAndConditionCount.md | 11 +---------- .../Get-MgDeviceManagementVirtualEndpoint.md | 11 +---------- ...gDeviceManagementVirtualEndpointAuditEventCount.md | 11 +---------- ...t-MgDeviceManagementVirtualEndpointCloudPcCount.md | 11 +---------- ...DeviceManagementVirtualEndpointDeviceImageCount.md | 11 +---------- ...eviceManagementVirtualEndpointGalleryImageCount.md | 11 +---------- ...nagementVirtualEndpointOnPremiseConnectionCount.md | 11 +---------- ...mentVirtualEndpointProvisioningPolicyAssignment.md | 11 +---------- ...ndpointProvisioningPolicyAssignmentAssignedUser.md | 11 +---------- ...PolicyAssignmentAssignedUserByUserPrincipalName.md | 11 +---------- ...ntProvisioningPolicyAssignmentAssignedUserCount.md | 11 +---------- ...oningPolicyAssignmentAssignedUserMailboxSetting.md | 11 +---------- ...yAssignmentAssignedUserServiceProvisioningError.md | 11 +---------- ...gnmentAssignedUserServiceProvisioningErrorCount.md | 11 +---------- ...irtualEndpointProvisioningPolicyAssignmentCount.md | 11 +---------- ...anagementVirtualEndpointProvisioningPolicyCount.md | 11 +---------- .../Get-MgDeviceManagementVirtualEndpointReport.md | 11 +---------- ...eManagementVirtualEndpointUserSettingAssignment.md | 11 +---------- ...gementVirtualEndpointUserSettingAssignmentCount.md | 11 +---------- ...DeviceManagementVirtualEndpointUserSettingCount.md | 11 +---------- .../Invoke-MgTerminateDeviceManagementPartner.md | 11 +---------- ...w-MgDeviceManagementVirtualEndpointGalleryImage.md | 11 +---------- ...mentVirtualEndpointProvisioningPolicyAssignment.md | 11 +---------- ...eManagementVirtualEndpointUserSettingAssignment.md | 11 +---------- ...e-MgDeviceManagementVirtualEndpointGalleryImage.md | 11 +---------- ...mentVirtualEndpointProvisioningPolicyAssignment.md | 11 +---------- .../Remove-MgDeviceManagementVirtualEndpointReport.md | 11 +---------- ...eManagementVirtualEndpointUserSettingAssignment.md | 11 +---------- .../Sync-MgDeviceManagementExchangeConnector.md | 11 +---------- ...te-MgDeviceManagementVirtualEndpointDeviceImage.md | 11 +---------- ...e-MgDeviceManagementVirtualEndpointGalleryImage.md | 11 +---------- ...mentVirtualEndpointProvisioningPolicyAssignment.md | 11 +---------- ...oningPolicyAssignmentAssignedUserMailboxSetting.md | 11 +---------- .../Update-MgDeviceManagementVirtualEndpointReport.md | 11 +---------- ...eManagementVirtualEndpointUserSettingAssignment.md | 11 +---------- 51 files changed, 51 insertions(+), 510 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md index 809111a449c56..a0910df509ea8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md @@ -55,16 +55,6 @@ Invoke function getAuditActivityTypes | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementApps.Read.All, DeviceManagementApps.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -467,5 +457,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md index 1a4cd2a29ba10..1edeaa7b50b3f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementApps.Read.All, DeviceManagementApps.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.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md index 91435c5142f5a..b7859f9667c20 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.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.Administration/Get-MgDeviceManagementExchangeConnectorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.md index 7961e2b048910..150c8b4c381e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.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.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md index a71004c9f3a56..ead24e43d47c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.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.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md index c3899b92843c3..b6aad709585a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.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.Administration/Get-MgDeviceManagementPartnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.md index a30f509ee961a..ed46c23a0b0bf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.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.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md index a795e57c0666d..29db49a2a10ac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.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.Administration/Get-MgDeviceManagementResourceOperationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md index d775a9a649017..e1a391cfafed8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.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.Administration/Get-MgDeviceManagementRoleAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md index 9ccc784ecce80..e3e331cae47cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.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.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md index 5fc631fb5a127..fa27378604b58 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Indicates the role definition for this role assignment. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -399,5 +389,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md index a2b902c2f0f28..f455c5fd25629 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.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.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md index c2ae1088837ba..52b69f0f2c477 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementRBAC.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -405,5 +395,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md index e41c7af9d9405..ff27fc92085c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md @@ -57,16 +57,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 @@ -405,5 +395,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md index 049351f04a940..03d6e56e2d294 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md @@ -58,16 +58,6 @@ Navigation link to the terms and conditions that are assigned. | 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 @@ -429,5 +419,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md index 77edd04c3736a..765035d653773 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md @@ -57,16 +57,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 @@ -405,5 +395,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md index 47b2ced9d9b97..7cab793877831 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.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.Administration/Get-MgDeviceManagementVirtualEndpoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.md index 0887ef15914c5..9361d86b93bbc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get virtualEndpoint from deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -307,5 +297,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md index a6570820e6933..0b641b5db1423 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | CloudPC.Read.All, CloudPC.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.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md index 6c44020f52f4b..21a8d66d7682b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | CloudPC.Read.All, CloudPC.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.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md index 0172d30785d7b..b1a3522d2c13f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | CloudPC.Read.All, CloudPC.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.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md index a11a827199998..7c3eff2a64f5d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | CloudPC.Read.All, CloudPC.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.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md index 12765a99d8f9b..8144cbcf17c30 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | CloudPC.Read.All, CloudPC.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.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index 8ccc6cb011adb..468025e2b3ce9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -68,16 +68,6 @@ Represents the set of Microsoft 365 groups and security groups in Microsoft Entr Returned only on $expand. For an example about how to get the assignments relationship, see Get cloudPcProvisioningPolicy. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -617,5 +607,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md index 209041714a163..0b1d958290bfb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md @@ -68,16 +68,6 @@ This list of users is computed based on assignments, licenses, group memberships Read-only. Supports$expand. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -644,5 +634,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName.md index 61cacf82e7f14..8f7fabcfa4620 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName.md @@ -53,16 +53,6 @@ This list of users is computed based on assignments, licenses, group memberships Read-only. Supports$expand. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -445,5 +435,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md index be6c062ffe24a..578d512b33dbe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -419,5 +409,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md index 183b43909a324..1a069813c8285 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md @@ -54,16 +54,6 @@ Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Requires $select to retrieve. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -446,5 +436,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md index cb1776be442ee..5eee6a3776506 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md @@ -44,16 +44,6 @@ This cmdlet has the following aliases, Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -548,5 +538,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md index b2bdc58dfde36..da4eab32dde17 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -440,5 +430,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md index 373e3f8c09ff4..38cd4b0ff96e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -397,5 +387,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md index 08c79ff5a21a9..5bba3c0494bfb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | CloudPC.Read.All, CloudPC.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.Administration/Get-MgDeviceManagementVirtualEndpointReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md index 7456b4d87c21c..2d932cd958904 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md @@ -40,16 +40,6 @@ This cmdlet has the following aliases, Cloud PC-related reports. Read-only. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -309,5 +299,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index 6da73b97e13a4..d18be7030e467 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -64,16 +64,6 @@ Represents the set of Microsoft 365 groups and security groups in Microsoft Entr Returned only on $expand. For an example, see Get cloudPcUserSetting. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -613,5 +603,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md index 31fa1df6fba90..c7d3626d2df2f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -397,5 +387,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md index 1915848adbf59..9f5fd1c4ad6b7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | CloudPC.Read.All, CloudPC.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.Administration/Invoke-MgTerminateDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.md index 3ed83759a8c10..fcdf93352cb98 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.md @@ -52,16 +52,6 @@ Invoke action terminate | Delegated (personal Microsoft account) | Not supported | | Application | DeviceManagementServiceConfig.Read.All, DeviceManagementConfiguration.Read.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -423,5 +413,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md index 0562932f0bd5b..804da83bfaeb2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, Create new navigation property to galleryImages for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -656,5 +646,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index ab02e0e7f12f8..2db9f59cdbbe1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Create new navigation property to assignments for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -11150,5 +11140,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index 907ad91e12022..f50db8ada40c0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -72,16 +72,6 @@ This cmdlet has the following aliases, Create new navigation property to assignments for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -587,5 +577,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md index 89980ab66ed18..2ee824280adb2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property galleryImages for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -440,5 +430,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index 801171de47886..17d31f7d0eeb1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property assignments for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -462,5 +452,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.md index 8b3b63b159a3c..bd0d8db0c73e8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Delete navigation property report 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.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index 1d2754d95747b..e6471daded041 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property assignments for deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -462,5 +452,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md index a4d7b5a9e21b7..a9f4479904e0d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md @@ -74,16 +74,6 @@ Invoke action sync | 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 @@ -547,5 +537,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md index cd7068b05ea6e..cddf46a0b0ac7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -78,16 +78,6 @@ This cmdlet has the following aliases, Update the navigation property deviceImages in deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -904,5 +894,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md index 4ceedcb25cc3d..151143f1d7e1f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property galleryImages in deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -845,5 +835,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index e5b0e67760bb2..78bcd60f0aeaa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -74,16 +74,6 @@ This cmdlet has the following aliases, Update the navigation property assignments in deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -11178,5 +11168,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md index e8d66711869e7..74c010ea10cab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md @@ -80,16 +80,6 @@ This cmdlet has the following aliases, Update property mailboxSettings value. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -867,5 +857,6 @@ It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md index 54c48abfaf36e..c013e3fb317c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Update the navigation property report in deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -384,5 +374,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index dc5cb813edb09..0cf0355ea6aba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -74,16 +74,6 @@ This cmdlet has the following aliases, Update the navigation property assignments in deviceManagement -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -616,5 +606,6 @@ INPUTOBJECT ``: Identity Parameter + From ab1d8b0a8bc16a5d3aeb8069e3f59a32bcad30f9 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:28:05 +0000 Subject: [PATCH 16/17] Removed invalid full stops from the beginning of lines --- ...lEndpointReportCloudPcRecommendationReport.md | 16 ++++++++-------- ...sionDeviceManagementVirtualEndpointCloudPc.md | 2 +- ...e-MgDeviceManagementVirtualEndpointCloudPc.md | 4 ++-- ...e-MgDeviceManagementVirtualEndpointCloudPc.md | 4 ++-- ...e-MgDeviceManagementVirtualEndpointCloudPc.md | 4 ++-- ...anagementVirtualEndpointProvisioningPolicy.md | 4 ++-- ...DeviceManagementVirtualEndpointUserSetting.md | 4 ++-- .../Sync-MgDeviceManagementExchangeConnector.md | 2 +- ...ManagementApplePushNotificationCertificate.md | 2 +- ...ndpointOnPremiseConnectionAdDomainPassword.md | 4 ++-- 10 files changed, 23 insertions(+), 23 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md index 3246a875af1c2..4735d48b34e5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md @@ -138,7 +138,7 @@ HelpMessage: '' ### -Body -. + To construct, see NOTES section for BODY properties and create a hash table. ```yaml @@ -203,7 +203,7 @@ HelpMessage: '' ### -Filter -. + ```yaml Type: System.String @@ -224,7 +224,7 @@ HelpMessage: '' ### -GroupBy -. + ```yaml Type: System.String[] @@ -350,7 +350,7 @@ HelpMessage: '' ### -Property -. + ```yaml Type: System.String[] @@ -478,7 +478,7 @@ HelpMessage: '' ### -Search -. + ```yaml Type: System.String @@ -499,7 +499,7 @@ HelpMessage: '' ### -Skip -. + ```yaml Type: System.Int32 @@ -520,7 +520,7 @@ HelpMessage: '' ### -Sort -. + ```yaml Type: System.String[] @@ -542,7 +542,7 @@ HelpMessage: '' ### -Top -. + ```yaml Type: System.Int32 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md index 769a06e93c8bf..ed168694ab2a7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md @@ -125,7 +125,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md index 3090cdf4fef1c..1d2333f64c023 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md @@ -108,7 +108,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -206,7 +206,7 @@ HelpMessage: '' ### -DisplayName -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md index a5acd8bcd318e..525d977d417d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md @@ -124,7 +124,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -419,7 +419,7 @@ HelpMessage: '' ### -TargetServicePlanId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md index 2d73169c6b98d..4a7c14d6802ac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md @@ -125,7 +125,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -201,7 +201,7 @@ HelpMessage: '' ### -CloudPcSnapshotId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 9bde7bf9954e1..100ad86e8057b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -133,7 +133,7 @@ HelpMessage: '' ### -Assignments -. + To construct, see NOTES section for ASSIGNMENTS properties and create a hash table. ```yaml @@ -161,7 +161,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md index dae8e124ef625..2844da99cbecd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md @@ -132,7 +132,7 @@ HelpMessage: '' ### -Assignments -. + To construct, see NOTES section for ASSIGNMENTS properties and create a hash table. ```yaml @@ -160,7 +160,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md index a9f4479904e0d..647bdda5c122a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md @@ -105,7 +105,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md index 5222039012485..3609d0729c9ab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md @@ -172,7 +172,7 @@ HelpMessage: '' ### -Certificate -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md index 39d7a2e7ee500..0e970d2c37dfc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md @@ -126,7 +126,7 @@ HelpMessage: '' ### -AdDomainPassword -. + ```yaml Type: System.String @@ -153,7 +153,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml From fc8c28cb4fb377d208ec41efe48e011e1ce10401 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 19:28:19 +0000 Subject: [PATCH 17/17] Corrected related link to conform to the new platyps rules --- .../Disconnect-MgDeviceManagementRemoteAssistancePartner.md | 4 ++-- ...et-MgDeviceManagementApplePushNotificationCertificate.md | 2 +- .../Get-MgDeviceManagementAuditEvent.md | 2 +- .../Get-MgDeviceManagementAuditEventAuditActivityType.md | 2 +- .../Get-MgDeviceManagementAuditEventAuditCategory.md | 2 +- .../Get-MgDeviceManagementAuditEventCount.md | 2 +- .../Get-MgDeviceManagementComplianceManagementPartner.md | 2 +- ...et-MgDeviceManagementComplianceManagementPartnerCount.md | 2 +- .../Get-MgDeviceManagementExchangeConnector.md | 2 +- .../Get-MgDeviceManagementExchangeConnectorCount.md | 2 +- .../Get-MgDeviceManagementIoUpdateStatus.md | 2 +- .../Get-MgDeviceManagementIoUpdateStatusCount.md | 2 +- .../Get-MgDeviceManagementMobileThreatDefenseConnector.md | 2 +- ...t-MgDeviceManagementMobileThreatDefenseConnectorCount.md | 2 +- .../Get-MgDeviceManagementPartner.md | 2 +- .../Get-MgDeviceManagementPartnerCount.md | 2 +- .../Get-MgDeviceManagementRemoteAssistancePartner.md | 6 +++--- .../Get-MgDeviceManagementRemoteAssistancePartnerCount.md | 2 +- .../Get-MgDeviceManagementResourceOperation.md | 2 +- .../Get-MgDeviceManagementResourceOperationCount.md | 2 +- .../Get-MgDeviceManagementRoleAssignment.md | 2 +- .../Get-MgDeviceManagementRoleAssignmentCount.md | 2 +- .../Get-MgDeviceManagementRoleAssignmentRoleDefinition.md | 2 +- .../Get-MgDeviceManagementRoleDefinition.md | 2 +- .../Get-MgDeviceManagementRoleDefinitionCount.md | 2 +- .../Get-MgDeviceManagementRoleDefinitionRoleAssignment.md | 2 +- ...t-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md | 2 +- ...eManagementRoleDefinitionRoleAssignmentRoleDefinition.md | 2 +- .../Get-MgDeviceManagementTermAndCondition.md | 2 +- ...et-MgDeviceManagementTermAndConditionAcceptanceStatus.md | 2 +- ...DeviceManagementTermAndConditionAcceptanceStatusCount.md | 2 +- ...ementTermAndConditionAcceptanceStatusTermAndCondition.md | 2 +- .../Get-MgDeviceManagementTermAndConditionAssignment.md | 2 +- ...Get-MgDeviceManagementTermAndConditionAssignmentCount.md | 2 +- .../Get-MgDeviceManagementTermAndConditionCount.md | 2 +- .../Get-MgDeviceManagementVirtualEndpoint.md | 2 +- .../Get-MgDeviceManagementVirtualEndpointAuditEvent.md | 6 +++--- ...eManagementVirtualEndpointAuditEventAuditActivityType.md | 4 ++-- .../Get-MgDeviceManagementVirtualEndpointAuditEventCount.md | 2 +- .../Get-MgDeviceManagementVirtualEndpointCloudPc.md | 6 +++--- .../Get-MgDeviceManagementVirtualEndpointCloudPcCount.md | 2 +- ...-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail.md | 4 ++-- .../Get-MgDeviceManagementVirtualEndpointDeviceImage.md | 6 +++--- ...Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md | 2 +- ...DeviceManagementVirtualEndpointDeviceImageSourceImage.md | 4 ++-- .../Get-MgDeviceManagementVirtualEndpointGalleryImage.md | 6 +++--- ...et-MgDeviceManagementVirtualEndpointGalleryImageCount.md | 2 +- ...-MgDeviceManagementVirtualEndpointOnPremiseConnection.md | 6 +++--- ...viceManagementVirtualEndpointOnPremiseConnectionCount.md | 2 +- ...t-MgDeviceManagementVirtualEndpointProvisioningPolicy.md | 6 +++--- ...ManagementVirtualEndpointProvisioningPolicyAssignment.md | 2 +- ...rtualEndpointProvisioningPolicyAssignmentAssignedUser.md | 2 +- ...ioningPolicyAssignmentAssignedUserByUserPrincipalName.md | 2 +- ...EndpointProvisioningPolicyAssignmentAssignedUserCount.md | 2 +- ...rovisioningPolicyAssignmentAssignedUserMailboxSetting.md | 2 +- ...gPolicyAssignmentAssignedUserServiceProvisioningError.md | 2 +- ...cyAssignmentAssignedUserServiceProvisioningErrorCount.md | 2 +- ...ementVirtualEndpointProvisioningPolicyAssignmentCount.md | 2 +- ...eviceManagementVirtualEndpointProvisioningPolicyCount.md | 2 +- .../Get-MgDeviceManagementVirtualEndpointReport.md | 2 +- ...ementVirtualEndpointReportCloudPcRecommendationReport.md | 4 ++-- .../Get-MgDeviceManagementVirtualEndpointUserSetting.md | 6 +++--- ...gDeviceManagementVirtualEndpointUserSettingAssignment.md | 2 +- ...ceManagementVirtualEndpointUserSettingAssignmentCount.md | 2 +- ...Get-MgDeviceManagementVirtualEndpointUserSettingCount.md | 2 +- ...eginDeviceManagementRemoteAssistancePartnerOnboarding.md | 4 ++-- ...ificateApplePushNotificationCertificateSigningRequest.md | 2 +- ...e-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md | 4 ++-- .../Invoke-MgTerminateDeviceManagementPartner.md | 2 +- ...-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md | 4 ++-- .../New-MgDeviceManagementAuditEvent.md | 2 +- .../New-MgDeviceManagementComplianceManagementPartner.md | 2 +- .../New-MgDeviceManagementExchangeConnector.md | 2 +- .../New-MgDeviceManagementIoUpdateStatus.md | 2 +- .../New-MgDeviceManagementMobileThreatDefenseConnector.md | 2 +- .../New-MgDeviceManagementPartner.md | 2 +- .../New-MgDeviceManagementRemoteAssistancePartner.md | 4 ++-- .../New-MgDeviceManagementResourceOperation.md | 2 +- .../New-MgDeviceManagementRoleAssignment.md | 2 +- .../New-MgDeviceManagementRoleDefinition.md | 2 +- .../New-MgDeviceManagementRoleDefinitionRoleAssignment.md | 2 +- .../New-MgDeviceManagementTermAndCondition.md | 2 +- ...ew-MgDeviceManagementTermAndConditionAcceptanceStatus.md | 2 +- .../New-MgDeviceManagementTermAndConditionAssignment.md | 2 +- .../New-MgDeviceManagementVirtualEndpointDeviceImage.md | 4 ++-- .../New-MgDeviceManagementVirtualEndpointGalleryImage.md | 2 +- ...-MgDeviceManagementVirtualEndpointOnPremiseConnection.md | 4 ++-- ...w-MgDeviceManagementVirtualEndpointProvisioningPolicy.md | 4 ++-- ...ManagementVirtualEndpointProvisioningPolicyAssignment.md | 2 +- .../New-MgDeviceManagementVirtualEndpointUserSetting.md | 4 ++-- ...gDeviceManagementVirtualEndpointUserSettingAssignment.md | 2 +- ...ve-MgDeviceManagementApplePushNotificationCertificate.md | 2 +- .../Remove-MgDeviceManagementAuditEvent.md | 2 +- .../Remove-MgDeviceManagementComplianceManagementPartner.md | 2 +- .../Remove-MgDeviceManagementExchangeConnector.md | 2 +- .../Remove-MgDeviceManagementIoUpdateStatus.md | 2 +- ...Remove-MgDeviceManagementMobileThreatDefenseConnector.md | 2 +- .../Remove-MgDeviceManagementPartner.md | 2 +- .../Remove-MgDeviceManagementRemoteAssistancePartner.md | 4 ++-- .../Remove-MgDeviceManagementResourceOperation.md | 2 +- .../Remove-MgDeviceManagementRoleAssignment.md | 2 +- .../Remove-MgDeviceManagementRoleDefinition.md | 2 +- ...Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md | 2 +- .../Remove-MgDeviceManagementTermAndCondition.md | 2 +- ...ve-MgDeviceManagementTermAndConditionAcceptanceStatus.md | 2 +- .../Remove-MgDeviceManagementTermAndConditionAssignment.md | 2 +- .../Remove-MgDeviceManagementVirtualEndpointDeviceImage.md | 4 ++-- .../Remove-MgDeviceManagementVirtualEndpointGalleryImage.md | 2 +- ...-MgDeviceManagementVirtualEndpointOnPremiseConnection.md | 4 ++-- ...e-MgDeviceManagementVirtualEndpointProvisioningPolicy.md | 4 ++-- ...ManagementVirtualEndpointProvisioningPolicyAssignment.md | 2 +- .../Remove-MgDeviceManagementVirtualEndpointReport.md | 2 +- .../Remove-MgDeviceManagementVirtualEndpointUserSetting.md | 4 ++-- ...gDeviceManagementVirtualEndpointUserSettingAssignment.md | 2 +- .../Rename-MgDeviceManagementVirtualEndpointCloudPc.md | 4 ++-- .../Resize-MgDeviceManagementVirtualEndpointCloudPc.md | 4 ++-- .../Restart-MgDeviceManagementVirtualEndpointCloudPc.md | 4 ++-- .../Restore-MgDeviceManagementVirtualEndpointCloudPc.md | 4 ++-- ...t-MgDeviceManagementVirtualEndpointProvisioningPolicy.md | 4 ++-- .../Set-MgDeviceManagementVirtualEndpointUserSetting.md | 4 ++-- ...nagementVirtualEndpointOnPremiseConnectionHealthCheck.md | 4 ++-- ...p-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md | 4 ++-- .../Sync-MgDeviceManagementExchangeConnector.md | 2 +- ...te-MgDeviceManagementApplePushNotificationCertificate.md | 2 +- .../Update-MgDeviceManagementAuditEvent.md | 2 +- .../Update-MgDeviceManagementComplianceManagementPartner.md | 2 +- .../Update-MgDeviceManagementExchangeConnector.md | 2 +- .../Update-MgDeviceManagementIoUpdateStatus.md | 2 +- ...Update-MgDeviceManagementMobileThreatDefenseConnector.md | 2 +- .../Update-MgDeviceManagementPartner.md | 2 +- .../Update-MgDeviceManagementRemoteAssistancePartner.md | 4 ++-- .../Update-MgDeviceManagementResourceOperation.md | 2 +- .../Update-MgDeviceManagementRoleAssignment.md | 2 +- .../Update-MgDeviceManagementRoleDefinition.md | 2 +- ...Update-MgDeviceManagementRoleDefinitionRoleAssignment.md | 2 +- .../Update-MgDeviceManagementTermAndCondition.md | 2 +- ...te-MgDeviceManagementTermAndConditionAcceptanceStatus.md | 2 +- .../Update-MgDeviceManagementTermAndConditionAssignment.md | 2 +- .../Update-MgDeviceManagementVirtualEndpointDeviceImage.md | 2 +- .../Update-MgDeviceManagementVirtualEndpointGalleryImage.md | 2 +- ...-MgDeviceManagementVirtualEndpointOnPremiseConnection.md | 4 ++-- ...entVirtualEndpointOnPremiseConnectionAdDomainPassword.md | 4 ++-- ...e-MgDeviceManagementVirtualEndpointProvisioningPolicy.md | 4 ++-- ...ManagementVirtualEndpointProvisioningPolicyAssignment.md | 2 +- ...rovisioningPolicyAssignmentAssignedUserMailboxSetting.md | 2 +- .../Update-MgDeviceManagementVirtualEndpointReport.md | 2 +- .../Update-MgDeviceManagementVirtualEndpointUserSetting.md | 4 ++-- ...gDeviceManagementVirtualEndpointUserSettingAssignment.md | 2 +- 148 files changed, 195 insertions(+), 195 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md index 9149b9f1dfa60..f51a3e8a2693e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Disconnect-MgDeviceManagementRemoteAssistancePartner.md @@ -406,8 +406,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/disconnect-mgdevicemanagementremoteassistancepartner) -- [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-disconnect?view=graph-rest-1.0) +- [Disconnect-MgDeviceManagementRemoteAssistancePartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/disconnect-mgdevicemanagementremoteassistancepartner) +- [Graph API Reference](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-disconnect?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md index 4c4c56c2b5551..9a97ad86c0b63 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementApplePushNotificationCertificate.md @@ -297,7 +297,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementapplepushnotificationcertificate) +- [Get-MgDeviceManagementApplePushNotificationCertificate](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementapplepushnotificationcertificate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md index 8a2c0ee165f19..b3c833d4676e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEvent.md @@ -571,7 +571,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditevent) +- [Get-MgDeviceManagementAuditEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md index a0910df509ea8..7f27321895971 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditActivityType.md @@ -436,7 +436,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditeventauditactivitytype) +- [Get-MgDeviceManagementAuditEventAuditActivityType](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditeventauditactivitytype) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md index e457cd1740c40..c9c8792fdc293 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventAuditCategory.md @@ -356,7 +356,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditeventauditcategory) +- [Get-MgDeviceManagementAuditEventAuditCategory](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditeventauditcategory) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md index 1edeaa7b50b3f..e690afffa6ea1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementAuditEventCount.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.administration/get-mgdevicemanagementauditeventcount) +- [Get-MgDeviceManagementAuditEventCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementauditeventcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md index ce61fd48e56ce..d4358c67bad7a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartner.md @@ -572,7 +572,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementcompliancemanagementpartner) +- [Get-MgDeviceManagementComplianceManagementPartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementcompliancemanagementpartner) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md index b7859f9667c20..c22975f1405d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementComplianceManagementPartnerCount.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.administration/get-mgdevicemanagementcompliancemanagementpartnercount) +- [Get-MgDeviceManagementComplianceManagementPartnerCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementcompliancemanagementpartnercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md index 44597ebc7b684..f62ba49d2587f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnector.md @@ -572,7 +572,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementexchangeconnector) +- [Get-MgDeviceManagementExchangeConnector](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementexchangeconnector) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.md index 150c8b4c381e2..3eba809f62496 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementExchangeConnectorCount.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.administration/get-mgdevicemanagementexchangeconnectorcount) +- [Get-MgDeviceManagementExchangeConnectorCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementexchangeconnectorcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md index 4732b63aad06e..936fa58613d6b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatus.md @@ -571,7 +571,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementioupdatestatus) +- [Get-MgDeviceManagementIoUpdateStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementioupdatestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md index ead24e43d47c4..813c1a065d179 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementIoUpdateStatusCount.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.administration/get-mgdevicemanagementioupdatestatuscount) +- [Get-MgDeviceManagementIoUpdateStatusCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementioupdatestatuscount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md index 29bcdbf22b89e..fe727d90ca20e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnector.md @@ -572,7 +572,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementmobilethreatdefenseconnector) +- [Get-MgDeviceManagementMobileThreatDefenseConnector](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementmobilethreatdefenseconnector) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md index b6aad709585a8..5769e00633a5a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementMobileThreatDefenseConnectorCount.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.administration/get-mgdevicemanagementmobilethreatdefenseconnectorcount) +- [Get-MgDeviceManagementMobileThreatDefenseConnectorCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementmobilethreatdefenseconnectorcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md index 7926e587df9d7..47dea3751de43 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartner.md @@ -571,7 +571,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementpartner) +- [Get-MgDeviceManagementPartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementpartner) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.md index ed46c23a0b0bf..30aa8405978b2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementPartnerCount.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.administration/get-mgdevicemanagementpartnercount) +- [Get-MgDeviceManagementPartnerCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementpartnercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md index 6834bbe32a5b6..5bb9602787626 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartner.md @@ -572,9 +572,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementremoteassistancepartner) -- [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-list?view=graph-rest-1.0) +- [Get-MgDeviceManagementRemoteAssistancePartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementremoteassistancepartner) +- [Graph API Reference](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-list?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md index 29db49a2a10ac..1ae4132d0af7f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRemoteAssistancePartnerCount.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.administration/get-mgdevicemanagementremoteassistancepartnercount) +- [Get-MgDeviceManagementRemoteAssistancePartnerCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementremoteassistancepartnercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md index c281fe5add224..830c42ee34e7e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperation.md @@ -571,7 +571,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementresourceoperation) +- [Get-MgDeviceManagementResourceOperation](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementresourceoperation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md index e1a391cfafed8..d4c61ea4ece46 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementResourceOperationCount.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.administration/get-mgdevicemanagementresourceoperationcount) +- [Get-MgDeviceManagementResourceOperationCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementresourceoperationcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md index ae9ba4d66782b..04d006157ea48 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignment.md @@ -572,7 +572,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroleassignment) +- [Get-MgDeviceManagementRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroleassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md index e3e331cae47cf..8469cc207297b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentCount.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.administration/get-mgdevicemanagementroleassignmentcount) +- [Get-MgDeviceManagementRoleAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroleassignmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md index fa27378604b58..56140277e0a39 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleAssignmentRoleDefinition.md @@ -368,7 +368,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroleassignmentroledefinition) +- [Get-MgDeviceManagementRoleAssignmentRoleDefinition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroleassignmentroledefinition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md index 4853fcbf6bc88..9fb5086c83726 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinition.md @@ -571,7 +571,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinition) +- [Get-MgDeviceManagementRoleDefinition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md index f455c5fd25629..afe35bf7b2579 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionCount.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.administration/get-mgdevicemanagementroledefinitioncount) +- [Get-MgDeviceManagementRoleDefinitionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md index 8d076eb19039f..b9fd31a41fe1a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -599,7 +599,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitionroleassignment) +- [Get-MgDeviceManagementRoleDefinitionRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitionroleassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md index 52b69f0f2c477..4e6b53d027ce5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount.md @@ -374,7 +374,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitionroleassignmentcount) +- [Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitionroleassignmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md index b3fb2bbec599a..3bd20edfdfa86 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition.md @@ -397,7 +397,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitionroleassignmentroledefinition) +- [Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementroledefinitionroleassignmentroledefinition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md index 3dfe4b7d080b3..7503aa9cde95f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndCondition.md @@ -571,7 +571,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandcondition) +- [Get-MgDeviceManagementTermAndCondition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandcondition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md index 0111fa1cbe8c8..2d983bfec41cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -600,7 +600,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionacceptancestatus) +- [Get-MgDeviceManagementTermAndConditionAcceptanceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionacceptancestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md index ff27fc92085c8..3e0d2fdef6242 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount.md @@ -374,7 +374,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionacceptancestatuscount) +- [Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionacceptancestatuscount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md index 03d6e56e2d294..5adb7af1885b1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition.md @@ -398,7 +398,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionacceptancestatustermandcondition) +- [Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionacceptancestatustermandcondition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md index 3ca0a40dfd460..2434287bcfd7c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignment.md @@ -599,7 +599,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionassignment) +- [Get-MgDeviceManagementTermAndConditionAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md index 765035d653773..5164d031e7db6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionAssignmentCount.md @@ -374,7 +374,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionassignmentcount) +- [Get-MgDeviceManagementTermAndConditionAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditionassignmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md index 7cab793877831..23d479e2cd196 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementTermAndConditionCount.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.administration/get-mgdevicemanagementtermandconditioncount) +- [Get-MgDeviceManagementTermAndConditionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementtermandconditioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.md index 9361d86b93bbc..d428b9fd87776 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpoint.md @@ -276,7 +276,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpoint) +- [Get-MgDeviceManagementVirtualEndpoint](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpoint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md index 3e007df52e6b3..77cdeabc35936 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEvent.md @@ -572,9 +572,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointauditevent) -- [](https://learn.microsoft.com/graph/api/cloudpcauditevent-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/virtualendpoint-list-auditevents?view=graph-rest-1.0) +- [Get-MgDeviceManagementVirtualEndpointAuditEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointauditevent) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcauditevent-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-list-auditevents?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md index 5b3264fb9bb11..85ca7a013ab66 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType.md @@ -357,8 +357,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointauditeventauditactivitytype) -- [](https://learn.microsoft.com/graph/api/cloudpcauditevent-getauditactivitytypes?view=graph-rest-1.0) +- [Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointauditeventauditactivitytype) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcauditevent-getauditactivitytypes?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md index 0b641b5db1423..566a529f26275 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointAuditEventCount.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.administration/get-mgdevicemanagementvirtualendpointauditeventcount) +- [Get-MgDeviceManagementVirtualEndpointAuditEventCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointauditeventcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md index 98f1e239a0ac9..524e1a6cc5acf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPc.md @@ -582,9 +582,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointcloudpc) -- [](https://learn.microsoft.com/graph/api/cloudpc-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/virtualendpoint-list-cloudpcs?view=graph-rest-1.0) +- [Get-MgDeviceManagementVirtualEndpointCloudPc](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointcloudpc) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpc-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-list-cloudpcs?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md index 21a8d66d7682b..c1824c3ed51f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcCount.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.administration/get-mgdevicemanagementvirtualendpointcloudpccount) +- [Get-MgDeviceManagementVirtualEndpointCloudPcCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointcloudpccount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail.md index 5d9db6972b84f..199bbe6d6a708 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail.md @@ -320,8 +320,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointcloudpclaunchdetail) -- [](https://learn.microsoft.com/graph/api/cloudpc-retrievecloudpclaunchdetail?view=graph-rest-1.0) +- [Get-MgDeviceManagementVirtualEndpointCloudPcLaunchDetail](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointcloudpclaunchdetail) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpc-retrievecloudpclaunchdetail?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md index 0619b6e9ec512..2f3de1be83d77 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -572,9 +572,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointdeviceimage) -- [](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/virtualendpoint-list-deviceimages?view=graph-rest-1.0) +- [Get-MgDeviceManagementVirtualEndpointDeviceImage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointdeviceimage) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-list-deviceimages?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md index b1a3522d2c13f..6798b627fd493 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageCount.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.administration/get-mgdevicemanagementvirtualendpointdeviceimagecount) +- [Get-MgDeviceManagementVirtualEndpointDeviceImageCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointdeviceimagecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md index 1c3467a724a31..079976b829c5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage.md @@ -359,8 +359,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointdeviceimagesourceimage) -- [](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-getsourceimages?view=graph-rest-1.0) +- [Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointdeviceimagesourceimage) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-getsourceimages?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md index 65763c4ac37b3..90021e68e1cfc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -572,9 +572,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointgalleryimage) -- [](https://learn.microsoft.com/graph/api/cloudpcgalleryimage-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/virtualendpoint-list-galleryimages?view=graph-rest-1.0) +- [Get-MgDeviceManagementVirtualEndpointGalleryImage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointgalleryimage) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcgalleryimage-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-list-galleryimages?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md index 7c3eff2a64f5d..846df5a635ac2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointGalleryImageCount.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.administration/get-mgdevicemanagementvirtualendpointgalleryimagecount) +- [Get-MgDeviceManagementVirtualEndpointGalleryImageCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointgalleryimagecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index 90db283683b0c..271c0dcabce60 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -583,9 +583,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointonpremiseconnection) -- [](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/virtualendpoint-list-onpremisesconnections?view=graph-rest-1.0) +- [Get-MgDeviceManagementVirtualEndpointOnPremiseConnection](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointonpremiseconnection) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-list-onpremisesconnections?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md index 8144cbcf17c30..6e9ac6ce18b9d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount.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.administration/get-mgdevicemanagementvirtualendpointonpremiseconnectioncount) +- [Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointonpremiseconnectioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 422ace03262fa..1b0d0d6e5ff64 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -594,9 +594,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicy) -- [](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/virtualendpoint-list-provisioningpolicies?view=graph-rest-1.0) +- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicy) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-list-provisioningpolicies?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index 468025e2b3ce9..f0404154a950c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -586,7 +586,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) +- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md index 0b1d958290bfb..df6abed456303 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser.md @@ -613,7 +613,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduser) +- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduser) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName.md index 8f7fabcfa4620..e47fba7b57e5f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName.md @@ -414,7 +414,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduserbyuserprincipalname) +- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserByUserPrincipalName](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduserbyuserprincipalname) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md index 578d512b33dbe..b813b1fdaa03d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount.md @@ -388,7 +388,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassignedusercount) +- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassignedusercount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md index 1a069813c8285..b164be2c54259 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassignedusermailboxsetting) +- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassignedusermailboxsetting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md index 5eee6a3776506..57c5b0d5c5555 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError.md @@ -517,7 +517,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduserserviceprovisioningerror) +- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduserserviceprovisioningerror) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md index da4eab32dde17..3537b248086ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount.md @@ -409,7 +409,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduserserviceprovisioningerrorcount) +- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassigneduserserviceprovisioningerrorcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md index 38cd4b0ff96e2..730262ce6f3a3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount.md @@ -366,7 +366,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentcount) +- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md index 5bba3c0494bfb..de9c7529bd630 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount.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.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicycount) +- [Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointprovisioningpolicycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md index 2d932cd958904..ab70818859aef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReport.md @@ -278,7 +278,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointreport) +- [Get-MgDeviceManagementVirtualEndpointReport](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointreport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md index 4735d48b34e5b..0fc1b32790b1d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointReportCloudPcRecommendationReport.md @@ -628,8 +628,8 @@ BODY ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersetting) -- [](https://learn.microsoft.com/graph/api/cloudpcusersetting-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/virtualendpoint-list-usersettings?view=graph-rest-1.0) +- [Get-MgDeviceManagementVirtualEndpointUserSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersetting) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcusersetting-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-list-usersettings?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index d18be7030e467..e4feefc9dd2eb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -582,7 +582,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersettingassignment) +- [Get-MgDeviceManagementVirtualEndpointUserSettingAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersettingassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md index c7d3626d2df2f..42719b07556f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount.md @@ -366,7 +366,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersettingassignmentcount) +- [Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersettingassignmentcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md index 9f5fd1c4ad6b7..6b2d3cac216ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Get-MgDeviceManagementVirtualEndpointUserSettingCount.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.administration/get-mgdevicemanagementvirtualendpointusersettingcount) +- [Get-MgDeviceManagementVirtualEndpointUserSettingCount](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/get-mgdevicemanagementvirtualendpointusersettingcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md index fbfe0e7233f7d..6a0734256c409 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding.md @@ -408,8 +408,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgbegindevicemanagementremoteassistancepartneronboarding) -- [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-beginonboarding?view=graph-rest-1.0) +- [Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgbegindevicemanagementremoteassistancepartneronboarding) +- [Graph API Reference](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-beginonboarding?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md index daff98adb6351..ac5917265f684 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest.md @@ -250,7 +250,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgdownloaddevicemanagementapplepushnotificationcertificateapplepushnotificationcertificatesigningrequest) +- [Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgdownloaddevicemanagementapplepushnotificationcertificateapplepushnotificationcertificatesigningrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md index ed168694ab2a7..1a9fad3a87d29 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc.md @@ -564,8 +564,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgreprovisiondevicemanagementvirtualendpointcloudpc) -- [](https://learn.microsoft.com/graph/api/cloudpc-reprovision?view=graph-rest-1.0) +- [Invoke-MgReprovisionDeviceManagementVirtualEndpointCloudPc](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgreprovisiondevicemanagementvirtualendpointcloudpc) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpc-reprovision?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.md index fcdf93352cb98..883ae4d19efe5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTerminateDeviceManagementPartner.md @@ -392,7 +392,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgterminatedevicemanagementpartner) +- [Invoke-MgTerminateDeviceManagementPartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgterminatedevicemanagementpartner) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md index a4265cbd763c6..870cd51bf7442 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc.md @@ -408,8 +408,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgtroubleshootdevicemanagementvirtualendpointcloudpc) -- [](https://learn.microsoft.com/graph/api/cloudpc-troubleshoot?view=graph-rest-1.0) +- [Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/invoke-mgtroubleshootdevicemanagementvirtualendpointcloudpc) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpc-troubleshoot?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md index c88338d9759b9..e265720d442bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementAuditEvent.md @@ -713,7 +713,7 @@ RESOURCES : Resources being modified. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementauditevent) +- [New-MgDeviceManagementAuditEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementauditevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md index 9cf8534ea2458..ed101e565964d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementComplianceManagementPartner.md @@ -646,7 +646,7 @@ MACOSENROLLMENTASSIGNMENTS `: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementtermandconditionassignment) +- [New-MgDeviceManagementTermAndConditionAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementtermandconditionassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md index d08b05b9db288..b9b9b1696912f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -698,8 +698,8 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointdeviceimage) -- [](https://learn.microsoft.com/graph/api/virtualendpoint-post-deviceimages?view=graph-rest-1.0) +- [New-MgDeviceManagementVirtualEndpointDeviceImage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointdeviceimage) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-post-deviceimages?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md index 804da83bfaeb2..8df7c45dea763 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -625,7 +625,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointgalleryimage) +- [New-MgDeviceManagementVirtualEndpointGalleryImage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointgalleryimage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index 0951ab5196a04..2e5754a4f6bd1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -940,8 +940,8 @@ Read-Only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointonpremiseconnection) -- [](https://learn.microsoft.com/graph/api/virtualendpoint-post-onpremisesconnections?view=graph-rest-1.0) +- [New-MgDeviceManagementVirtualEndpointOnPremiseConnection](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointonpremiseconnection) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-post-onpremisesconnections?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index e57ed221391e3..de6ad30c4e93c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -11468,8 +11468,8 @@ The default value is en-US, which corresponds to English (United States). ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointprovisioningpolicy) -- [](https://learn.microsoft.com/graph/api/virtualendpoint-post-provisioningpolicies?view=graph-rest-1.0) +- [New-MgDeviceManagementVirtualEndpointProvisioningPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointprovisioningpolicy) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-post-provisioningpolicies?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index 2db9f59cdbbe1..ff559a45f5e5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -11119,7 +11119,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) +- [New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md index 3118e8ec328e3..68ad573fa775f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSetting.md @@ -608,8 +608,8 @@ If false, non-admin users can't use snapshots to restore the Cloud PC. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointusersetting) -- [](https://learn.microsoft.com/graph/api/virtualendpoint-post-usersettings?view=graph-rest-1.0) +- [New-MgDeviceManagementVirtualEndpointUserSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointusersetting) +- [Graph API Reference](https://learn.microsoft.com/graph/api/virtualendpoint-post-usersettings?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index f50db8ada40c0..3214505216017 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/New-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -556,7 +556,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointusersettingassignment) +- [New-MgDeviceManagementVirtualEndpointUserSettingAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/new-mgdevicemanagementvirtualendpointusersettingassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.md index 08f2c0859707b..bf3c765eec284 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementApplePushNotificationCertificate.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.administration/remove-mgdevicemanagementapplepushnotificationcertificate) +- [Remove-MgDeviceManagementApplePushNotificationCertificate](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementapplepushnotificationcertificate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md index 6030140c0baf3..5c47152adf933 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementAuditEvent.md @@ -429,7 +429,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementauditevent) +- [Remove-MgDeviceManagementAuditEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementauditevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md index cdb8b4ff696fa..4d7aba661b634 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementComplianceManagementPartner.md @@ -430,7 +430,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementcompliancemanagementpartner) +- [Remove-MgDeviceManagementComplianceManagementPartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementcompliancemanagementpartner) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md index ba60b59b40b44..fb405228697e6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementExchangeConnector.md @@ -429,7 +429,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementexchangeconnector) +- [Remove-MgDeviceManagementExchangeConnector](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementexchangeconnector) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md index 68d3d23f3c5bd..77ab898783aa7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementIoUpdateStatus.md @@ -429,7 +429,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementioupdatestatus) +- [Remove-MgDeviceManagementIoUpdateStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementioupdatestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md index b7e6a87e8c3d5..26e8ea763758c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementMobileThreatDefenseConnector.md @@ -430,7 +430,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementmobilethreatdefenseconnector) +- [Remove-MgDeviceManagementMobileThreatDefenseConnector](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementmobilethreatdefenseconnector) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md index 3c29706e337fd..91d6d5c600263 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementPartner.md @@ -429,7 +429,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementpartner) +- [Remove-MgDeviceManagementPartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementpartner) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md index 4b340c2f056a5..3220b72fb9c20 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRemoteAssistancePartner.md @@ -430,8 +430,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementremoteassistancepartner) -- [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-delete?view=graph-rest-1.0) +- [Remove-MgDeviceManagementRemoteAssistancePartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementremoteassistancepartner) +- [Graph API Reference](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md index 58ff6ba400548..1356e59528385 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementResourceOperation.md @@ -429,7 +429,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementresourceoperation) +- [Remove-MgDeviceManagementResourceOperation](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementresourceoperation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md index 66b8b18d55b37..47157f0557c8c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleAssignment.md @@ -429,7 +429,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementroleassignment) +- [Remove-MgDeviceManagementRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementroleassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md index ac477f54c0472..211645378b88d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinition.md @@ -429,7 +429,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementroledefinition) +- [Remove-MgDeviceManagementRoleDefinition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementroledefinition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md index 0e31fb3f4f607..1c4a7b6ce0581 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -452,7 +452,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementroledefinitionroleassignment) +- [Remove-MgDeviceManagementRoleDefinitionRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementroledefinitionroleassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md index e716353f07470..7a1aa8a5c2bc5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndCondition.md @@ -429,7 +429,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementtermandcondition) +- [Remove-MgDeviceManagementTermAndCondition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementtermandcondition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md index f7dbd112af0ae..1419285ddb6ec 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -452,7 +452,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementtermandconditionacceptancestatus) +- [Remove-MgDeviceManagementTermAndConditionAcceptanceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementtermandconditionacceptancestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md index 75c7bc588a230..f50cffed68bcd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementTermAndConditionAssignment.md @@ -452,7 +452,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementtermandconditionassignment) +- [Remove-MgDeviceManagementTermAndConditionAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementtermandconditionassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md index 2ccbe069c0df5..061c67e0e684a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -430,8 +430,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointdeviceimage) -- [](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-delete?view=graph-rest-1.0) +- [Remove-MgDeviceManagementVirtualEndpointDeviceImage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointdeviceimage) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcdeviceimage-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md index 2ee824280adb2..8c107a5d1ccf9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -409,7 +409,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointgalleryimage) +- [Remove-MgDeviceManagementVirtualEndpointGalleryImage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointgalleryimage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index 606a1eed60f4e..5b7651ab6af70 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -426,8 +426,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointonpremiseconnection) -- [](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-delete?view=graph-rest-1.0) +- [Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointonpremiseconnection) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 55eab0dd2006b..4daa137024669 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -432,8 +432,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointprovisioningpolicy) -- [](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-delete?view=graph-rest-1.0) +- [Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointprovisioningpolicy) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index 17d31f7d0eeb1..f14fc45c074ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -431,7 +431,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) +- [Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.md index bd0d8db0c73e8..c9607b3c78aae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointReport.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.administration/remove-mgdevicemanagementvirtualendpointreport) +- [Remove-MgDeviceManagementVirtualEndpointReport](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointreport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md index 7cda9272d17e9..7a4d7c59e5090 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSetting.md @@ -430,8 +430,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointusersetting) -- [](https://learn.microsoft.com/graph/api/cloudpcusersetting-delete?view=graph-rest-1.0) +- [Remove-MgDeviceManagementVirtualEndpointUserSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointusersetting) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcusersetting-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index e6471daded041..8a1ccbc26bbbf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -431,7 +431,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointusersettingassignment) +- [Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/remove-mgdevicemanagementvirtualendpointusersettingassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md index 1d2333f64c023..a19c1383747fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Rename-MgDeviceManagementVirtualEndpointCloudPc.md @@ -519,8 +519,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/rename-mgdevicemanagementvirtualendpointcloudpc) -- [](https://learn.microsoft.com/graph/api/cloudpc-rename?view=graph-rest-1.0) +- [Rename-MgDeviceManagementVirtualEndpointCloudPc](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/rename-mgdevicemanagementvirtualendpointcloudpc) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpc-rename?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md index 525d977d417d8..6ebb26d9976f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Resize-MgDeviceManagementVirtualEndpointCloudPc.md @@ -535,8 +535,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/resize-mgdevicemanagementvirtualendpointcloudpc) -- [](https://learn.microsoft.com/graph/api/cloudpc-resize?view=graph-rest-1.0) +- [Resize-MgDeviceManagementVirtualEndpointCloudPc](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/resize-mgdevicemanagementvirtualendpointcloudpc) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpc-resize?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md index 03b1f5316ddab..be4a7c9c6ed8e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restart-MgDeviceManagementVirtualEndpointCloudPc.md @@ -406,8 +406,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/restart-mgdevicemanagementvirtualendpointcloudpc) -- [](https://learn.microsoft.com/graph/api/cloudpc-reboot?view=graph-rest-1.0) +- [Restart-MgDeviceManagementVirtualEndpointCloudPc](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/restart-mgdevicemanagementvirtualendpointcloudpc) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpc-reboot?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md index 4a7c14d6802ac..4c85731a0bbbf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Restore-MgDeviceManagementVirtualEndpointCloudPc.md @@ -536,8 +536,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/restore-mgdevicemanagementvirtualendpointcloudpc) -- [](https://learn.microsoft.com/graph/api/cloudpc-restore?view=graph-rest-1.0) +- [Restore-MgDeviceManagementVirtualEndpointCloudPc](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/restore-mgdevicemanagementvirtualendpointcloudpc) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpc-restore?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 100ad86e8057b..4a7f8b7bd07e3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -11117,8 +11117,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/set-mgdevicemanagementvirtualendpointprovisioningpolicy) -- [](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-assign?view=graph-rest-1.0) +- [Set-MgDeviceManagementVirtualEndpointProvisioningPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/set-mgdevicemanagementvirtualendpointprovisioningpolicy) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-assign?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md index 2844da99cbecd..d0698ba8dbf26 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Set-MgDeviceManagementVirtualEndpointUserSetting.md @@ -560,8 +560,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/set-mgdevicemanagementvirtualendpointusersetting) -- [](https://learn.microsoft.com/graph/api/cloudpcusersetting-assign?view=graph-rest-1.0) +- [Set-MgDeviceManagementVirtualEndpointUserSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/set-mgdevicemanagementvirtualendpointusersetting) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcusersetting-assign?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck.md index 5cdb40df86195..3bd5c1555879a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck.md @@ -401,8 +401,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/start-mgdevicemanagementvirtualendpointonpremiseconnectionhealthcheck) -- [](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-runhealthcheck?view=graph-rest-1.0) +- [Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/start-mgdevicemanagementvirtualendpointonpremiseconnectionhealthcheck) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-runhealthcheck?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md index f1ce5f50202a1..72a7213f54438 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod.md @@ -412,8 +412,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/stop-mgdevicemanagementvirtualendpointcloudpcgraceperiod) -- [](https://learn.microsoft.com/graph/api/cloudpc-endgraceperiod?view=graph-rest-1.0) +- [Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/stop-mgdevicemanagementvirtualendpointcloudpcgraceperiod) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpc-endgraceperiod?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md index 647bdda5c122a..a5bc469837178 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Sync-MgDeviceManagementExchangeConnector.md @@ -516,7 +516,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/sync-mgdevicemanagementexchangeconnector) +- [Sync-MgDeviceManagementExchangeConnector](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/sync-mgdevicemanagementexchangeconnector) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md index 3609d0729c9ab..6d1bd2ea1e01b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementApplePushNotificationCertificate.md @@ -555,7 +555,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementapplepushnotificationcertificate) +- [Update-MgDeviceManagementApplePushNotificationCertificate](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementapplepushnotificationcertificate) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md index 47fff348f1d7b..ad2923f68ee70 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementAuditEvent.md @@ -909,7 +909,7 @@ RESOURCES : Resources being modified. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementauditevent) +- [Update-MgDeviceManagementAuditEvent](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementauditevent) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md index 1d69229113504..2652a87831a1d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementComplianceManagementPartner.md @@ -833,7 +833,7 @@ MACOSENROLLMENTASSIGNMENTS `: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementexchangeconnector) +- [Update-MgDeviceManagementExchangeConnector](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementexchangeconnector) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md index 15a2636cca624..d5f5fa9a6640f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementIoUpdateStatus.md @@ -842,7 +842,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementioupdatestatus) +- [Update-MgDeviceManagementIoUpdateStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementioupdatestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md index 51f030a9395b0..a7f9ae171846d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementMobileThreatDefenseConnector.md @@ -1019,7 +1019,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementmobilethreatdefenseconnector) +- [Update-MgDeviceManagementMobileThreatDefenseConnector](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementmobilethreatdefenseconnector) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md index 17404a2ebb3fe..c92bca78b35f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementPartner.md @@ -803,7 +803,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementpartner) +- [Update-MgDeviceManagementPartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementpartner) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md index 08add4fa67be2..94c3f098bfab5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRemoteAssistancePartner.md @@ -638,8 +638,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementremoteassistancepartner) -- [](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-update?view=graph-rest-1.0) +- [Update-MgDeviceManagementRemoteAssistancePartner](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementremoteassistancepartner) +- [Graph API Reference](https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md index 50b84887b5ace..848ba7a7b8f25 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementResourceOperation.md @@ -608,7 +608,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementresourceoperation) +- [Update-MgDeviceManagementResourceOperation](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementresourceoperation) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md index baa016727b4a7..1f0232f261721 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleAssignment.md @@ -762,7 +762,7 @@ These must match the actionName that is defined as part of the rolePermission. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementroleassignment) +- [Update-MgDeviceManagementRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementroleassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md index f465b17e8e9ae..05d96690197f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinition.md @@ -754,7 +754,7 @@ These must match the actionName that is defined as part of the rolePermission. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementroledefinition) +- [Update-MgDeviceManagementRoleDefinition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementroledefinition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md index ee263b86ac2ea..01dfc771ac9e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementRoleDefinitionRoleAssignment.md @@ -742,7 +742,7 @@ These must match the actionName that is defined as part of the rolePermission. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementroledefinitionroleassignment) +- [Update-MgDeviceManagementRoleDefinitionRoleAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementroledefinitionroleassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md index d24dfd4b1c722..f3804488844cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndCondition.md @@ -876,7 +876,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementtermandcondition) +- [Update-MgDeviceManagementTermAndCondition](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementtermandcondition) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md index f030ed781d32c..4faece5505c4a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAcceptanceStatus.md @@ -757,7 +757,7 @@ Incremented when an administrator makes a change to the terms and wishes to requ ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementtermandconditionacceptancestatus) +- [Update-MgDeviceManagementTermAndConditionAcceptanceStatus](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementtermandconditionacceptancestatus) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md index 0ef1923538072..ac1898a1b54a6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementTermAndConditionAssignment.md @@ -582,7 +582,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementtermandconditionassignment) +- [Update-MgDeviceManagementTermAndConditionAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementtermandconditionassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md index cddf46a0b0ac7..500fd1c63e614 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointDeviceImage.md @@ -873,7 +873,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointdeviceimage) +- [Update-MgDeviceManagementVirtualEndpointDeviceImage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointdeviceimage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md index 151143f1d7e1f..fedc8e4333fd3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointGalleryImage.md @@ -814,7 +814,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointgalleryimage) +- [Update-MgDeviceManagementVirtualEndpointGalleryImage](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointgalleryimage) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md index 6c7efd6e0db4e..434d73b613d60 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnection.md @@ -1188,8 +1188,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointonpremiseconnection) -- [](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-update?view=graph-rest-1.0) +- [Update-MgDeviceManagementVirtualEndpointOnPremiseConnection](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointonpremiseconnection) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md index 0e970d2c37dfc..b42b9dedbc79a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword.md @@ -537,8 +537,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointonpremiseconnectionaddomainpassword) -- [](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-updateaddomainpassword?view=graph-rest-1.0) +- [Update-MgDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointonpremiseconnectionaddomainpassword) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-updateaddomainpassword?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md index 814659acdb56c..d230e48bdf17b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicy.md @@ -11694,8 +11694,8 @@ The default value is en-US, which corresponds to English (United States). ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointprovisioningpolicy) -- [](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-update?view=graph-rest-1.0) +- [Update-MgDeviceManagementVirtualEndpointProvisioningPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointprovisioningpolicy) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md index 78bcd60f0aeaa..fa66d3fe5ab11 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment.md @@ -11147,7 +11147,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) +- [Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointprovisioningpolicyassignment) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md index 74c010ea10cab..daf8e627dbd27 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting.md @@ -836,7 +836,7 @@ It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassignedusermailboxsetting) +- [Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointprovisioningpolicyassignmentassignedusermailboxsetting) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md index c013e3fb317c8..4a8c86020ea54 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointReport.md @@ -353,7 +353,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointreport) +- [Update-MgDeviceManagementVirtualEndpointReport](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointreport) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md index 94343db35f404..e864e3863b303 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSetting.md @@ -774,8 +774,8 @@ If false, non-admin users can't use snapshots to restore the Cloud PC. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointusersetting) -- [](https://learn.microsoft.com/graph/api/cloudpcusersetting-update?view=graph-rest-1.0) +- [Update-MgDeviceManagementVirtualEndpointUserSetting](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointusersetting) +- [Graph API Reference](https://learn.microsoft.com/graph/api/cloudpcusersetting-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md index 0cf0355ea6aba..b603ff1882688 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.DeviceManagement.Administration/Update-MgDeviceManagementVirtualEndpointUserSettingAssignment.md @@ -585,7 +585,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointusersettingassignment) +- [Update-MgDeviceManagementVirtualEndpointUserSettingAssignment](https://learn.microsoft.com/powershell/module/microsoft.graph.devicemanagement.administration/update-mgdevicemanagementvirtualendpointusersettingassignment)